From fb296b26c019106e4f8f13832ffc3fbe61012557 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 10 Nov 2011 21:02:14 +0000 Subject: [PATCH 001/124] [cantera 1.8]: creating a cantera 1.8 branch that will be reintegrated into the trunk when autotools are working From 09488c04d4167066cd6a460a5f0f7a72d9dbee97 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 10 Nov 2011 23:01:05 +0000 Subject: [PATCH 002/124] [cantera autotools]: populating top level directory with configure.ac and Makefile.am for autotools build (incomplete) --- ChangeLog | 5 + Makefile.am | 10 + Makefile.in | 303 -------- README.txt | 7 +- configure.ac | 62 ++ configure.in | 2105 -------------------------------------------------- preconfig | 620 --------------- 7 files changed, 80 insertions(+), 3032 deletions(-) create mode 100644 Makefile.am delete mode 100755 Makefile.in create mode 100644 configure.ac delete mode 100755 configure.in delete mode 100755 preconfig diff --git a/ChangeLog b/ChangeLog index b26e2ba32..a43a08899 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ + +2011-11-10 15:09 nick + + * major overhaul of build system to use GNU autotools + 2008-01-07 15:02 hkmoffa * test_problems/Makefile.in: Added a missing test diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 000000000..dc79b3920 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,10 @@ +include $(top_srcdir)/doxygen/aminclude.am + +# Build in these directories: +SUBDIRS = Cantera examples test_problems doxygen + +# Distribute these directories: +DIST_SUBDIRS = src examples + +# generated documentation will be included in distributed archive +EXTRA_DIST= bootstrap $(DX_CONFIG) \ No newline at end of file diff --git a/Makefile.in b/Makefile.in deleted file mode 100755 index 0d63a6f12..000000000 --- a/Makefile.in +++ /dev/null @@ -1,303 +0,0 @@ -#!/bin/sh -# -# $Id: Makefile.in,v 1.96 2009/03/25 01:11:48 hkmoffa Exp $ -# -export_dir = $(HOME)/sfdist -version = @ctversion@ -ct = $(export_dir)/cantera-$(version) -build_ck = @BUILD_CK@ -build_clib = @BUILD_CLIB@ -build_python = @BUILD_PYTHON@ -build_f90 = @BUILD_F90@ -build_matlab = @BUILD_MATLAB@ -os_is_win = @OS_IS_WIN@ -incl_user_code = @INCL_USER_CODE@ -do_ranlib = @DO_RANLIB@ -use_dll = @USE_CLIB_DLL@ - -cvs_tag = @CVSTAG@ -branch = -r $(cvs_tag) -RMDIRTREE = /bin/rm -r -f -INSTALL_TSC = bin/install_tsc - -prefix=@prefix@ - -all: hdr-collect kernel user cxxlib clib fortran python matlab \ - utils - -# use this target on a Windows machine to build the Python and -# MATLAB interfaces after building the project in Visual C++ -win: hdr-collect python matlab - @echo - @echo Now type \'make win-install\' to install Cantera in @ct_dir@. - @echo - -install: hdr-install kernel-install clib-install data-install f90-modules-install \ - python-install matlab-install tools-install demo-install finish-install - -win-install: hdr-install win-kernel-install data-install python-install \ - matlab-install demo-install finish-install - @echo - @echo Cantera has been successfully installed in @ct_dir@. - @echo - -demos: example_codes - -# build the Cantera static libraries -kernel: - @INSTALL@ -d @buildlib@ - @INSTALL@ -d @buildbin@ - cd ext; @MAKE@ - cd Cantera/src; @MAKE@ - -# build the user library -user: -ifeq ($(incl_user_code),1) - cd Cantera/user; @MAKE@ -endif - -clib: -ifeq ($(build_clib),1) - cd Cantera/clib/src; @MAKE@ -endif - -fortran: -ifeq ($(build_f90),1) - cd Cantera/fortran/src; @MAKE@ - @INSTALL@ -c Cantera/fortran/src/*.mod build/include/cantera -else - @echo skipping building the Fortran 90/95 interface -endif - -cxxlib: - cd Cantera/cxx; @MAKE@ - -utils: - cd tools; @MAKE@ - -kernel-install: - @INSTALL@ -d @ct_libdir@ - -rm -fR @ct_libdir@/* - ( for ilib in @buildlib@/*.a ; do \ - @INSTALL@ -c -m 644 $${ilib} @ct_libdir@ ; \ - done ) -ifeq ($(do_ranlib),1) - @RANLIB@ @ct_libdir@/*.a -endif - -clib-install: -ifeq ($(build_clib),1) - cd Cantera/clib/src; @MAKE@ install -endif - -win-kernel-install: - @INSTALL@ -d @ct_libdir@ - -$(RMDIRTREE) @ct_libdir@/* - ( for ilib in @buildlib@/*.lib ; do \ - @INSTALL@ -c -m 644 $${ilib} @ct_libdir@ ; done ) -ifeq ($(use_dll),1) - ( for ilib in @buildlib@/*.dll ; do \ - @INSTALL@ -c -m 644 $${ilib} @ct_libdir@ ; done ) - ( for ilib in @buildlib@/*.exp ; do \ - @INSTALL@ -c -m 644 $${ilib} @ct_libdir@ ; done ) -endif - -data-install: - @INSTALL@ -d @ct_datadir@ - ( for iddd in data/inputs/*.xml ; do \ - @INSTALL@ -c -m 644 $${iddd} @ct_datadir@ ; done ) - ( for iddd in data/inputs/*.cti ; do \ - @INSTALL@ -c -m 644 $${iddd} @ct_datadir@ ; done ) - -tools-install: - cd tools; @MAKE@ install - -hdr-install: - @INSTALL@ -d @ct_incdir@ - cp -r -f build/include/cantera @ct_incroot@ - @(if test -f @ct_incroot@/cantera/Cantera_bt.mak ; then rm -f @ct_incroot@/cantera/Cantera_bt.mak ; fi ) - - -f90-modules-install: -ifeq ($(build_f90),1) - @INSTALL@ -c -m 644 build/include/cantera/*.mod @ct_incroot@/cantera -endif - -# collect scattered header files and build the include directory -hdr-collect: - @INSTALL@ -d build/include/cantera - @INSTALL@ -d build/include/cantera/kernel - @(cd Cantera/cxx/include ; for ihhh in *.h *.mak; do \ - ../../../$(INSTALL_TSC) $${ihhh} ../../../build/include/cantera ; \ - done ) - @$(INSTALL_TSC) config.h build/include/cantera - -python: -ifeq ($(build_python),2) -ifeq ($(os_is_win),0) - cd Cantera/python; @MAKE@ -else - cd Cantera/python; @MAKE@ win -endif -endif -ifeq ($(build_python),1) - cd Cantera/python; @MAKE@ minbuild -endif - -python-install: -ifneq ($(build_python),0) - cd Cantera/python; @MAKE@ install -ifeq ($(build_python),2) - @INSTALL@ -d @ct_tutdir@/python - @(for ihhh in Cantera/python/tutorial/*.py ; do \ - @INSTALL@ -c $${ihhh} @ct_tutdir@/python ; \ - echo "@INSTALL@ -c $${ihhh} @ct_tutdir@/python" ; \ - done ) - chown -R @username@ @ct_tutdir@/python -else - @echo 'NOT installing Python demos or tutorials' -endif -endif - -matlab: -ifeq ($(build_matlab),1) -ifneq ($(build_python),0) - cd Cantera/matlab; @MAKE@ -endif -else - @echo 'NOT building the Matlab toolbox' -endif - -matlab-install: -ifeq ($(build_matlab),1) -ifneq ($(build_python),0) - cd Cantera/matlab; @MAKE@ install -endif -endif - -demo-install: - (cd Cantera/cxx/demos; @MAKE@ install) - @INSTALL@ -c -m ug+rw,o+r tools/templates/cxx/demo.mak @ct_demodir@/cxx - @INSTALL@ -d @ct_demodir@/f77 - (cd Cantera/fortran/f77demos; @MAKE@ install) - @INSTALL@ -c -m ug+rw,o+r tools/templates/f77/demo_ftnlib.cpp @ct_demodir@/f77 - ( for ihhh in Cantera/fortran/f77demos/*.txt ; do \ - @INSTALL@ -c -m ug+rw,o+r $${ihhh} @ct_demodir@/f77 ; done ) - chown -R @username@ @ct_demodir@/f77 -ifeq ($(build_python),2) - (cd Cantera/python/examples; @MAKE@ install) - chown -R @username@ @ct_demodir@/python -endif - -finish-install: - @INSTALL@ -d @ct_docdir@ - @INSTALL@ -d @ct_bindir@ - -( cd bin ; @INSTALL@ -c exp3to2.sh "@ct_bindir@" ) - -( cd bin ; @INSTALL@ -c csvdiff "@ct_bindir@" ) -ifeq ($(os_is_win),0) -# Commands to be executed for non-win systems - cp -f License.rtf "@ct_bindir@" - cp -f License.txt "@ct_bindir@" -ifneq ($(build_python),0) - @INSTALL@ -c tools/src/finish_install.py tools/bin - @PYTHON_CMD@ tools/bin/finish_install.py @prefix@ @PYTHON_CMD@ - cp -f "@homedir@/setup_cantera" "@ct_bindir@" - chmod +x @ct_bindir@/setup_cantera - chmod +x @ct_bindir@/ctnew -ifeq ($(build_python),2) - chmod +x @ct_bindir@/mixmaster -endif -endif -else -# Commands to be executed for win systems - cd Cantera/fortran/f77demos; sed s'/isentropic/ctlib/g' isentropic.dsp > ctlib.dsp - ( for ihhh in Cantera/fortran/f77demos/*.dsp ; do \ - @INSTALL@ -c $${ihhh} @ct_demodir@/f77 ; done ) - ( for ihhh in @buildbin@/* ; do \ - @INSTALL@ -c $${ihhh} @ct_bindir@ ; done ) -endif - -example_codes: - (cd Cantera/cxx/demos; @MAKE@ clean) - (cd Cantera/cxx; @MAKE@) - -test: example_codes datafiles - cd test_problems; @MAKE@ clean - cd test_problems; @MAKE@ all - cd test_problems; @MAKE@ test - -run-matlab-demo: - cd Cantera/matlab; @MAKE@ run-demo - -test-matlab: - cd Cantera/matlab; @MAKE@ test-demo - -run-python-demo: - cd Cantera/python; @MAKE@ run-demo - -uninstall: - -$(RMDIRTREE) @ct_incdir@ - -$(RMDIRTREE) @ct_libdir@ - -$(RMDIRTREE) @ct_datadir@ - -$(RMDIRTREE) @ct_demodir@ - -$(RMDIRTREE) @ct_docdir@ - -$(RMDIRTREE) @ct_tutdir@ - -$(RMDIRTREE) @prefix@/matlab/toolbox/cantera - cd tools; @MAKE@ uninstall - -clean: - -$(RMDIRTREE) *.*~ @buildlib@/*.* build/include/cantera/config.h svn*~ - -cd Cantera; @MAKE@ clean - -cd tools; @MAKE@ clean - -cd ext; @MAKE@ clean - -cd test_problems; @MAKE@ clean - -$(RM) mt.mod - -docs: - cd tools/doxygen/Cantera; doxygen Cantera.cfg - -depends: - cd Cantera; @MAKE@ depends - cd tools; @MAKE@ depends - cd ext; @MAKE@ depends -ifeq ($(build_particles),1) - cd Cantera/cads; @MAKE@ depends -endif - -ChangeLog: CVS/Entries - tools/bin/cvs2cl.pl --prune - -export: ChangeLog - @INSTALL@ -d $(export_dir) - if (test -d $(export_dir)/cantera); then rm -r -f $(export_dir)/cantera; fi - if (test -d $(export_dir)/cantera-$(version)); then rm -r -f $(export_dir)/cantera-$(version); fi - cd $(export_dir); cvs export $(branch) cantera - cd $(export_dir)/cantera; rm -r -f win32 - cd $(export_dir); mv cantera cantera-$(version) - -export-win: ChangeLog - @INSTALL@ -d $(export_dir) - if (test -d $(export_dir)/cantera); then rm -r -f $(export_dir)/cantera; fi - cd $(export_dir); cvs export $(branch) cantera - cd $(export_dir)/cantera; rm -r -f win32 - cd $(export_dir)/cantera; cvs export $(branch) win32 - cd $(export_dir); mv cantera cantera-$(version) - -pack: export - (cd $(export_dir); \ - rm -f cantera-$(version).tar.gz; \ - tar cvf cantera-$(version).tar cantera-$(version)/*; \ - gzip cantera-$(version).tar) - -cf: - @INSTALL@ -d $(export_dir) - if (test -d $(export_dir)/cantera); then rm -r -f $(export_dir)/cantera; fi - cd $(export_dir); cvs export $(branch) cantera - cd $(export_dir)/cantera; rm -r -f win32 - (cd $(export_dir); \ - rm -f cantera-cf.tar.gz; \ - tar cvf cantera-cf.tar cantera/*; \ - gzip cantera-cf.tar; scp cantera-cf.tar.gz dggoodwin@cf-shell.sourceforge.net:cantera.tar.gz) - sshcf './runall' & - - diff --git a/README.txt b/README.txt index e8c4c03bc..cffa19764 100644 --- a/README.txt +++ b/README.txt @@ -1,9 +1,9 @@ - + C A N T E R A - release 1.8 + release 1.8 + autotools - 08/2009 + 12/2011 *************************************************************** *** @@ -19,7 +19,6 @@ for usage, and a DISCLAIMER OF ALL WARRANTIES. All trademarks referenced herein are property of their respective holders. - Web sites ========== diff --git a/configure.ac b/configure.ac new file mode 100644 index 000000000..d183b6114 --- /dev/null +++ b/configure.ac @@ -0,0 +1,62 @@ +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +AC_PREREQ(2.61) +AC_INIT([cantera], [1.8.0], [nick@ices.utexas.edu]) +AC_CONFIG_HEADER(config.h) +AC_CONFIG_AUX_DIR([build-aux]) +AM_INIT_AUTOMAKE + +# snarf and provide versioning numbers +AX_SPLIT_VERSION +GENERIC_MAJOR_VERSION=$AX_MAJOR_VERSION +GENERIC_MINOR_VERSION=$AX_MINOR_VERSION +GENERIC_MICRO_VERSION=$AX_POINT_VERSION +GENERIC_VERSION=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION.$GENERIC_MICRO_VERSION +GENERIC_RELEASE=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION + +AC_SUBST(GENERIC_VERSION) +AC_SUBST(GENERIC_MAJOR_VERSION) +AC_SUBST(GENERIC_MINOR_VERSION) +AC_SUBST(GENERIC_MICRO_VERSION) +AC_SUBST(GENERIC_RELEASE) + +PACKAGE_DESCRIPTION="An object-oriented software toolkit for chemical kinetics, thermodynamics, and transport processes." +AC_SUBST([PACKAGE_DESCRIPTION]) +PACKAGE_URL="http://code.google.com/p/cantera/" +AC_SUBST([PACKAGE_URL]) + +# ------------------------------ +# Checks for required programs +# ------------------------------ + +AC_PROG_CC +AC_PROG_CXX +AC_PROG_FC +AC_PROG_F77 + +AC_PROG_LIBTOOL +AM_SANITY_CHECK + +# ---------------- +# Doxygen support +# ---------------- + +# DX_DOXYGEN_FEATURE(ON) +DX_HTML_FEATURE(ON) +DX_CHM_FEATURE(OFF) +DX_CHI_FEATURE(OFF) + +DX_MAN_FEATURE(OFF) +DX_RTF_FEATURE(OFF) +DX_XML_FEATURE(OFF) +DX_PDF_FEATURE(ON) +DX_PS_FEATURE(OFF) + +DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) + +# Generate Output Files +AC_OUTPUT( Makefile Cantera/Makefile test_problems/Makefile examples/Makefile doxygen/Makefile) + +# FINAL SUMMARY +AX_SUMMARIZE_CONFIG diff --git a/configure.in b/configure.in deleted file mode 100755 index 8631f8b89..000000000 --- a/configure.in +++ /dev/null @@ -1,2105 +0,0 @@ -dnl Process this file with autoconf to produce a configure script. -define([AC_CACHE_LOAD], )dnl -define([AC_CACHE_SAVE], )dnl -AC_INIT(Cantera,1.7.0) -AC_CONFIG_HEADER(config.h) -# AC_CONFIG_AUX_DIR(.) -# AC_CONFIG_SRCDIR(./License.txt) -AC_CONFIG_AUX_DIR(config) - -if test -z $CANTERA_VERSION ; then - echo - echo ">>>>> Error <<<<<" - echo - echo "Run script 'preconfig', instead of running 'configure'" - echo "directly. The 'preconfig' script sets various variable values" - echo "needed by 'configure' and then runs 'configure.' You may want to" - echo "edit 'preconfig' first, to set various installation options." - echo - exit 1 -fi - - -echo " " -echo "--------------------------------------------------------------" -echo " " -echo " Cantera "$CANTERA_VERSION -echo " Configuration Script " -echo " " -echo "--------------------------------------------------------------" -echo " " - -AC_DEFINE(NDEBUG) - -ac_sys_system=`uname -s` -ac_sys_release=`uname -r` - -# moved since MacOS deosn't support -i option -#sys_hardware=`uname -i` - -# -# Determine the number of hardware bits in the system -# -# -# BITHARDWARE is the default number of compilation bits in pointers -# -case $ac_sys_system in - Linux* ) - sys_hardware=`uname -i` - echo 'linux ' $sys_hardware - case $sys_hardware in - x86_64 ) BITHARDWARE=64 ;; - - * ) BITHARDWARE=${BITHARDWARE:="32"} ;; - esac ;; - SunOS* ) - sys_hardware=`uname -i` - echo 'SunOS ' $sys_hardware - case $sys_hardware in - "SUNW,Sun-Fire" ) BITHARDWARE=64 ;; - * ) BITHARDWARE=${BITHARDWARE:="32"} ;; - esac ;; - * ) BITHARDWARE=${BITHARDWARE:="32"} ;; -esac -# -# BITCOMPILE is the desired number of compilation bits in pointers -# Note, it can be different than the number of hardware bits. -# Many times you will want to compile 32 bits on a 64 bit -# machine -if test -z $BITCOMPILE ; then - BITCOMPILE=$BITHARDWARE -fi - -BITCHANGE= -if test $BITCOMPILE != $BITHARDWARE ; then - BITCHANGE='y' -fi - - -AC_SUBST(BITCOMPILE) -AC_SUBST(BITHARDWARE) -AC_SUBST(BITCHANGE) - - -SHARED_CTLIB=0 -OS_IS_DARWIN=0 -OS_IS_WIN=0 -OS_IS_CYGWIN=0 -OS_IS_SOLARIS=0 -EXTRA_LINK=${EXTRA_LINK:=""} - -# default Matlab MEX file extension -mex_ext=mexglx - -case $ac_sys_system in - Darwin*) OS_IS_DARWIN=1; - hardware=`uname -m`; - EXTRA_LINK="-framework Accelerate $EXTRA_LINK"; - #mex_ext=mexmac; - #if test "$hardware" = "i386" ; then - # mex_ext=mexmaci - ;;#fi;; - CYGWIN*) OS_IS_CYGWIN=1; mex_ext=mexw32;; - SunOS*) OS_IS_SOLARIS=1;; - Linux* ) case $BITHARDWARE in - 64 ) if test "$BITCHANGE" = "y" ; then - ldemulationarg='-melf_i386' - fi ;; - esac -esac - -AC_SUBST(ldemulationarg) - - -CVF_LIBDIR="" -if test "x${OS_IS_CYGWIN}" = "x1"; then - if test "${USE_VISUAL_STUDIO}" = "y"; then - OS_IS_WIN=1; - OS_IS_CYGWIN=0; - CVF_LIBDIR=$FORTRAN_LIB_DIR - fi -fi -AC_SUBST(CVF_LIBDIR) - -# -# Determine if clib is to be a static or dynamic library -# -> will test to see if USE_DLL is defined in the cygwmin environment -# -USE_CLIB_DLL=0 -if test "x${OS_IS_WIN}" = "x1"; then - if test -n ${USE_CLIB_DLL} ; then - USE_CLIB_DLL=1 - fi -fi -AC_SUBST(USE_CLIB_DLL) - -prdef="/usr/local/cantera" -if test "x$OS_IS_DARWIN" = "x1"; then prdef="/Applications/Cantera"; fi - -local_inst=1 -if test "x${prefix}" = "xNONE"; then - prefix=${prdef} - local_inst=0 -fi -exec_prefix=${prefix} - -if test "x${OS_IS_WIN}" = "x1"; then - prefix=`cygpath -a -m "${prefix}" ` -fi -echo "Cantera will be installed in ${prefix}" -AC_SUBST(prefix) - -AC_SUBST(local_inst) - -# -# Determination of Python site-package directory location -# -local_python_inst=${local_inst} -if test "x${SET_PYTHON_SITE_PACKAGE_TOPDIR}" = "xy"; then - python_prefix=${PYTHON_SITE_PACKAGE_TOPDIR} - python_win_prefix=$python_prefix - if test "x${OS_IS_WIN}" = "x1" ; then - python_prefix=`cygpath -a -m "${python_prefix}"` - python_win_prefix=`cygpath -a -w "${python_prefix}"` - elif test "x${OS_IS_CYGWIN}" = "x1" ; then - python_prefix=`cygpath -a -u "${python_prefix}"` - python_win_prefix=`cygpath -a -w "${python_prefix}"` - fi - local_python_inst=1 - echo "Cantera's Python packages will be installed in ${python_prefix}" -else - python_prefix=$prefix - python_win_prefix=$python_prefix - if test "x${OS_IS_WIN}" = "x1"; then - python_win_prefix=`cygpath -a -w "${python_prefix}" ` - fi -fi - -AC_SUBST(local_python_inst) -AC_SUBST(python_prefix) -AC_SUBST(python_win_prefix) - -ctversion=${CANTERA_VERSION} -AC_SUBST(ctversion) -AC_DEFINE_UNQUOTED(CANTERA_VERSION,"$ctversion") - -homedir="${HOME}" - -AC_SUBST(homedir) - -# A compact installation is one in which the $prefix directory -# contains only Cantera files. It is different than a local -# installation, in that the Python package is installed with other -# Python packages and modules in site-packages, rather than with the -# rest of the Cantera files, as in a local installation. Therefore, -# with a compact installation, there is no need to set PYTHONPATH. A -# compact installation is done on all machines now by default. -# This simplifies the installation issues, because now all Cantera -# installations look the same, except perhaps for the locations -# of the python packages. -# An option called, "distributed installations", is no longer -# supported. - -ct_libdir=${prefix}/lib -ct_bindir=${prefix}/bin -ct_incdir=${prefix}/include/cantera -ct_incroot=${prefix}/include -ct_datadir=${prefix}/data -ct_demodir=${prefix}/demos -ct_templdir=${prefix}/templates -ct_tutdir=${prefix}/tutorials -ct_docdir=${prefix}/doc -ct_dir=${prefix} -ct_mandir=${prefix} - -AC_SUBST(ct_libdir) -AC_SUBST(ct_bindir) -AC_SUBST(ct_incdir) -AC_SUBST(ct_incroot) -AC_SUBST(ct_datadir) -AC_SUBST(ct_demodir) -AC_SUBST(ct_templdir) -AC_SUBST(ct_tutdir) -AC_SUBST(ct_docdir) -AC_SUBST(ct_dir) -AC_SUBST(ct_mandir) - -AC_CANONICAL_SYSTEM() -# the root of the source tree -ctroot=`(pwd)` -builddir=$target -if test "x${OS_IS_WIN}" = "x1"; then - ctroot=`cygpath -a -m "${ctroot}" | sed 's/\\\/\\//g'` - builddir="i686-pc-win32" -fi - -if test -z "$username"; then username=$USER; fi -if test -z "$username"; then username=$USERNAME; fi -if test -z "$username"; then username=`whoami`; fi - -AC_SUBST(username) - -AC_SUBST(ctroot) - -# The include directory in the 'build' subdirectory. -# This is required to build the test problems -# before Cantera has been installed. -buildinc=$ctroot/build/include -AC_SUBST(buildinc) - -buildlib=$ctroot/build/lib/$builddir -AC_SUBST(buildlib) -buildbin=$ctroot/build/bin/$builddir -AC_SUBST(buildbin) - -# add definitions to config.h -if test "x${OS_IS_DARWIN}" = "x1"; then - AC_DEFINE_UNQUOTED(DARWIN,$OS_IS_DARWIN) -fi -if test "x${OS_IS_CYGWIN}" = "x1"; then - AC_DEFINE_UNQUOTED(CYGWIN,$OS_IS_CYGWIN) -fi -if test "x${OS_IS_SOLARIS}" = "x1"; then - AC_DEFINE_UNQUOTED(SOLARIS,$OS_IS_SOLARIS) -fi -if test "x${OS_IS_WIN}" = "x1"; then - AC_DEFINE_UNQUOTED(WINMSVC,$OS_IS_WIN) -fi -AC_DEFINE_UNQUOTED(RXNPATH_FONT,"$RPFONT") -#AC_DEFINE_UNQUOTED(CANTERA_ROOT,"$prefix/cantera") -AC_DEFINE_UNQUOTED(CANTERA_DATA,"$ct_datadir") - - -if test -z "$MAKE"; then MAKE='make'; fi -AC_SUBST(MAKE) - -if test -z "$GRAPHVIZDIR" ; then -GRAPHVIZDIR=" " -fi -AC_SUBST(GRAPHVIZDIR) - - -#----------- ARCHIVE -------------------- - -if test "x${OS_IS_DARWIN}" = "x1"; then -ARCHIVE='libtool -static -o' -fi - -AC_SUBST(ARCHIVE) - -DO_RANLIB=1 -if test "x${RANLIB}" = "x"; then -DO_RANLIB=0 -fi - -AC_SUBST(DO_RANLIB) -AC_SUBST(RANLIB) - -#----------- DEPENDS -------------------- - -if test "x${CXX_DEPENDS}" = "x"; then -CXX_DEPENDS='g++ -MM' -fi -AC_SUBST(CXX_DEPENDS) - -#---------------------------------------- - -#---------------------------------------- - -######################################################## -# User Code -######################################################### -USERDIR="" -INCL_USER_CODE=0 -if test -n "$USER_SRC_DIR"; then USERDIR=$USER_SRC_DIR; INCL_USER_CODE=1; fi -AC_SUBST(USERDIR) -AC_SUBST(INCL_USER_CODE) - -AC_LANG_CPLUSPLUS - -use_sundials=0 -sundials_inc= -CVODE_LIBS='-lcvode' -IDA_LIBS='' - -if test "x$SUNDIALS_HOME" = "x"; then -SUNDIALS_LIB_DIR=/usr/local/lib -SUNDIALS_INC_DIR=/usr/local/include -else -SUNDIALS_LIB_DIR="$SUNDIALS_HOME/lib" -SUNDIALS_INC_DIR="$SUNDIALS_HOME/include" -fi - -if test "$USE_SUNDIALS" = "default"; then -# -# HKM Disabled this line as it was causing configure to fail when -# SUNDIALS_LIB_DIR had a space in it, despite use of double quotes everywhere -#ldsave="$LDFLAGS" -#LDFLAGS='-L'"$SUNDIALS_LIB_DIR"' '"$ldsave" -AC_CHECK_LIB(sundials_cvodes, CVodeCreate, [use_sundials=1], [use_sundials=0],\ -[-lsundials_cvodes -lsundials_nvecserial -lm]) - -if test ${use_sundials} = 0 ; then - tmpFile="$SUNDIALS_LIB_DIR/libsundials_cvodes.a" - if test -f $tmpFile ; then - use_sundials=1 - fi -fi - -if test ${use_sundials} = 1 ; then - echo SUNDIALS: succeeded in finding a sundials installation -else - echo SUNDIALS: failed at finding a sundials installation -fi -#LDFLAGS=$ldsave -fi - -if test "x$USE_SUNDIALS" = "xy"; then -use_sundials=1 -fi -sundials_lib_dir= -sundials_lib= -sundials_lib_dep= - - -if test ${use_sundials} = 1; then -echo "using CVODES from SUNDIALS... Sensitivity analysis enabled." - -CVODE_LIBS='-lsundials_cvodes -lsundials_nvecserial' -IDA_LIBS='-lsundials_ida -lsundials_nvecserial' - -if test "$SUNDIALS_VERSION" = "2.2"; then - AC_DEFINE(HAS_SUNDIALS) - AC_DEFINE(SUNDIALS_VERSION_22) - sundials_include='-I'${SUNDIALS_HOME}'/include -I'${SUNDIALS_HOME}'/include/sundials -I'${SUNDIALS_HOME}'/include/cvodes -I'${SUNDIALS_HOME}'/include/ida' - echo "sundials include directory: " ${sundials_include} - echo "sundials library directory: " $SUNDIALS_LIB_DIR - sundials_lib_dir=$SUNDIALS_LIB_DIR - sundials_lib="-L$SUNDIALS_LIB_DIR -lsundials_cvodes -lsundials_ida -lsundials_nvecserial" - sundials_lib_dep="$SUNDIALS_LIB_DIR/libsundials_cvodes.a $SUNDIALS_LIB_DIR/libsundials_ida.a $SUNDIALS_LIB_DIR/libsundials_nvecserial.a" -elif test "$SUNDIALS_VERSION" = "2.3"; then - AC_DEFINE(HAS_SUNDIALS) - AC_DEFINE(SUNDIALS_VERSION_23) - sundials_include='-I'${SUNDIALS_INC_DIR} - echo "sundials include directory: " ${sundials_include} - echo "sundials library directory: " $SUNDIALS_LIB_DIR - sundials_lib_dir=$SUNDIALS_LIB_DIR - sundials_lib="-L$SUNDIALS_LIB_DIR -lsundials_cvodes -lsundials_ida -lsundials_nvecserial" - sundials_lib_dep="$SUNDIALS_LIB_DIR/libsundials_cvodes.a $SUNDIALS_LIB_DIR/libsundials_ida.a $SUNDIALS_LIB_DIR/libsundials_nvecserial.a" -# python tools/src/sundials_version.py $SUNDIALS_HOME -elif test "$SUNDIALS_VERSION" = "2.4"; then - AC_DEFINE(HAS_SUNDIALS) - AC_DEFINE(SUNDIALS_VERSION_24) - sundials_include='-I'${SUNDIALS_INC_DIR} - echo "sundials include directory: " ${sundials_include} - echo "sundials library directory: " $SUNDIALS_LIB_DIR - sundials_lib_dir=$SUNDIALS_LIB_DIR - sundials_lib="-L$SUNDIALS_LIB_DIR -lsundials_cvodes -lsundials_ida -lsundials_nvecserial" - sundials_lib_dep="$SUNDIALS_LIB_DIR/libsundials_cvodes.a $SUNDIALS_LIB_DIR/libsundials_ida.a $SUNDIALS_LIB_DIR/libsundials_nvecserial.a" -# python tools/src/sundials_version.py $SUNDIALS_HOME -else - echo "ERROR: unknown or unsupported sundials version #: $SUNDIALS_VERSION" - echo " Supported versions are 2.2, 2.3, and 2.4" - echo " Please fix or turn off the sundials option by setting USE_SUNDIALS to no" - use_sundials=0 -fi -fi - -if test ${use_sundials} = 0; then -echo "using CVODE... Sensitivity analysis disabled." -echo "-> To enable sensitivity analysis, install the SUNDIALS package with CVODES." -fi - -AC_SUBST(use_sundials) -AC_SUBST(CVODE_LIBS) -AC_SUBST(IDA_LIBS) -AC_SUBST(sundials_include) -AC_SUBST(sundials_lib_dir) -AC_SUBST(sundials_lib) -AC_SUBST(sundials_lib_dep) - - -######################################################### -# The Cantera Kernel -######################################################### -# -# DEBUG_MODE: Specify that additional code be compiled in -# that allows more debug printing where available. -# default = "n" -# -DEBUG_MODE=${DEBUG_MODE:="n"} -CANTERA_DEBUG_MODE=0 -if test "$DEBUG_MODE" = "y" -o "$DEBUG_MODE" = "Y" ; then - AC_DEFINE(DEBUG_MODE) - CANTERA_DEBUG_MODE="1" -else - CANTERA_DEBUG_MODE="0" -fi -AC_SUBST(CANTERA_DEBUG_MODE) - -KERNEL='' -KERNEL_OBJ='' -BUILD_CK= - -NEED_CKREADER= -NEED_LAPACK= -#NEED_RECIPES= -NEED_MATH= -NEED_TPX= -NEED_F2C= -NEED_CVODE= -NEED_ZEROD= - -#if test "$ENABLE_THERMO" = "y"; then -# KERNEL=$KERNEL' 'thermo; -# KERNEL_OBJ=$KERNEL_OBJ' $(THERMO_OBJ)' -#fi - -if test "$WITH_METAL" = "y"; then - AC_DEFINE(WITH_METAL) - hdrs=$hdrs' MetalPhase.h' -fi - -if test "$WITH_SEMICONDUCTOR" = "y"; then - AC_DEFINE(WITH_SEMICONDUCTOR) - hdrs=$hdrs' SemiconductorPhase.h' - objs=$objs' SemiconductorPhase.o' -fi -if test "$WITH_ADSORBATE" = "y"; then - AC_DEFINE(WITH_ADSORBATE) - hdrs=$hdrs' AdsorbateThermo.h' -fi -if test "$WITH_STOICH_SUBSTANCE" = "y"; then - AC_DEFINE(WITH_STOICH_SUBSTANCE) - hdrs=$hdrs' StoichSubstance.h' - objs=$objs' StoichSubstance.o' -fi - -COMPILE_PURE_FLUIDS= -if test "$WITH_PURE_FLUIDS" = "y"; then - AC_DEFINE(WITH_PURE_FLUIDS) - COMPILE_PURE_FLUIDS=1 - hdrs=$hdrs' PureFluidPhase.h' - objs=$objs' PureFluidPhase.o' -fi -AC_SUBST(COMPILE_PURE_FLUIDS) - -if test "$WITH_LATTICE_SOLID" = "y"; then - AC_DEFINE(WITH_LATTICE_SOLID) - hdrs=$hdrs' LatticeSolidPhase.h' - objs=$objs' LatticeSolidPhase.o' - hdrs=$hdrs' LatticePhase.h' - objs=$objs' LatticePhase.o' -fi -phase_object_files=$objs -phase_header_files=$hdrs -AC_SUBST(phase_object_files) -AC_SUBST(phase_header_files) - - -NEED_CATHERMO= -COMPILE_IDEAL_SOLUTIONS=0 -if test "$WITH_IDEAL_SOLUTIONS" = "y"; then - AC_DEFINE(WITH_IDEAL_SOLUTIONS) - NEED_CATHERMO=1 - COMPILE_IDEAL_SOLUTIONS=1 -fi -AC_SUBST(COMPILE_IDEAL_SOLUTIONS) - -COMPILE_ELECTROLYTES=0 -if test "$WITH_ELECTROLYTES" = "y"; then - AC_DEFINE(WITH_ELECTROLYTES) - NEED_CATHERMO=1 - COMPILE_ELECTROLYTES=1 -fi -AC_SUBST(COMPILE_ELECTROLYTES) -AC_SUBST(NEED_CATHERMO) - - -if test "$WITH_PRIME" = "y"; then - AC_DEFINE(WITH_PRIME) -fi - -COMPILE_KINETICS=0 -if test "$WITH_KINETICS" = "y"; then - AC_DEFINE(WITH_KINETICS) - COMPILE_KINETICS=1 -fi -AC_SUBST(COMPILE_KINETICS) - - -COMPILE_HETEROKIN=0 -if test "$WITH_HETERO_KINETICS" = "y"; then - AC_DEFINE(WITH_HETEROKINETICS) - COMPILE_HETEROKIN=1 -fi -AC_SUBST(COMPILE_HETEROKIN) - -COMPILE_RXNPATH=0 -if test "$WITH_REACTION_PATHS" = "y"; then - AC_DEFINE(WITH_REACTIONPATHS) - COMPILE_RXNPATH=1 -fi -AC_SUBST(COMPILE_RXNPATH) - - -if test "$ENABLE_CK" = "y" ; then - BUILD_CK=1 - NEED_CKREADER=1 - KERNEL=$KERNEL' 'ck -fi - -NEED_TRANSPORT= -if test "$ENABLE_TRANSPORT" = "y" ; then - KERNEL=$KERNEL' 'trprops - NEED_LAPACK=1 - NEED_MATH=1 - NEED_TRANSPORT=1 -fi - -NEED_EQUIL= -if test "$ENABLE_EQUIL" = "y" ; then - KERNEL=$KERNEL' 'equil - KERNEL_OBJ=$KERNEL_OBJ' $(EQUIL_OBJ)' - NEED_EQUIL=1 - NEED_LAPACK=1 -fi - -WITH_REACTORS=0 -if test "$ENABLE_REACTORS" = "y" ; then - KERNEL=$KERNEL' 'reactor - NEED_CVODE=1 - NEED_ZEROD=1 - WITH_REACTORS=1 -fi -AC_SUBST(WITH_REACTORS) - -NEED_ONED= -if test "$ENABLE_FLOW1D" = "y" ; then - KERNEL=$KERNEL' 'flow1D - NEED_LAPACK=1 - NEED_MATH=1 - NEED_ONED=1 -fi - -if test "$ENABLE_TPX" = "y" ; then - KERNEL=$KERNEL' 'tpx - NEED_TPX=1 - AC_DEFINE(INCL_PURE_FLUIDS) -fi - -NEED_SPECTRA=0 -if test "$WITH_SPECTRA" = "y"; then - AC_DEFINE(WITH_SPECTRA) - KERNEL=$KERNEL' 'spectra - NEED_SPECTRA=1 -fi - -AC_SUBST(KERNEL) -AC_SUBST(KERNEL_OBJ) -AC_SUBST(BUILD_CK) -AC_SUBST(LIB_DIR) - -COMPILE_VCSNONIDEAL=0 -if test "$WITH_VCSNONIDEAL" = "y"; then - AC_DEFINE(WITH_VCSNONIDEAL) - COMPILE_VCSNONIDEAL=1 -fi -AC_SUBST(COMPILE_VCSNONIDEAL) - -COMPILE_H298MODIFY_CAPABILITY=0 -if test "$WITH_H298MODIFY_CAPABILITY" = "y"; then - AC_DEFINE(H298MODIFY_CAPABILITY) - COMPILE_H298MODIFY_CAPABILITY=1 -fi -AC_SUBST(COMPILE_H298MODIFY_CAPABILITY) - - -if test "$WITH_HTML_LOG_FILES" = "y"; then - AC_DEFINE(WITH_HTML_LOGS) -fi - -BOOST_INCLUDE= -BOOST_LIB= -if test "$BUILD_THREAD_SAFE" = "y" ; then - AC_DEFINE(THREAD_SAFE_CANTERA) - BOOST_INCLUDE=-I$BOOST_INC_DIR - BOOST_LIB=$BOOST_THREAD_LIB -fi -AC_SUBST(BOOST_INCLUDE) -AC_SUBST(BOOST_LIB) - - -# -# Report to the user what has been included/excluded from the compilation -# -echo " " -echo "Config SUMMARY OF INCLUDED/EXCLUDED CAPABILITIES:" - -if test "$CANTERA_DEBUG_MODE" = "1" ; then - echo " Cantera Debug Mode = ON" -else - echo " Cantera Debug Mode = OFF" -fi -if test "$BUILD_THREAD_SAFE" = "y" ; then - echo " Thread Safe = YES" -else - echo " Thread Safe = NO" -fi -if test "$NEED_TRANSPORT" = "1" ; then - echo " Calculation of Transport Props = ON" -else - echo " Calculation of Transport Props = OFF" -fi -if test "$NEED_ZEROD" = "1" ; then - echo " Zero-Dimensional Flow Reactors Models = ON" -else - echo " Zero-Dimensional Flow Reactors Models = OFF" -fi -if test "$NEED_ONED" = "1" ; then - echo " One Dimensional Flow Reactors Models = ON" -else - echo " One Dimensional Flow Reactors Models = OFF" -fi -if test "$NEED_TPX" = "1" ; then - echo " TPX Pure Fluid Capability = ON" -else - echo " TPX Pure Fluid Capability = OFF" -fi -if test "$NEED_SPECTRA" = "1" ; then - echo " Spectroscopy Capability = ON" -else - echo " Spectroscopy Capability = OFF" -fi -if test "$NEED_CKREADER" = "1" ; then - echo " Chemkin File Reader Capability = ON" -else - echo " Chemkin File Reader Capability = OFF" -fi -if test "$NEED_EQUIL" = "1" ; then - echo " MultiPhase Equilibrium Solver = ON" -else - echo " MultiPhase Equilibrium Solver = OFF" -fi -if test "$COMPILE_IDEAL_SOLUTIONS" = "1" ; then - echo " Ideal Solution Thermodynamics = ON" -else - echo " Ideal Solution Thermodynamics = OFF" -fi -if test "$COMPILE_ELECTROLYTES" = "1" ; then - echo " Electrolyte Thermodynamics = ON" -else - echo " Electrolyte Thermodynamics = OFF" -fi -if test "$COMPILE_KINETICS" = "1" ; then - echo " Homogeneous Kinetics = ON" -else - echo " Homogeneous Kinetics = OFF" -fi -if test "$COMPILE_HETEROKIN" = "1" ; then - echo " Heterogeneous Kinetics = ON" -else - echo " Heterogeneous Kinetics = OFF" -fi -if test "$COMPILE_RXNPATH" = "1" ; then - echo " Reaction Path Analysis = ON" -else - echo " Reaction Path Analysis = OFF" -fi -if test "$COMPILE_VCSNONIDEAL" = "1" ; then - echo " VCS NonIdeal equilibrium solver = ON" -else - echo " VCS NonIdeal equilibrium solver = OFF" -fi -if test "$COMPILE_H298MODIFY_CAPABILITY" = "1" ; then - echo " H298 Modify Capability = ON" -else - echo " H298 Modify Capability = OFF" -fi -echo " " - -echo " " -echo "Config SUMMARY OF INCLUDED/EXCLUDED THERMO MODELS:" - -if test "$WITH_IDEAL_SOLUTIONS" = "y" ; then - echo " Ideal Solution Phase Model = INCLUDED" -else - echo " Ideal Solution Phase Model = EXCLUDED" -fi -if test "$WITH_METAL" = "y" ; then - echo " Metal Phase Model = INCLUDED" -else - echo " Metal Phase Model = EXCLUDED" -fi -if test "$WITH_SEMICONDUCTOR" = "y" ; then - echo " Semiconductor Model = INCLUDED" -else - echo " Semiconductor Model = EXCLUDED" -fi -if test "$WITH_ADSORBATE" = "y" ; then - echo " Adsorbate Model = INCLUDED" -else - echo " Adsorbate Model = EXCLUDED" -fi -if test "$WITH_ELECTROLYTES" = "y" ; then - echo " Molality-based Electrolyte Models = INCLUDED" -else - echo " Molality-based Electrolyte Models = EXCLUDED" -fi -if test "$WITH_LATTICE_SOLID" = "y" ; then - echo " Lattice Solid based Models = INCLUDED" -else - echo " Lattice Solid based Models = EXCLUDED" -fi - - -echo " " - -########################################################## -# PURIFY -########################################################## - -AC_SUBST(PURIFY) -if test "x$PURIFY" != "x"; then - AC_DEFINE(PURIFY_MODE) -fi - -######################################################## -# BLAS and LAPACK -######################################################## -# -# if lapack and blas libraries have been specified, then skip building the -# supplied libraries - - -build_lapack=0 -build_blas=0 -if test -z "$BLAS_LAPACK_LIBS"; then - BLAS_LAPACK_LIBS="-lctlapack -lctblas" - BLAS_LAPACK_DIR="$buildlib" - BLAS_LAPACK_LINK="-L$BLAS_LAPACK_DIR $BLAS_LAPACK_LIBS" - build_blas=1 - build_lapack=1 -else - BLAS_LAPACK_LINK="-L$BLAS_LAPACK_DIR $BLAS_LAPACK_LIBS" -fi - -AC_SUBST(build_lapack) - -AC_SUBST(build_blas) - -AC_SUBST(BLAS_LAPACK_LIBS) -AC_SUBST(BLAS_LAPACK_LINK) -AC_SUBST(BLAS_LAPACK_DIR) - -# -# Stubout section for f2c versions of lapack: -# Define these variables, but turn them off in main version of code -# -build_with_f2c=0 -if test -n "$BUILD_WITH_F2C" ; then - if test "$BUILD_WITH_F2C" = "y" -o "$BUILD_WITH_F2C" = "Y" ; then - build_with_f2c=1 - elif test "$BUILD_WITH_F2C" = "n" -o "$BUILD_WITH_F2C" = "N" ; then - build_with_f2c=0 - elif test "$BUILD_WITH_F2C" = "default" ; then - if test "x$OS_IS_WIN" = "x1" ; then - build_with_f2c=1 - else - build_with_f2c=0 - fi - fi -fi -AC_SUBST(build_with_f2c) - -# -# Build a string of Canne if you need the f2c library at link time -# -> Note, Linux systems already have the g2c library -# added in, which is the same thing as our -# f2c library. However, the f2c library seems -# more reliable at resolving names -if test x"$build_with_f2c" = "x1" ; then - NEED_F2C=1 - case $ac_sys_system in - Linux) NEED_F2C= ;; - esac -fi -case $ac_sys_system in - Linux) NEED_F2C=1 ;; -esac - -# -# Create a variable build_f2c_lib that determines whether -# our f2c_lib will be built on a given platform -# -build_f2c_lib=0 -F2C_SYSTEMLIB= -if test -n "$NEED_F2C" ; then - build_f2c_lib=1 -else - case $ac_sys_system in - Linux) F2C_SYSTEMLIB="-lg2c" - esac -fi -AC_SUBST(build_f2c_lib) -AC_SUBST(F2C_SYSTEMLIB) - -# -# LOCAL_LIBS: -# Build a string of Cantera libraries necessary to link -# Cantera applications -# -LOCAL_LIBS= -LOCAL_LIBS_DEP= -RAW_LIBS_DEP= -INSTALL_LIBS_DEP= - -if test -n "$INCL_USER_CODE" -then - LOCAL_LIBS=$LOCAL_LIBS' '-luser - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libuser.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libuser.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libuser.a -fi - -if test -n "$NEED_ONED" -then - LOCAL_LIBS=$LOCAL_LIBS' '-loneD - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/liboneD.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/liboneD.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'liboneD.a -fi - -if test -n "$NEED_ZEROD" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lzeroD - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libzeroD.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libzeroD.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libzeroD.a -fi - -LOCAL_LIBS=$LOCAL_LIBS' '-lequil -LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libequil.a -INSTALL_LIBS_DEP=$INTALL_LIBS_DEP' '$ct_libdir/libequil.a -RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libequil.a - -if test "$WITH_VCSNONIDEAL" = "y" ; then - LOCAL_LIBS=$LOCAL_LIBS' '-lVCSnonideal - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libVCSnonideal.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libVCSnonideal.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libVCSnonideal.a -fi - -if test -n "$COMPILE_KINETICS" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lkinetics - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libkinetics.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libkinetics.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libkinetics.a -fi - -if test -n "$NEED_TRANSPORT" -then - LOCAL_LIBS=$LOCAL_LIBS' '-ltransport - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libtransport.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libtransport.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libtransport.a -fi - -if test -n "$NEED_CATHERMO" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lthermo - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libthermo.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libthermo.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libthermo.a -fi - -LOCAL_LIBS=$LOCAL_LIBS' '-lctnumerics -LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctnumerics.a -INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctnumerics.a -RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctnumerics.a - -if test -n "$NEED_MATH" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lctmath - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctmath.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctmath.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctmath.a -fi - -if test -n "$NEED_TPX" -then - LOCAL_LIBS=$LOCAL_LIBS' '-ltpx - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libtpx.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libtpx.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libtpx.a -fi - -if test -n "$NEED_SPECTRA" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lctspectra - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctspectra.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctspectra.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctspectra.a -fi - -if test -n "$NEED_CKREADER" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lconverters - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libconverters.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libconverters.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libconverters.a -fi - -LOCAL_LIBS=$LOCAL_LIBS' '-lctbase -LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctbase.a -INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctbase.a -RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctbase.a - -CANTERA_CORE_LIBS=$LOCAL_LIBS -CANTERA_CORE_LIBS_DEP=$INSTALL_LIBS_DEP -CANTERA_CORE_LIBS_BT_DEP=$LOCAL_LIBS_DEP -CANTERA_CORE_LIBS_NAMES=$RAW_LIBS_DEP - -if test -n "$NEED_CVODE"; then - LOCAL_LIBS=$LOCAL_LIBS' '$CVODE_LIBS -fi - -if test -n "$NEED_LAPACK" -then - LOCAL_LIBS=$LOCAL_LIBS' '$BLAS_LAPACK_LIBS -fi - -if test -n "$NEED_F2C" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lctf2c - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctf2c.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctf2c.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctf2c.a -else - case $ac_sys_system in - Linux) LOCAL_LIBS=$LOCAL_LIBS' '-lg2c;; - esac -fi -# Darwin*) LOCAL_LIBS=$LOCAL_LIBS' '-lg2c;; - -LOCAL_LIB_DIRS= -if test -n "$BLAS_LAPACK_DIR" -then LOCAL_LIB_DIRS=$LOCAL_LIB_DIRS' -L'$BLAS_LAPACK_DIR -fi - -if test ${use_sundials} = 1; then -LOCAL_LIB_DIRS=$LOCAL_LIB_DIRS' -L'$SUNDIALS_LIB_DIR -fi - -if test ${BUILD_THREAD_SAFE} = "y"; then -LOCAL_LIBS=$LOCAL_LIBS' '-l$BOOST_LIB -LOCAL_LIB_DIRS=$LOCAL_LIB_DIRS' -L'$BOOST_LIB_DIR -else -BOOST_LIB_DIR="" -fi - -AC_SUBST(BOOST_LIB_DIR) -AC_SUBST(LOCAL_LIB_DIRS) -AC_SUBST(LOCAL_LIBS) -AC_SUBST(LOCAL_LIBS_DEP) -AC_SUBST(INSTALL_LIBS_DEP) -AC_SUBST(RAW_LIBS_DEP) -AC_SUBST(CANTERA_CORE_LIBS) -AC_SUBST(CANTERA_CORE_LIBS_DEP) - -#------------------------------------------------- -# Language Interfaces -#------------------------------------------------- -# This define is needed to account for the variability for how -# static variables in templated classes are defined. Right now -# this is only turned on for the SunPro compiler on solaris. -# in that system , you need to declare the static storage variable. -# with the following line in the include file -# -# template Cabinet* Cabinet::__storage; -# -# Note, on other systems that declaration is treated as a definition -# and this leads to multiple defines at link time. This config.h addition -# is needed because there were irreconcilable issues between -# the Solaris SunPro compiler and the cygwin gcc compiler. -# -case $ac_sys_system in - SunOS* ) - AC_DEFINE(NEEDS_GENERIC_TEMPL_STATIC_DECL) - echo 'Turned on special handing of static definitions in templated classes' - ;; - * ) - ;; -esac - - -AC_SUBST(CT_SHARED_LIB) - - -BUILD_F90=1 -if test "x$BUILD_F90_INTERFACE" = "xn"; then - BUILD_F90=0 -fi - -BUILD_CLIB=1 - -#---------------------------------------------------------------- -# Python Interface -#---------------------------------------------------------------- - -BUILD_PYTHON=0 -if test "x$PYTHON_PACKAGE" = "xfull"; then - BUILD_PYTHON=2 -elif test "x$PYTHON_PACKAGE" = "xdefault"; then - BUILD_PYTHON=2 -elif test "x$PYTHON_PACKAGE" = "xminimal"; then - BUILD_PYTHON=1 -elif test "x$PYTHON_PACKAGE" = "xnone"; then - BUILD_PYTHON=0 -else - echo "ERROR: PYTHON_PACKAGE variable, " $PYTHON_PACKAGE ", is not understood. Use:" - echo " full, default, minimal, or none" - exit 1 -fi -if test $BUILD_PYTHON = 0 ; then -AC_DEFINE(HAS_NO_PYTHON) -fi - -if test "$PYTHON_CMD" = "default" -o \ - "$PYTHON_CMD"x = "x"; then - AC_PATH_PROGS(PYTHON_CMD, python2 python, "none") - if test "$PYTHON_CMD" = "none"; then - BUILD_PYTHON=0 - echo "Python not found. Only those portions of Cantera that" - echo "can be installed without Python will be installed." - else - echo "Python command set by configure to " $PYTHON_CMD - fi -else - echo "Python command preset to $PYTHON_CMD" -fi - - -AC_SUBST(BUILD_PYTHON) -AC_DEFINE_UNQUOTED(PYTHON_EXE,"$PYTHON_CMD") - -USE_NUMARRAY='y' - -if test "$USE_NUMERIC" = "y"; then -USE_NUMARRAY='n' -USE_NUMPY='n' -AC_DEFINE(HAS_NUMERIC) -fi - -if test "$USE_NUMPY" = "y"; then -USE_NUMARRAY='n' -AC_DEFINE(HAS_NUMPY) -fi - -if test "$USE_NUMARRAY" = "y"; then -AC_DEFINE(HAS_NUMARRAY) -fi - -if test "$USE_NUMARRAY" = "y"; then - if test -n "$NUMARRAY_INC_DIR" ; then - echo "setting NUMARRAY_INC_DIR to $NUMARRAY_INC_DIR" - else - NUMARRAY_INC_DIR="" - if test -n "$NUMARRAY_HOME"; then - dir5="$NUMARRAY_HOME/include/python2.5" - if test -d $dir5 ; then - NUMARRAY_INC_DIR=$dir5 - else - dir4="$NUMARRAY_HOME/include/python2.4" - if test -d $dir4 ; then - NUMARRAY_INC_DIR=$dir4 - else - dir3="$NUMARRAY_HOME/include/python2.3" - if test -d $dir3 ; then - NUMARRAY_INC_DIR=$dir3 - else - dir1="$NUMARRAY_HOME/include/python" - if test -d $dir1 ; then - NUMARRAY_INC_DIR=$dir1 - else - echo "WARNING: NUMARRAY include dir $dir1 does not exist." - NUMARRAY_INC_DIR=$dir1 - fi - fi - fi - fi - echo "setting NUMARRAY_INC_DIR to $NUMARRAY_INC_DIR" - fi - fi -else - NUMARRAY_INC_DIR="" - NUMARRAY_HOME="" -fi - - -if test "$USE_NUMPY" = "y"; then - if test -n "$NUMPY_INC_DIR" ; then - echo "setting NUMPY_INC_DIR to $NUMPY_INC_DIR" - else - NUMPY_INC_DIR="" - if test -n "$NUMPY_HOME"; then - dir6="$NUMPY_HOME/include/python2.6" - if test -d $dir6 ; then - NUMPY_INC_DIR=$dir6 - else - dir5="$NUMPY_HOME/include/python2.5" - if test -d $dir5 ; then - NUMPY_INC_DIR=$dir5 - else - dir4="$NUMPY_HOME/include/python2.4" - if test -d $dir4 ; then - NUMPY_INC_DIR=$dir4 - else - dir3="$NUMPY_HOME/include/python2.3" - if test -d $dir3 ; then - NUMPY_INC_DIR=$dir3 - else - dir2="$NUMPY_HOME/include/python2.2" - if test -d $dir2 ; then - NUMPY_INC_DIR=$dir2 - else - dir1="$NUMPY_HOME/include/python" - if test -d $dir1 ; then - NUMPY_INC_DIR=$dir1 - else - echo "WARNING: NUMPY include dir $dir1 does not exist." - NUMPY_INC_DIR=$dir1 - fi - fi - fi - fi - fi - fi - echo "setting NUMPY_INC_DIR to $NUMPY_INC_DIR" - fi - fi -else - NUMPY_INC_DIR="" - NUMPY_HOME="" -fi -AC_SUBST(NUMPY_INC_DIR) -AC_SUBST(NUMPY_HOME) - -# this fails, at least on a Mac. By default, numarray include files -# are installed in the include directory in the Python framework. This -# does not require setting NUMARRAY_INC_DIR, so testing that it is -# non-null is not a valid test of whether numarray is -# installed. Commented out 7/26/07 by DGG. -#if test $BUILD_PYTHON = 2 ; then -#if test x"$NUMARRAY_INC_DIR" = "x" ; then -#if test ! "$USE_NUMERIC" = "y"; then -# echo 'NUMARRAY is being used but we can find it' -# if test "x$PYTHON_PACKAGE" = "xdefault"; then -# echo 'setting python package build back to minimal' -# BUILD_PYTHON=1 -# fi -#fi -#fi -#fi - - -AC_SUBST(NUMARRAY_INC_DIR) -AC_SUBST(NUMARRAY_HOME) -AC_SUBST(CANTERA_PYTHON_HOME) - -#-------------------------- -# CVS Tag -#-------------------------- -CVSTAG=`${PYTHON_CMD} tools/src/findtag.py ..` -if test "x$CVSTAG" = "x"; then -CVSTAG="HEAD" -fi -AC_SUBST(CVSTAG) - - -# -# Matlab Interface -# - -BUILD_MATLAB=0 - -if test "$BUILD_MATLAB_TOOLBOX" != "n"; then - if test "$MATLAB_CMD" = "default" -o \ - "$MATLAB_CMD"x = "x"; then - AC_PATH_PROG(MATLAB_CMD, matlab, "none") - if test "$MATLAB_CMD" = "none"; then - MATLAB_CMD=`find /*/MATLAB*/bin/m* -name matlab` - fi - if test "$MATLAB_CMD" != "none" -a "x$MATLAB_CMD" != "x"; then - BUILD_MATLAB=1 - BUILD_CLIB=1 - #echo 'HKM -> BUILD turned on 1' - fi - else - echo "Matlab command preset to $MATLAB_CMD" - BUILD_MATLAB=1 - BUILD_CLIB=1 - fi - if test "x$OS_IS_WIN" = "x1"; then - MATLAB_CMD=`cygpath -a -m "$MATLAB_CMD" ` - echo "Windows MATLAB command: ${MATLAB_CMD}" - fi - - AC_MSG_CHECKING(MATLAB ($MATLAB_CMD)) - rm -f diary - cat >> testmat.m << EOF -diary; -try, mexext, catch, disp 'mex_unknown', end; -diary off; -exit; -EOF - ${MATLAB_CMD} -nojvm -nosplash -r testmat &> /dev/null -# &> /dev/null` - if test -f diary; then - BUILD_MATLAB=1 - echo $MATLAB_CMD - mex_ext=`grep mex* diary` - rm -f diary - else - BUILD_MATLAB=0 - echo 'failed!' - fi - rm -f testmat.m -else - echo "MATLAB interface will not be installed" - if test -z "$MATLAB_CMD"; then - MATLAB_CMD="matlab" - fi -fi - -if test "$mex_ext" = "mex_unknown"; then -case $ac_sys_system in - Darwin*) hardware=`uname -m`; - mex_ext=mexmac; - if test "$hardware" = "i386" ; then - mex_ext=mexmaci - fi;; - CYGWIN*) mex_ext=dll;; - Linux* ) mex_ext=mexglx;; -esac -fi - -if test "$BUILD_MATLAB" = "1"; then - echo " " - echo "---------------------------- MATLAB -------------------------------" - echo "MEX file extension: " $mex_ext - echo "MATLAB command: " $MATLAB_CMD - echo "--------------------------------------------------------------------" - echo " " -fi - -AC_SUBST(BUILD_MATLAB) -AC_SUBST(MATLAB_CMD) -AC_SUBST(BUILD_CLIB) - -#------------------------------------------------- - -#----------------------------------------------------------------------- -# C++ Compilation -#----------------------------------------------------------------------- - - -export_name=$target -AC_SUBST(export_name) - -# -# PIC -# Compiler flag for specifying position independent code. -# This flag is needed in the compilation step -# for code that will go into a shared library. -# If Cantera is used in the Full python installation -# mode, this means that all of Cantera's code -# compiled into static libraries and all code linked into -# those routines, such as cvode and lapack, should be position independent -# and should be compiled with this flag. -# -if test -z "$PIC"; then - case $ac_sys_system in - SunOS* ) - PIC=' ';; - CYGWIN* ) - PIC=' ';; - * ) - PIC='-fPIC';; - esac -fi -echo 'checking for Position independent code command ... ' $PIC -AC_SUBST(PIC) - -dnl Checks for programs. -# -# This script will find and set the $INSTALL -# environmental variable, and set a substitution -# rule for that variable -AC_PROG_INSTALL -# -# HKM - -# However, recently, I've had problems with -# the default LINUX /usr/bin/install program wrt -# files/directories which are group writeable, but -# which are not owned by the current user (this happens -# in a group environment). The default config/install-sh -# doesn't have this problem. So, I changed the default -# install program to config/install-sh, which should work -# on all platforms since its a bourne shell script -# HKM 12/24/2009 - Ran into another problem with the new cygwin 1.7.1. -# THe install (and even cp -f in some cases) program will fail -# when an existing different file is in place. This occurs sometimes -# and I can not quite nail down when. However replacing -# the install command for cygwin. Note, install no longer -# needs to have a wildcard capability within Cantera. - -case $ac_sys_system in - CYGWIN* ) - INSTALL=${INSTALL_BIN:=config/install-sh} - echo 'INSTALL program has been set to ' $INSTALL;; -esac - -# -# precompile_headers still relevant? -# -precompile_headers=no -# -# CFLAGS: flags that get attached to the C compiler -# statement. AFLAGS are base flags that -# get added to compilers and loaders. -# FFLAGS: flags that get attached to the Fortran compiler -# statement. AFLAGS are base flags that -# get added to compilers and loaders. -# -# CXXFLAGS: Flags that get attached to the CXX compiler -# statement. AFLAGS are base flags that -# get added to compilers and loaders. -# -if test -z "$AFLAGS" ; then - AFLAGS=" " -fi -if test -z "$CXXFLAGS" ; then - CXXFLAGS="$AFLAGS" -else - CXXFLAGS="$CXXFLAGS"" ""$AFLAGS" -fi -if test -z "$CFLAGS" ; then - CFLAGS="$AFLAGS" -else - CFLAGS="$CFLAGS"" ""$AFLAGS" -fi -if test -z "$FFLAGS" ; then - FFLAGS="$AFLAGS" -else - FFLAGS="$FFLAGS"" ""$AFLAGS" -fi - -if test "x$OS_IS_WIN" = "x1"; then - #CXX=cl.exe - #CC=cl.exe - #export CXX - AC_PROG_CXX() - AC_PROG_CC() -else - -# -# Determines the CXX compiler to use -# -export CXX -AC_PROG_CXX() -AC_PROG_CC() - - -AC_MSG_CHECKING(for ability to precompile headers) - -if test -n "$GCC"; then - msg=`rm -f *h.gch; $CXX testpch.h &> /dev/null` - if test -f testpch.h.gch; then - precompile_headers=yes - AC_DEFINE(USE_PCH) - fi -fi -AC_MSG_RESULT(${precompile_headers}) -# End of the OS_IS_WIN section -fi - -# Sizes of various common basic types -AC_CHECK_SIZEOF(int, 4) -AC_CHECK_SIZEOF(long, 4) -AC_CHECK_SIZEOF(void *, 4) -AC_CHECK_SIZEOF(char, 1) -AC_CHECK_SIZEOF(short, 2) -AC_CHECK_SIZEOF(float, 4) -AC_CHECK_SIZEOF(double, 8) -AC_CHECK_SIZEOF(fpos_t, 4) - -AC_SUBST(SOEXT) - -if test -z "$SHARED"; then SHARED='-shared'; fi -AC_SUBST(SHARED) - -CXX_INCLUDES=$BOOST_INCLUDE -AC_SUBST(CXX_INCLUDES) -# -# LCXX_FLAGS: Flags that get attached to the CXX loader -# statement AFLAGS are base flags that -# get added to compilers and loaders. -# -if test ! -z "$AFLAGS" ; then - if test -z "$LCXX_FLAGS" ; then - LCXX_FLAGS="$AFLAGS" - else - LCXX_FLAGS="$LCXXFLAGS"" ""$AFLAGS" - fi -fi -if test "$BUILD_WITH_F2C"="n"; then - if test ! -z "$LFORT_FLAGS"; then - LCXX_FLAGS="$LCXX_FLAGS"" ""$LFORT_FLAGS" - fi -fi - -AC_SUBST(LCXX_FLAGS) - -# -# Ending Libs for compiling static applications and -# dynamically loaded libraries -# (sunpro solaris needs a few for dynamic linking) -# -# -# Check to see if we have a -lm line -# -AC_CHECK_LIB(m, printf, [add_stm=1], [add_stm=0], [ ]) - -# -# Check to see if we have a -lstdc++ line -# -AC_CHECK_LIB(stdc++, printf, [add_stdc=1], [add_stdc=0], []) - - -if test -n "$NEED_F2C" ; then - LCXX_END_LIBS="-lctf2c ""$LCXX_END_LIBS" -fi -case $ac_sys_system in - SunOS* ) - case $CXX in - CC* ) - LCXX_END_LIBS="$LCXX_END_LIBS"" -lCrun -lCstd -lfsu" ;; - esac ;; -esac -if test $add_stm = 1 ; then - echo 'Adding -lm to the end of the LCXX_END_LIBS variable' - LCXX_END_LIBS="$LCXX_END_LIBS"" -lm" - echo 'LCXX_END_LIBS = ' $LCXX_END_LIBS -fi -if test $add_stdc = 1 ; then - echo 'Adding -lstdc++ to the end of the LCXX_END_LIBS variable' - LCXX_END_LIBS="$LCXX_END_LIBS"" -lstdc++ " - echo 'LCXX_END_LIBS = ' $LCXX_END_LIBS -fi - - -AC_SUBST(LCXX_END_LIBS) - - -has_sstream=no -AC_MSG_CHECKING(for sstream) -cat >> testsstream.cpp << EOF -#include -main() {} -EOF - msg=`${CXX} -c testsstream.cpp &> /dev/null` - if test -f testsstream.o; then - has_sstream=yes - rm testsstream.o - AC_DEFINE(HAS_SSTREAM) - fi -rm -f testsstream.cpp -AC_MSG_RESULT(${has_sstream}) - -# -# Determine if we have a command to strip symbols from an object file -# -HAVE_STRIPSYMBOLS='yes' -case $ac_sys_system in - SunOS* ) - HAVE_STRIPSYMBOLS='no';; - Darwin* ) - HAVE_STRIPSYMBOLS='no';; -esac -echo 'checking for a strip symbol command ... ' $HAVE_STRIPSYMBOLS -AC_SUBST(HAVE_STRIPSYMBOLS) - -#--------------------------------------------------------------------------- -# Fortran -#--------------------------------------------------------------------------- - -#if test x"$build_with_f2c" = "x0"; then -AC_PROG_F77() - -# if G77 is defined, then add a flag to turn off adding a second underscore -# to procedures that have an underscore in the name -if test -n "$G77"; then - FFLAGS=$FFLAGS' -fno-second-underscore' -else - if test $F77 = "g77" -o $F77 = "mpif77" -o $F77 = "gfortran" ; then - FFLAGS=$FFLAGS' -fno-second-underscore' - fi -fi - -dnl Checks for libraries. -AC_F77_LIBRARY_LDFLAGS() - -override_f77_libs=0; - -#case $ac_sys_system in -# Darwin*) FLIBS='-lSystem'; override_f77_libs=1; SHARED_CTLIB=0;; -#esac -# -#if test $override_f77_libs -gt 0; then -# echo The Fortran 77 libraries on this platform are not correctly determined by -# echo the configuration process. They are being manually set to -# echo FLIBS = $FLIBS -#fi - -#fi - -# ---------------------------------------------------------------------- -# LCXX_FLIBS are extra libraries the CXX linker needs -# in order to link in fortran programs where fortran is the main program - -LCXX_FLIBS= - -case $ac_sys_system in - SunOS*) LCXX_FLIBS="-lCrun -lCstd -lfsu" ;; -esac - -#-------------------------------------------- - - -if test "x${BUILD_F90}" != "x0"; then - if test "$F90" = "default" -o \ - "$F90"x = "x"; then - AC_PATH_PROGS(F90, f95 gfortran g95, "none") - if test "$F90" = "none" ; then - echo "ERROR: Fortran 90 requested, but no Fortran 90/95 compiler found!" - else - echo "Fortran compiler set to " $F90 - fi - else - echo "Fortran 90/95 compiler preset to $F90" - fi -fi - -has_f90=no -f90type=none -f90_module_dir='-I' -f90_opts='' - -if test "x${BUILD_F90}" != "x0"; then - AC_MSG_CHECKING(Fortran 90 compiler ($F90) type) - cat >> testf90.f90 << EOF -module mt -double precision, parameter :: x = 2.3 -end module mt -program testf90 -use mt -integer :: i -end program testf90 -EOF - msg=`${F90} -c testf90.f90 &> /dev/null` - if test -f testf90.o; then - has_f90=yes - rm testf90.o - f90type=unknown - fi -# -F90LIBS= - - msg=`${F90} --version &> f90out` - isgfortran=`grep -c 'GNU Fortran' f90out` - if test "x${isgfortran}" != "x0"; then - f90type="gfortran" - f90opts="-fno-second-underscore -I. -I${ct_incdir}" - f90buildopts="-fno-second-underscore -I." - F90LIBS="-lgfortran" - fi - - isg95=`grep -c 'G95' f90out` - if test "x${isg95}" != "x0"; then - f90type="g95" - f90opts="-fno-second-underscore -I. -I${ct_incdir}" - f90buildopts="-fno-second-underscore -I." - #case $ac_sys_system in - # Darwin*) FLIBS='-lg2c -lcc_dynamic';; - #esac - fi - - msg=`${F90} -V &> f90out` - isnag=`grep -c NAGWare f90out` - if test "x${isnag}" != "x0"; then - f90type="NAG" - f90opts="-I. -I${ct_incdir}" - f90buildopts="-I." - fi -# - msg=`${F90} -V -c testf90.f90 &> f90out` - isabsoft=`grep -c Absoft f90out` - if test "x${isabsoft}" != "x0"; then - f90type="Absoft" - f90opts="-p. -p${ct_incdir} -s -YEXT_NAMES=LCS -YEXT_SFX=_ -YCFRL=1" - f90buildopts="-p. -s -YEXT_NAMES=LCS -YEXT_SFX=_ -YCFRL=1" - fi - rm -f testf90.f90 - AC_MSG_RESULT(${f90type}) - if test "x${BUILD_F90}" != "x0"; then - if test "x${has_f90}" = "xno"; then - echo " -> cannot build the Fortran 90 interface" - BUILD_F90=0 - fi - fi -fi -if test -e f90out ; then - rm -f f90out -fi -savef90flags=${F90FLAGS} -F90FLAGS=${f90opts}' '${F90FLAGS} -F90BUILDFLAGS=${f90buildopts}' '${savef90flags} -AC_SUBST(BUILD_F90) -AC_SUBST(F90) -AC_SUBST(F90FLAGS) -AC_SUBST(F90BUILDFLAGS) -AC_SUBST(F90LIBS) -AC_SUBST(LCXX_FLIBS) - -AC_OBJEXT -AC_EXEEXT - -AC_SUBST(precompile_headers) -AC_SUBST(FLIBS) -AC_SUBST(OS_IS_DARWIN) -AC_SUBST(OS_IS_WIN) -AC_SUBST(OS_IS_CYGWIN) -AC_SUBST(SHARED_CTLIB) -AC_SUBST(mex_ext) - -# filename extensions for Fortran 77 -if test -z "$F77_EXT"; then F77_EXT=f; fi -AC_SUBST(F77_EXT) - - -AC_LANG_CPLUSPLUS - -if test -z "$CXX_EXT"; then CXX_EXT=cpp; fi -AC_SUBST(CXX_EXT) - -if test -z "$OBJ_EXT"; then OBJ_EXT='o'; fi -AC_SUBST(OBJ_EXT) - -if test -z "$EXE_EXT"; then EXE_EXT=$EXEEXT; fi -AC_SUBST(EXE_EXT) - -dnl AC_LANG_FORTRAN77 -#local_math_libs='-lcvode' -#AC_SUBST(local_math_libs) - - -math_libs='-lcvode -lctmath' -AC_SUBST(math_libs) - -if test "$LAPACK_FTN_TRAILING_UNDERSCORE" = "y" -then - AC_DEFINE(LAPACK_FTN_TRAILING_UNDERSCORE) - AC_DEFINE(FTN_TRAILING_UNDERSCORE) -fi - -if test "$LAPACK_FTN_STRING_LEN_AT_END" = "y" -then AC_DEFINE(LAPACK_FTN_STRING_LEN_AT_END) -fi - -if test "$LAPACK_NAMES" = "lower" -then AC_DEFINE(LAPACK_NAMES_LOWERCASE) -fi - -# from the Python configure.in file... - -# Set info about shared libraries. -AC_SUBST(SO) -AC_SUBST(LDSHARED) - -AC_SUBST(EXTRA_LINK) - -# SO is the extension of shared libraries `(including the dot!) -# -- usually .so, .sl on HP-UX, .dll on Cygwin -AC_MSG_CHECKING(SO) -if test -z "$SO" -then - case $ac_sys_system in - hp*|HP*) SO=.sl;; - CYGWIN*) SO=.dll;; - Darwin*) SO=.dylib;; - *) SO=.so;; - esac -fi -AC_MSG_RESULT($SO) - -dnl Checks for header files. - -dnl Checks for typedefs, structures, and compiler characteristics. - -AC_LANG_CPLUSPLUS - -dnl AC_MSG_CHECKING(for the Standard Template Library) - -# -# Section to handle tscompare -# -cd bin -touch s1 -sleep 1 -touch s2 -tsc=tscompare_alwaystrue -./tscompare_sh s2 s1 2> /dev/null -res=$? -if test "$res" = "0" ; then - tsc=tscompare_sh -else - ./tscompare_csh s2 s1 2> /dev/null - res=$? - if test "$res" = "0" ; then - tsc=tscompare_csh - else - ./tscompare_ksh s2 s1 2> /dev/null - res=$? - if test "$res" = "0" ; then - tsc=tsccompare_ksh - fi - fi -fi -/bin/rm s2 s1 -echo "checking for a time step comparison checker ... " $tsc -cp $tsc tscompare -currPath=`pwd` -TSCOMPARE_abs="$currPath"'/'tscompare -cd .. -AC_SUBST(TSCOMPARE_abs) - -# -# Create an absolute path for the $INSTALL function -# named INSTALL_abs -# (note m4 expansions @<:@ = left bracket, @:>@ = right bracket) -#echo "HKM - INSTALL = " $INSTALL -case "$INSTALL" in - @<:@\\/$@:>@* | ?:@<:@\\/@:>@* ) - INSTALL_abs="$INSTALL" ;; - *) - currPath=`pwd` - INSTALL_abs="$currPath"'/'"$INSTALL" ;; -esac -#echo 'INSTALL_abs = ' $INSTALL_abs -AC_SUBST(INSTALL_abs) - -# -# See if the install rule accepts the -v flag -# -$INSTALL -v License.txt config > config/e.out 2>&1 -dd=$? -INSTALL_VERBOSE= -if test "$dd" = "0" ; then - INSTALL_VERBOSE="-v" -fi -if test -e "config/License.txt" ; then - rm -f config/License.txt -fi -if test -e config/e.out ; then - rm -f e.out -fi -AC_SUBST(INSTALL_VERBOSE) - - -dnl Checks for library functions. - -AC_OUTPUT(Makefile \ - Cantera/Makefile \ - Cantera/src/Makefile \ - Cantera/src/base/Makefile \ - Cantera/src/zeroD/Makefile \ - Cantera/src/oneD/Makefile \ - Cantera/src/converters/Makefile \ - Cantera/src/transport/Makefile \ - Cantera/src/thermo/Makefile \ - Cantera/src/kinetics/Makefile \ - Cantera/src/numerics/Makefile \ - Cantera/src/spectra/Makefile \ - Cantera/src/equil/Makefile \ - Cantera/clib/src/Makefile \ - Cantera/fortran/src/Makefile \ - Cantera/fortran/f77demos/f77demos.mak \ - Cantera/fortran/f77demos/Makefile \ - Cantera/matlab/Makefile \ - Cantera/matlab/setup_matlab.py \ - Cantera/python/Makefile \ - Cantera/python/setup.py \ - Cantera/cxx/Makefile \ - Cantera/cxx/src/Makefile \ - Cantera/cxx/demos/Makefile \ - Cantera/cxx/demos/combustor/Makefile \ - Cantera/cxx/demos/combustor/Makefile.install \ - Cantera/cxx/demos/flamespeed/Makefile \ - Cantera/cxx/demos/flamespeed/Makefile.install \ - Cantera/cxx/demos/kinetics1/Makefile \ - Cantera/cxx/demos/kinetics1/Makefile.install \ - Cantera/cxx/demos/NASA_coeffs/Makefile \ - Cantera/cxx/demos/NASA_coeffs/Makefile.install \ - Cantera/cxx/demos/rankine/Makefile \ - Cantera/cxx/demos/rankine/Makefile.install \ - Cantera/cxx/include/Cantera.mak \ - Cantera/cxx/include/Cantera_bt.mak \ - Cantera/user/Makefile \ - Cantera/python/src/Makefile \ - Cantera/python/examples/Makefile \ - Cantera/python/examples/equilibrium/Makefile \ - Cantera/python/examples/equilibrium/adiabatic_flame/Makefile \ - Cantera/python/examples/equilibrium/multiphase_plasma/Makefile \ - Cantera/python/examples/equilibrium/simple_test/Makefile \ - Cantera/python/examples/equilibrium/stoich_flame/Makefile \ - Cantera/python/examples/gasdynamics/isentropic/Makefile \ - Cantera/python/examples/gasdynamics/soundSpeed/Makefile \ - Cantera/python/examples/flames/adiabatic_flame/Makefile \ - Cantera/python/examples/flames/flame1/Makefile \ - Cantera/python/examples/flames/flame2/Makefile \ - Cantera/python/examples/flames/flame_fixed_T/Makefile \ - Cantera/python/examples/flames/free_h2_air/Makefile \ - Cantera/python/examples/flames/npflame1/Makefile \ - Cantera/python/examples/flames/stflame1/Makefile \ - Cantera/python/examples/fuel_cells/Makefile \ - Cantera/python/examples/liquid_vapor/critProperties/Makefile \ - Cantera/python/examples/liquid_vapor/rankine/Makefile \ - Cantera/python/examples/kinetics/Makefile \ - Cantera/python/examples/misc/Makefile \ - Cantera/python/examples/reactors/combustor_sim/Makefile \ - Cantera/python/examples/reactors/functors_sim/Makefile \ - Cantera/python/examples/reactors/mix1_sim/Makefile \ - Cantera/python/examples/reactors/mix2_sim/Makefile \ - Cantera/python/examples/reactors/piston_sim/Makefile \ - Cantera/python/examples/reactors/reactor1_sim/Makefile \ - Cantera/python/examples/reactors/reactor2_sim/Makefile \ - Cantera/python/examples/reactors/sensitivity_sim/Makefile \ - Cantera/python/examples/reactors/surf_pfr_sim/Makefile \ - Cantera/python/examples/surface_chemistry/diamond_cvd/Makefile \ - Cantera/python/examples/surface_chemistry/catcomb_stagflow/Makefile \ - Cantera/python/examples/transport/Makefile \ - Cantera/python/examples/flames/Makefile \ - Cantera/python/examples/gasdynamics/Makefile \ - Cantera/python/examples/liquid_vapor/Makefile \ - Cantera/python/examples/reactors/Makefile \ - Cantera/python/examples/surface_chemistry/Makefile \ - ext/lapack/Makefile \ - ext/blas/Makefile \ - ext/cvode/Makefile \ - ext/math/Makefile \ - ext/recipes/Makefile \ - ext/tpx/Makefile \ - ext/Makefile \ - ext/f2c_libs/Makefile \ - ext/f2c_blas/Makefile \ - ext/f2c_lapack/Makefile \ - ext/f2c_math/Makefile \ - examples/Makefile \ - examples/cxx/Makefile \ - tools/Makefile \ - tools/doc/Cantera.cfg \ - tools/doc/Makefile \ - tools/src/Makefile \ - tools/src/sample.mak \ - tools/src/finish_install.py \ - tools/src/package4mac \ - tools/templates/f77/demo.mak \ - tools/templates/f90/demo.mak \ - tools/templates/cxx/demo.mak \ - tools/testtools/Makefile \ - data/inputs/Makefile \ - data/inputs/mkxml \ - test_problems/Makefile \ - test_problems/cxx_ex/Makefile \ - test_problems/silane_equil/Makefile \ - test_problems/surfkin/Makefile \ - test_problems/spectroscopy/Makefile \ - test_problems/surfSolverTest/Makefile \ - test_problems/diamondSurf/Makefile \ - test_problems/diamondSurf_dupl/Makefile \ - test_problems/ChemEquil_gri_matrix/Makefile \ - test_problems/ChemEquil_gri_pairs/Makefile \ - test_problems/ChemEquil_ionizedGas/Makefile \ - test_problems/ChemEquil_red1/Makefile \ - test_problems/CpJump/Makefile \ - test_problems/mixGasTransport/Makefile \ - test_problems/multiGasTransport/Makefile \ - test_problems/printUtilUnitTest/Makefile \ - test_problems/fracCoeff/Makefile \ - test_problems/negATest/Makefile \ - test_problems/NASA9poly_test/Makefile \ - test_problems/ck2cti_test/Makefile \ - test_problems/ck2cti_test/runtest \ - test_problems/nasa9_reader/Makefile \ - test_problems/nasa9_reader/runtest \ - test_problems/min_python/Makefile \ - test_problems/min_python/minDiamond/Makefile \ - test_problems/min_python/negATest/Makefile \ - test_problems/pureFluidTest/Makefile \ - test_problems/rankine_democxx/Makefile \ - test_problems/python/Makefile \ - test_problems/cathermo/Makefile \ - test_problems/cathermo/issp/Makefile \ - test_problems/cathermo/ims/Makefile \ - test_problems/cathermo/stoichSubSSTP/Makefile \ - test_problems/cathermo/testIAPWS/Makefile \ - test_problems/cathermo/testIAPWSPres/Makefile \ - test_problems/cathermo/testIAPWSTripP/Makefile \ - test_problems/cathermo/testWaterPDSS/Makefile \ - test_problems/cathermo/testWaterTP/Makefile \ - test_problems/cathermo/HMW_test_1/Makefile \ - test_problems/cathermo/HMW_test_3/Makefile \ - test_problems/cathermo/HMW_graph_GvT/Makefile \ - test_problems/cathermo/HMW_graph_GvI/Makefile \ - test_problems/cathermo/HMW_graph_HvT/Makefile \ - test_problems/cathermo/HMW_graph_CpvT/Makefile \ - test_problems/cathermo/HMW_graph_VvT/Makefile \ - test_problems/cathermo/DH_graph_1/Makefile \ - test_problems/cathermo/DH_graph_acommon/Makefile \ - test_problems/cathermo/DH_graph_NM/Makefile \ - test_problems/cathermo/DH_graph_Pitzer/Makefile \ - test_problems/cathermo/DH_graph_bdotak/Makefile \ - test_problems/cathermo/HMW_dupl_test/Makefile \ - test_problems/cathermo/VPissp/Makefile \ - test_problems/cathermo/wtWater/Makefile \ - test_problems/VCSnonideal/Makefile \ - test_problems/VPsilane_test/Makefile \ - test_problems/VPsilane_test/runtest \ - test_problems/VCSnonideal/NaCl_equil/Makefile \ - bin/install_tsc \ - ) -# ) -if test "x${OS_IS_WIN}" = "x1"; then - cp -f config.h winconfig.h - echo 'copying config.h, which we just customized for the requested configuration, to winconfg.h' - cd ext/f2c_libs - cp arith.hwin32 arith.h - cd ../.. -fi -if test -f "test_problems/ck2cti_test/runtest"; then - chmod +x test_problems/ck2cti_test/runtest -fi -if test -f "test_problems/nasa9_reader/runtest"; then - chmod +x test_problems/nasa9_reader/runtest -fi -if test -f "test_problems/VPsilane_test/runtest"; then - chmod +x test_problems/VPsilane_test/runtest -fi -if test -f "Cantera/python/examples/equilibrium/adiabatic_flame/runtest"; then - chmod +x Cantera/python/examples/equilibrium/adiabatic_flame/runtest -fi -if test -f "Cantera/python/examples/equilibrium/multiphase_plasma/runtest"; then - chmod +x Cantera/python/examples/equilibrium/multiphase_plasma/runtest -fi -if test -f "Cantera/python/examples/equilibrium/simple_test/runtest"; then - chmod +x Cantera/python/examples/equilibrium/simple_test/runtest -fi -if test -f "Cantera/python/examples/equilibrium/stoich_flame/runtest"; then - chmod +x Cantera/python/examples/equilibrium/stoich_flame/runtest -fi -if test -f "Cantera/python/examples/gasdynamics/isentropic/runtest"; then - chmod +x Cantera/python/examples/gasdynamics/isentropic/runtest -fi -if test -f "Cantera/python/examples/gasdynamics/soundSpeed/runtest"; then - chmod +x Cantera/python/examples/gasdynamics/soundSpeed/runtest -fi -if test -f "Cantera/python/examples/flames/adiabatic_flame/runtest"; then - chmod +x Cantera/python/examples/flames/adiabatic_flame/runtest -fi -if test -f "Cantera/python/examples/flames/flame1/runtest"; then - chmod +x Cantera/python/examples/flames/flame1/runtest -fi -if test -f "Cantera/python/examples/flames/flame2/runtest"; then - chmod +x Cantera/python/examples/flames/flame2/runtest -fi -if test -f "Cantera/python/examples/flames/flame_fixed_T/runtest"; then - chmod +x Cantera/python/examples/flames/flame_fixed_T/runtest -fi -if test -f "Cantera/python/examples/flames/free_h2_air/runtest"; then - chmod +x Cantera/python/examples/flames/free_h2_air/runtest -fi -if test -f "Cantera/python/examples/flames/npflame1/runtest"; then - chmod +x Cantera/python/examples/flames/npflame1/runtest -fi -if test -f "Cantera/python/examples/flames/stflame1/runtest"; then - chmod +x Cantera/python/examples/flames/stflame1/runtest -fi -if test -f "Cantera/python/examples/fuel_cells/runtest"; then - chmod +x Cantera/python/examples/fuel_cells/runtest -fi -if test -f "Cantera/python/examples/liquid_vapor/critProperties/runtest"; then - chmod +x Cantera/python/examples/liquid_vapor/critProperties/runtest -fi -if test -f "Cantera/python/examples/liquid_vapor/rankine/runtest"; then - chmod +x Cantera/python/examples/liquid_vapor/rankine/runtest -fi -if test -f "Cantera/python/examples/kinetics/runtest"; then - chmod +x Cantera/python/examples/kinetics/runtest -fi -if test -f "Cantera/python/examples/misc/runtest"; then - chmod +x Cantera/python/examples/misc/runtest -fi -if test -f "Cantera/python/examples/reactors/combustor_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/combustor_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/mix1_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/mix1_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/mix2_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/mix2_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/piston_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/piston_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/reactor1_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/reactor1_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/reactor2_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/reactor2_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/sensitivity_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/sensitivity_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/surf_pfr_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/surf_pfr_sim/runtest -fi -if test -f "Cantera/python/examples/surface_chemistry/diamond_cvd/runtest"; then - chmod +x Cantera/python/examples/surface_chemistry/diamond_cvd/runtest -fi -if test -f "Cantera/python/examples/surface_chemistry/catcomb_stagflow/runtest"; then - chmod +x Cantera/python/examples/surface_chemistry/catcomb_stagflow/runtest -fi -if test -f "Cantera/python/examples/transport/runtest"; then - chmod +x Cantera/python/examples/transport/runtest -fi -if test -f "bin/install_tsc"; then - chmod +x bin/install_tsc -fi -if test -f "data/inputs/mkxml"; then - chmod +x data/inputs/mkxml -fi - - -echo -if test "x${OS_IS_WIN}" = "x0"; then - echo "Now type '${MAKE}' to build Cantera" -else - echo "Now start Visual Studio, open workspace 'win32/vc9/cantera.sln'," - echo "and build project 'all'. " -# echo " When this finishes, come back here and " -# echo "type 'make win' to make the Python and/or MATLAB interfaces." -fi -echo - diff --git a/preconfig b/preconfig deleted file mode 100755 index 7aa1de70e..000000000 --- a/preconfig +++ /dev/null @@ -1,620 +0,0 @@ -#!/bin/sh -# -####################################################################### -# -# Cantera Configuration File -# -# Edit this file to control how Cantera is built. Parameters can be set -# here, or alternatively environment variables may be set before calling -# this script. -# -# The default configuration uses GNU compilers (gcc/g++/g77) and -# builds as much of Cantera and its language interfaces as it can -# (e.g. if MATLAB is installed on your system, the MATLAB toolbox -# will be built automatically, otherwise it will be skipped. On linux -# or Mac OS X, this default configuration should work, and most -# likely you don't need to edit this file at all - just run it. -# -# NOTE: if you DO make changes to this file, save it with another name -# so that it will not be overwritten if you update the source -# distribution. - -####################################################################### -# -# Set CANTERA_CONFIG_PREFIX to the directory where you want Cantera -# installed into. The default is /usr/local/Cantera -# -# If you define this to be , then instead of running this -# script as ./preconfig --prefix= you can just run it as -# ./preconfig. - -CANTERA_CONFIG_PREFIX=${CANTERA_CONFIG_PREFIX:=""} - -#---------------------------------------------------------------------- -# Language Interfaces -#---------------------------------------------------------------------- -# -# Cantera has several programming language interfaces. Select the ones -# you want to build. The default is to try to build all language -# interfaces. -# -# -#----------------- Python -------------------------------------------- -# -# In addition to being one of the supported language interfaces, -# Python is used internally by Cantera, both in the build process and -# at run time (to process .cti input files). Therefore, you generally -# need to have Python on your system; if you don't, first install it -# from http://www.python.org before proceeding with the installation -# of Cantera. -# -# If you plan to work in Python, or you want to use the graphical -# MixMaster application, then you need the full Cantera Python -# Package. If, on the other hand, you will only use Cantera from some -# other language (e.g. MATLAB or Fortran 90/95) and only need Python -# to process .cti files, then you only need a minimal subset of the -# package (actually, only one file). - -# Set PYTHON_PACKAGE to one of these four strings: -# full install everything needed to use Cantera from Python -# minimal install only enough to process .cti files -# none Don't install or run any Python scripts during the -# build process -# default try to do a full installation, but fall back to a minimal -# one in case of errors - -PYTHON_PACKAGE=${PYTHON_PACKAGE:="minimal"} - -# Cantera needs to know where to find the Python interpreter. If -# PYTHON_CMD is set to "default", then the configuration process will -# look for the Python Interpreter somewhere on your PATH, either as -# 'python2' or as 'python'. If it is not on the PATH, or has a -# different name, set this to the full path to the Python interpreter. -PYTHON_CMD=${PYTHON_CMD:="default"} - - -# The Cantera Python interface can be built with either the numarray -# numeric, or numpy packages. Set this to "y" to use Numeric. -USE_NUMERIC=${USE_NUMERIC:="n"} - -# The Cantera Python interface can be built with either the numarray -# or Numeric packages. Set this to "y" to use numpy, or 'n' -# to use numarray. set USE_NUMERIC to 'n' also if you want to use numarray. -# Using numpy is preferred, and is the supported option going forwards. -USE_NUMPY=${USE_NUMPY:="n"} - -# If numpy was installed using the --home option, set this to the -# home directory for numpy. This will be needed for all numpy installations -# that don't put the include files into python's native include directory. -#NUMPY_HOME=${NUMPY_HOME:="$HOME/python_packages"} - -# If numarray was installed using the --home option, set this to the -# home directory for numarray. -#NUMARRAY_HOME=${NUMARRAY_HOME:="$HOME/python_packages"} - - -# If you want to install the Cantera Python package somewhere other -# than the default 'site-packages' directory within the Python library -# directory, then set this to the desired directory. This is useful when -# you do not have write access to the Python library directory. -#CANTERA_PYTHON_HOME=${CANTERA_PYTHON_HOME:="$HOME/python_modules"} - -# Set this to 'y' when site packages must be put in system directories -# but Cantera tutorials must be put in user space. An alternative to -# doing this is to keep this setting on "n" . Then everything is -# put into the user space by running this script -# with the 'prefix' option. The environment variable PYTHONPATH -# may then be set to tell Python where to find the Cantera package. -# -SET_PYTHON_SITE_PACKAGE_TOPDIR=${SET_PYTHON_SITE_PACKAGE_TOPDIR:="n"} - -# If the SET_PYTHON_SITE_PACKAGE_TOPDIR is set to y, the entry below -# sets the location where the Cantera site package is installed. -# -PYTHON_SITE_PACKAGE_TOPDIR=${PYTHON_SITE_PACKAGE_TOPDIR:="/usr/local"} - -#----------- MATLAB -------------------------------------------------- - -# This variable controls whether the MATLAB toolbox will be built. It -# should be set to one of these strings: -# -# "default" the 'configure' script will try to build a simple -# MATLAB MEX file. If this succeeds, BUILD_MATLAB_TOOLBOX -# will be set to "y", otherwise it will be set to "n". -# -# "y" build the MATLAB toolbox. -# "n" do not build the MATLAB toolbox, even if MATLAB is -# installed. -# -# Note that you may need to run 'mex -setup' within MATLAB to -# configure it for your C++ compiler before running this script. -BUILD_MATLAB_TOOLBOX=${BUILD_MATLAB_TOOLBOX:="no"} -MATLAB_CMD=${MATLAB_CMD:="default"} - -#----------- Fortran 90/95 -------------------------------------------------- - -# This variable controls whether the Fortran 90/95 interface will be -# built. It should be set to one of these strings: -# -# "default" The 'configure' script will attempt to compile a small -# Fortran 90/05 program; if this succeeds, -# BUILD_F90_INTERFACE will be set to "y", and otherwise to "n". -# "y" Build the Fortran 90/95 interface. -# "n" Do not build the Fortran 90/95 interface, even if a -# Fortran 90/95 compiler is installed. - -BUILD_F90_INTERFACE=${BUILD_F90_INTERFACE:="no"} - -# The Fortran 90/95 compiler. If set to "default", the script will -# look for a Fortran 90/95 compiler on your system by the name of -# "f95", "gfortran", or "g95". -F90=${F90:="gfortran"} - -# Compiler option flags for the Fortran 90/95 compiler. If you are -# using the Absoft or the NAG compiler, additional options specific to -# these compilers will be added automatically, and you do not need to -# specify them here. Otherwise, add any required compiler-specific -# flags here. -F90FLAGS=${F90FLAGS:='-O3'} - -#--------------------------------------------------------------------- -# Purify -#--------------------------------------------------------------------- - -# Add entries here for compiling Cantera with Purify extensions -# This command is put in front of every compilation and linking -# step -PURIFY=${PURIFY:=""} - -#---------------------------------------------------------------------- -# Customizations / Extensions -#---------------------------------------------------------------------- -# -# You can build your own libraries as part of the Cantera build process. -# This allows you to derive your own classes from those provided by -# Cantera and build them automatically along with the rest of Cantera. -# All you need to do is specify the directory where your source code is -# located. This capability is not yet fully functional, but should work -# for C++ applications. -USER_SRC_DIR="Cantera/user" # don't change this - -# In some cases, extra printing has been put into the code to aid -# in debugging and verification. In order for the printing to occur -# an additional switch must be turned on. However, compilation -# of the printing is affected by the following DEBUG_MODE option. -# This is turned off here by default. -DEBUG_MODE=${DEBUG_MODE:='n'} - -#---------------------------------------------------------------------- -# Kernel Configuration -#---------------------------------------------------------------------- - -# If you are only planning to use a portion of Cantera, you may only -# need a stripped-down kernel. Set those features you want enabled to -# 'y', and set those you want to skip to 'n' (actually anything but -# 'y') or comment them out. Some features are dependent on others; for -# example, enabling 'CK' automatically enables KINETICS and THERMO. - -# If you only need to use Cantera to evaluate thermodynamic, kinetic, -# and transport properties, it is sufficient to enable only KINETICS -# and TRANSPORT. - -# Note: if you are building the full Python interface or the MATLAB -# interface, it is necessary to build the full kernel. - -# thermodynamic properties -ENABLE_THERMO='y' - -###################################################################### -# optional phase types. These may not be needed by all users. Set them -# to 'n' to omit them from the kernel. - -WITH_LATTICE_SOLID=${WITH_LATTICE_SOLID:="y"} -WITH_METAL=${WITH_METAL:="y"} -WITH_STOICH_SUBSTANCE=${WITH_STOICH_SUBSTANCE:="y"} -WITH_SEMICONDUCTOR=${WITH_SEMICONDUCTOR:="y"} -WITH_ADSORBATE=${WITH_ADSORBATE:="y"} -WITH_SPECTRA=${WITH_SPECTRA:="y"} - -# This flag enables the inclusion of accurate liquid/vapor equations -# of state for several fluids, including water, nitrogen, hydrogen, -# oxygen, methane, andd HFC-134a. -WITH_PURE_FLUIDS='y' - -# This flag enables the inclusion of ideal solution capabilities -WITH_IDEAL_SOLUTIONS=${WITH_IDEAL_SOLUTIONS:="y"} - -# Enable expanded electrochemistry capabilities, include thermo -# models for electrolyte solutions -WITH_ELECTROLYTES=${WITH_ELECTROLYTES:="y"} - -# Enable generating phase models from PrIMe models. For more -# information about PrIME, see http://www.primekinetics.org -# WARNING: Support for PrIMe is experimental! -WITH_PRIME=${WITH_PRIME:="n"} - -# Enable changing the 298K heats of formation directly -# via the C++ layer. To do this, modify the variable below -# to have a value of "y" -WITH_H298MODIFY_CAPABILITY=${WITH_H298MODIFY_CAPABILITY:="n"} - -###################################################################### -# if set to 'y', the ck2cti program that converts Chemkin input files -# to Cantera format will be built. If you don't use Chemkin format -# files, or if you run ck2cti on some other machine, you can set this to 'n'. -ENABLE_CK=${ENABLE_CK:='y'} - -###################################################################### - -# Enable homogeneous kinetics -WITH_KINETICS='y' - -# Enable heterogeneous kinetics (surface chemistry). This also enables -# charge transfer reactions for electrochemistry. -WITH_HETERO_KINETICS='y' - -# Enable reaction path analysis -WITH_REACTION_PATHS='y' - -# Enable vcs equilibrium package for nonideal phases -WITH_VCSNONIDEAL=${WITH_VCSNONIDEAL:="n"} - -###################################################################### -# transport properties -ENABLE_TRANSPORT='y' - -# chemical equilibrium -ENABLE_EQUIL='y' - -# stirred reactor models -ENABLE_REACTORS='y' - -# One-dimensional flows -ENABLE_FLOW1D='y' - -# ODE integrators and DAE solvers -ENABLE_SOLVERS='y' - -# reaction path analysis -ENABLE_RXNPATH='y' - -# two phase pure fluids -ENABLE_TPX='y' - -# write HTMl log files. Some multiphase equilibrium procedures can -# write copious diagnostic log messages. Set this to anything but 'y' -# to remove this capability (results in slightly faster equilibrium -# calculations) -WITH_HTML_LOG_FILES='y' - -#----------------------------------------------------------------- -# CVODE / CVODES -#----------------------------------------------------------------- -# -# Cantera uses the CVODE or CVODES ODE integrator to time-integrate -# reactor network ODE's and for various other purposes. An older -# version of CVODE comes with Cantera, but it is possible to use the -# latest version as well, which now supports sensitivity analysis -# (CVODES). CVODES is a part of the 'sundials' package from Lawrence -# Livermore National Laboratory. Sundials is not distributed with -# Cantera, but it is free software that may be downloaded and -# installed separately. If you leave USE_SUNDIALS = 'default', then it -# will be used if you have it, and if not the older CVODE will be -# used. Or set USE_SUNDIALS to 'y' or 'n' to force using it or not. -# Note that sensitivity analysis with Cantera requires use of -# sundials. -# -# See: http://www.llnl.gov/CASC/sundials -# -USE_SUNDIALS=${USE_SUNDIALS:='default'} - -# This is where you installed sundials if you used the --prefix option -# when you configured sundials. If you didn't use the prefix option, -# then comment this line out. -#SUNDIALS_HOME=${SUNDIALS_HOME:=""} - - -# It is recommended that you install the newest release of sundials -# (currently 2.4.0) before building Cantera. But if you want to use an -# older version, set SUNDIALS_VERSION to the version you have. -# Acceptable values are '2.2', '2.3', or '2.4' ; anything else will cause -# Cantera to -SUNDIALS_VERSION=${SUNDIALS_VERSION:='2.4'} - -#----------------------------------------------------------------- -# BLAS and LAPACK -#----------------------------------------------------------------- -# -# Cantera comes with Fortran (or c) versions of those parts of BLAS and -# LAPACK it requires. But performance may be better if you use a -# version of these libraries optimized for your machine hardware. If -# you want to use your own libraries, set BLAS_LAPACK_LIBS to the -# string that should be passed to the linker to link to these -# libraries, and set BLAS_LAPACK_DIR to the directory where these -# libraries are located. Otherwise, leave these lines commented out. -# -#BLAS_LAPACK_LIBS='-llapack -lblas' -#BLAS_LAPACK_LIBS'-llapack -lf77blas -lcblas -latlas' -#BLAS_LAPACK_DIR='/usr/lib' -# -# Note that on Mac OSX, BLAS and LAPACK from the built-in 'Accelerate' -# framework are used by default, and nothing needs to be specified -# here. -# -# The options below do not need to be set if you are using the default -# libraries. -# -# Set to 'lower' or 'upper', depending on whether the procedure names -# in the libraries are lowercase or uppercase. If you don't know, run -# 'nm' on the library file (e.g. 'nm libblas.a') Note that the these options -# apply to both the BLAS and LAPACK libraries. -LAPACK_NAMES='lower' -LAPACK_FTN_TRAILING_UNDERSCORE='y' - -# Currently this must be set to 'y'. -LAPACK_FTN_STRING_LEN_AT_END='y' - - -#------------------------------------------------------------------ -# C++ compiler options -#------------------------------------------------------------------ - -# The number of bits to compile with, if different than the -# default on the computer -BITCOMPILE=${BITCOMPILE:=""} - -# the C++ compiler to use. -CXX=${CXX:=g++} - -# the C compiler to use. This is only used to compile CVODE and -# the Python extension module. -CC=${CC:=gcc} - -# C++ compiler flags -CXXFLAGS=${CXXFLAGS:="-O3 -Wall"} - -# the C++ flags required for linking. Uncomment if additional flags -# need to be passed to the linker. - -# Ending libraries to tack onto the linking of all C++ programs -LCXX_END_LIBS=${LCXX_END_LIBS:="-lm"} - -# The compiler flag to use to compile code that will be inserted into -# shared libraries. -PIC=${PIC:=""} - -# the compiler option to create a shared library from object files -SHARED=${SHARED:="-dynamic"} - -#------------------------------------------------------------------- -# Thread Safety -#------------------------------------------------------------------- - -# Cantera can be built so that it is thread safe. Doing so requires -# using procedures from the boost library, so if you want thread -# safety then you need to get and install boost (http://www.boost.org) -# if you don't have it. This is turned off by default, in which case -# boost is not required to build Cantera. - -BUILD_THREAD_SAFE=${BUILD_THREAD_SAFE:="n"} - -# where boost header and library files may be found -BOOST_INC_DIR=${BOOST_INC_DIR:="/usr/local/include/boost-1_34"} -BOOST_LIB_DIR=${BOOST_LIB_DIR:="/usr/local/lib"} - -# the boost thread library -BOOST_THREAD_LIB=${BOOST_THREAD_LIB:="boost_thread-mt-1_34"} - -#------------------------------------------------------------------- -# External Procedures -#------------------------------------------------------------------- - -# Cantera uses several external software packages, which are all in -# the 'ext' directory.. These options control how these packages are -# built. - -# For external procedures written in Fortran 77, both the original F77 -# source code and C souce code generated by the 'f2c' program are -# included. Set this to "y" if you want to build Cantera using the -# f2c-generated C sources instead of using the F77 sources in the ext -# directory. - -# The default is to use the f2c code. Set this to "n" to never do -# this on any platform. Note, if set to "y", Cantera does not need a -# fortran compiler, and all fortran compiler parameters below are -# irrelevant. -# -BUILD_WITH_F2C=${BUILD_WITH_F2C:="y"} - -# if you are building the external Fortran 77 procedures from the Fortran -# source code, enter the compiler here. -F77=${F77:=g77} - -# Fortran 77 compiler flags. Note that the Fortran compiler flags must be set -# to produce object code compatible with the C/C++ compiler you are using. -FFLAGS=${FFLAGS:='-O3'} - -# the additional Fortran flags required for linking, if any. Leave commented -# out if no additional flags are required. -LFORT_FLAGS="-L/usr/local/lib" - -#------------------------------------------------------ -# Other Programs -#------------------------------------------------------ - -# The command to create a static library. -ARCHIVE=${ARCHIVE:="ar ruv"} # linux -# ARCHIVE=${ARCHIVE:="libtool -static -o"} # Mac OSX (this is set automatically) -# ARCHIVE=${ARCHIVE:="CC -xar -o"} # Solaris using SUNspro compilers - -# The command to run 'ranlib' if it is needed. -RANLIB=${RANLIB:="ranlib"} - -# The command to run the 'make' utility. The Cantera Makefiles are -# compatible with the GNU make utility, so if your make utility -# doesn't work, try GNU make. -MAKE=${MAKE:=make} - -# The command to run when "installing". This defaults now to the -# install-sh bourne shell script that comes with the autoconf package. -# It can be overridden here. -INSTALL_BIN=${INSTALL_BIN:=config/install-sh} - -# The directory location of the graphviz program, dot. dot is used -# for creating the documentation, and for making reaction path -# diagrams. if "dot" is in your path, you can leave this unspecified. -# -# NOTE: MATLAB comes with a stripped-down version of 'dot'. If 'dot' -# is on your path, make sure it is not the MATLAB version! -# -GRAPHVIZDIR=${GRAPHVIZDIR:=" "} - -# File extensions -CXX_EXT=${CXX_EXT:=cpp} -F77_EXT=${F77_EXT:=f} -F90_EXT=${F90_EXT:=f90} -# -# Default extension for executable binaries. The default for unix systems -# is the empty field. For windows systesms and cygwin, you should put -# ".exe" . -# -EXE_EXT=${EXE_EXT:=} - - -CT_SHARED_LIB=${CT_SHARED_LIB:=clib} - -# The font to use in reaction path diagrams. This must be a font name -# recognized by the 'dot' program. On linux systems, this should be -# lowercase 'helvetica'. -RPFONT=${RPFONT:="Helvetica"} - -# -# Version Control: -# -# We define a new string for every branch created in svn. -# -# Currently expected versions: -# "1.7" Old version of Cantera -# "1.8.0" Released version of 1.8 -# "1.8.x" Development version of 1.8 -# "1.8_liquidTransportDevelop" branched version of 1.8 having to deal with liquid transport -# -# This field gets written into config.h and is also an autoconf variable. -# -# -CANTERA_VERSION=${CANTERA_VERSION:="1.8.x"} - - -#----------------------------------------------------------------------- -#------------------- don't change anything below!! --------------------- -#----------------------------------------------------------------------- - -export CANTERA_VERSION -export USER_SRC_DIR -export DEBUG_MODE -export ARCHIVE -export RANLIB -export BITCOMPILE -export BLAS_LAPACK_LIBS -export BLAS_LAPACK_DIR -export BUILD_WITH_F2C -export BUILD_F90_INTERFACE -export PYTHON_PACKAGE -export BUILD_MATLAB_TOOLBOX -export MATLAB_CMD -export CT_SHARED_LIB -export CXX -export CXX_EXT -export CXXFLAGS -export CC -export ENABLE_THERMO -export WITH_KINETICS -export WITH_HETERO_KINETICS -export WITH_REACTION_PATHS -export ENABLE_TRANSPORT -export ENABLE_CK -export ENABLE_EQUIL -export ENABLE_REACTORS -export ENABLE_SOLVERS -export ENABLE_RXNPATH -export ENABLE_TPX -export ENABLE_FLOW1D -export EXE_EXT -export F77 -export F77_EXT -export F90 -export F90_EXT -export FFLAGS -export F90FLAGS -export INSTALL_BIN -export LCXX_FLAGS -export LCXX_END_LIBS -export LFORT_FLAGS -export LAPACK_NAMES -export LAPACK_FTN_STRING_LEN_AT_END -export LAPACK_FTN_TRAILING_UNDERSCORE -export LIB_DIR -export FORT_MODULE_DIRECTORY -export FORT_MODULE_PATH_COMMAND -export OBJ_EXT -export PYTHON_CMD -export SET_PYTHON_SITE_PACKAGE_DIR -export PYTHON_SITE_PACKAGE_TOPDIR -export PIC -export SHARED -export SOEXT -export MAKE -export GRAPHVIZDIR -export RPFONT -export FORTRAN_LIB_DIR -export CANTERA_INSTALL_DIR -export USE_NUMERIC -export USE_NUMPY -export NUMARRAY_HOME -export NUMPY_HOME -export CANTERA_PYTHON_HOME -export USE_SUNDIALS -export SUNDIALS_HOME -export SUNDIALS_VERSION - -export WITH_LATTICE_SOLID -export WITH_METAL -export WITH_SEMICONDUCTOR -export WITH_ADSORBATE -export WITH_SPECTRA -export WITH_STOICH_SUBSTANCE -export WITH_PURE_FLUIDS -export WITH_IDEAL_SOLUTIONS -export WITH_ELECTROLYTES -export WITH_PRIME -export WITH_H298MODIFY_CAPABILITY - -export BUILD_THREAD_SAFE -export BOOST_INC_DIR -export BOOST_LIB_DIR -export BOOST_THREAD_LIB - -export WITH_HTML_LOG_FILES - -export PURIFY - -chmod -f +x ./configure -chmod -f +x config/config.guess -chmod -f +x config/config.sub -#chmod -f +x config/install-sh - -# -# Decide whether to add a prefix variable to the configure line -# -if (test "x$CANTERA_CONFIG_PREFIX" = "x") -then - CCPREFIX="" -else - CCPREFIX="--prefix="$CANTERA_CONFIG_PREFIX -fi -# -# run the configure command -# -./configure $CCPREFIX $1 $2 $3 $4 - - From ca8b24b0eeed35a8e3025886331b37efe2da27e2 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 10 Nov 2011 23:05:25 +0000 Subject: [PATCH 003/124] [cantera autotools]: adding bootstrap script to prep autoconf/autotools toolchain --- bootstrap | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100755 bootstrap diff --git a/bootstrap b/bootstrap new file mode 100755 index 000000000..ad711f6ce --- /dev/null +++ b/bootstrap @@ -0,0 +1,54 @@ +#! /bin/sh +# $Id: bootstrap 469 2008-09-05 00:16:18Z rhys $ +# +# bootstrap: Utility to easy autoconf/automake toolchain setup on +# checkout from revision control. +# +# Copyright (c) 2002 Daniel Elstner +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License VERSION 2 as +# published by the Free Software Foundation. You are not allowed to +# use any other version of the license; unless you got the explicit +# permission from the author to do so. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +dir=`echo "$0" | sed 's,[^/]*$,,'` +test "x${dir}" = "x" && dir='.' + +if test "x`cd "${dir}" 2>/dev/null && pwd`" != "x`pwd`" +then + echo "This script must be executed directly from the source directory." + exit 1 +fi + +rm -f config.cache acconfig.h + +echo "- aclocal. (local)" && \ +aclocal -I m4 -I m4/common && \ +echo "- autoheader." && \ +autoheader && \ + +if type glibtoolize >/dev/null 2>&1; then + echo "- glibtool." + glibtoolize --automake --copy --force +else + echo "- libtool." + libtoolize --automake --copy --force +fi + +echo "- automake." && \ +automake --add-missing --copy && \ +echo "- autoconf." && \ +autoconf && \ +exit 0 + +exit 1 From 1dfbe240568ae98c189617011a87b5b82fc43705 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 10 Nov 2011 23:06:28 +0000 Subject: [PATCH 004/124] [cantera autotools]: adding m4 directory From 301f2b6e101274790ce984d74824545f220db89c Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 10 Nov 2011 23:08:55 +0000 Subject: [PATCH 005/124] [cantera+autotools]: leaving out doxygen until I get the build system working, will add at that time, likely in a separate ticket --- Makefile.am | 8 +- config.h.in | 214 ++++++++++----------------------------------------- configure.ac | 19 +++-- 3 files changed, 56 insertions(+), 185 deletions(-) diff --git a/Makefile.am b/Makefile.am index dc79b3920..eab36ef08 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,10 +1,12 @@ -include $(top_srcdir)/doxygen/aminclude.am +#include $(top_srcdir)/doxygen/aminclude.am # Build in these directories: -SUBDIRS = Cantera examples test_problems doxygen +SUBDIRS = Cantera examples test_problems +#SUBDIRS += doxygen + # Distribute these directories: -DIST_SUBDIRS = src examples +DIST_SUBDIRS = Cantera examples # generated documentation will be included in distributed archive EXTRA_DIST= bootstrap $(DX_CONFIG) \ No newline at end of file diff --git a/config.h.in b/config.h.in index 52d4f7eb0..423fcf8f0 100755 --- a/config.h.in +++ b/config.h.in @@ -1,192 +1,62 @@ -// -// Run the 'preconfig' script to generate 'config.h' from this input file. -// -#ifndef CT_CONFIG_H -#define CT_CONFIG_H +/* config.h.in. Generated from configure.ac by autoheader. */ -//---------------------------- Version Flags ------------------// -// Cantera version -> this will be a double-quoted string value -// refering to branch number within svn -#undef CANTERA_VERSION +/* Define to 1 if you have the header file. */ +#undef HAVE_DLFCN_H -// Integer for major number of Cantera -#define CANTERA_VERSION_MAJORNUMBER 18 -// Flag indicating it's part of major version 18 -#define CANTERA_VERSION_18 1 -// Flag indicating it's a development version -#define CANTERA_VERSION_18_XXX 1 +/* Define to 1 if you have the header file. */ +#undef HAVE_INTTYPES_H -//------------------------ Development flags ------------------// -// -// Compile in additional debug printing where available. -// Note, the printing may need to be turned on via a switch. -// This just compiles in the code. -#undef DEBUG_MODE +/* Define to 1 if you have the header file. */ +#undef HAVE_MEMORY_H -// Compiling with PURIFY instrumentation -#undef PURIFY_MODE +/* Define to 1 if you have the header file. */ +#undef HAVE_STDINT_H -//------------------------ Fortran settings -------------------// +/* Define to 1 if you have the header file. */ +#undef HAVE_STDLIB_H +/* Define to 1 if you have the header file. */ +#undef HAVE_STRINGS_H -// define types doublereal, integer, and ftnlen to match the -// corresponding Fortran data types on your system. The defaults -// are OK for most systems +/* Define to 1 if you have the header file. */ +#undef HAVE_STRING_H -typedef double doublereal; // Fortran double precision -typedef int integer; // Fortran integer -typedef int ftnlen; // Fortran hidden string length type +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_STAT_H +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TYPES_H +/* Define to 1 if you have the header file. */ +#undef HAVE_UNISTD_H -// Fortran compilers pass character strings in argument lists by -// adding a hidden argement with the length of the string. Some -// compilers add the hidden length argument immediately after the -// CHARACTER variable being passed, while others put all of the hidden -// length arguments at the end of the argument list. Define this if -// the lengths are at the end of the argument list. This is usually the -// case for most unix Fortran compilers, but is (by default) false for -// Visual Fortran under Windows. -#define STRING_LEN_AT_END +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#undef LT_OBJDIR +/* Name of package */ +#undef PACKAGE -// Define this if Fortran adds a trailing underscore to names in object files. -// For linux and most unix systems, this is the case. -#undef FTN_TRAILING_UNDERSCORE +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT +/* Define to the full name of this package. */ +#undef PACKAGE_NAME -#undef HAS_SUNDIALS -#undef SUNDIALS_VERSION_22 -#undef SUNDIALS_VERSION_23 -#undef SUNDIALS_VERSION_24 +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING -//-------- LAPACK / BLAS --------- +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME -#undef LAPACK_FTN_STRING_LEN_AT_END -#undef LAPACK_NAMES_LOWERCASE -#undef LAPACK_FTN_TRAILING_UNDERSCORE +/* Define to the home page for this package. */ +#undef PACKAGE_URL +/* Define to the version of this package. */ +#undef PACKAGE_VERSION -//--------- operating system -------------------------------------- +/* Define to 1 if you have the ANSI C header files. */ +#undef STDC_HEADERS -// The configure script defines this if the operatiing system is Mac -// OS X, This used to add some Mac-specific directories to the default -// data file search path. -#undef DARWIN -#undef HAS_SSTREAM - -// Cantera version -#undef CANTERA_VERSION - -// Identify whether the operating system is cygwin's overlay of -// windows, with gcc being used as the compiler. -#undef CYGWIN - -// Identify whether the operating system is windows based, with -// microsoft vc++ being used as the compiler -#undef WINMSVC - -// Identify whether the operating system is solaris -// with a native compiler -#undef SOLARIS - -//--------- Fonts for reaction path diagrams ---------------------- -#undef RXNPATH_FONT - -//---------- C++ Compiler Variations ------------------------------ - -// This define is needed to account for the variability for how -// static variables in templated classes are defined. Right now -// this is only turned on for the SunPro compiler on solaris. -// in that system , you need to declare the static storage variable. -// with the following line in the include file -// -// template Cabinet* Cabinet::__storage; -// -// Note, on other systems that declaration is treated as a definition -// and this leads to multiple defines at link time -#undef NEEDS_GENERIC_TEMPL_STATIC_DECL - -//--------------------- Python ------------------------------------ -// This path to the python executable is created during -// Cantera's setup. It identifies the python executable -// used to run Python to process .cti files. Note that this is only -// used if environment variable PYTHON_CMD is not set. -#undef PYTHON_EXE - -// If this is defined, the Cantera Python interface will use the -// Numeric package -#undef HAS_NUMERIC - -// If this is defined, the Cantera Python interface will use the -// numarray package -#undef HAS_NUMARRAY - -// If this is defined, the Cantera Python interface will use the -// numpy package -#undef HAS_NUMPY - -// If this is defined, then python will not be assumed to be -// present to support conversions -#undef HAS_NO_PYTHON - -//--------------------- Cantera ----------------------------------- -// This is the data pathway used to locate the top of the -// build directory. -#undef CANTERA_ROOT - -// This data pathway is used to locate a directory where datafiles -// are to be found. Note, the local directory is always searched -// as well. -#undef CANTERA_DATA - - -#undef WITH_HTML_LOGS - -// define STORE_MOLE_FRACTIONS if you want Cantera to internally -// represent the composition of a mixture as mole fractions. Usually -// the best choice. -#define STORE_MOLE_FRACTIONS - -// define STORE_MASS_FRACTIONS if you want Cantera to internally -// represent the composition of a mixture as mass fractions. Usually -// results in slightly worse performance, but may not in all cases. -//#define STORE_MASS_FRACTIONS -#undef STORE_MASS_FRACTIONS - -//--------------------- compile options ---------------------------- -#undef USE_PCH - -#undef THREAD_SAFE_CANTERA - -//--------------------- optional phase models ---------------------- -// This define indicates the enabling of the inclusion of -// accurate liquid/vapor equations -// of state for several fluids, including water, nitrogen, hydrogen, -// oxygen, methane, andd HFC-134a. -#undef INCL_PURE_FLUIDS -#undef WITH_PURE_FLUIDS - -#undef WITH_LATTICE_SOLID -#undef WITH_METAL -#undef WITH_STOICH_SUBSTANCE -// Enable expanded thermodynamic capabilities, adding -// ideal solid solutions -#undef WITH_IDEAL_SOLUTIONS -// Enable expanded electrochemistry capabilities, include thermo -// models for electrolyte solutions. -#undef WITH_ELECTROLYTES - -#undef WITH_PRIME - -// Enable the VCS NonIdeal equilibrium solver. This is -// accessed by specifying the solver=2 option -#undef WITH_VCSNONIDEAL - -//-------------- Optional Cantera Capabilities ---------------------- - -// Enable sensitivity analysis via changing H298 directly -// for species -#undef H298MODIFY_CAPABILITY - -#endif +/* Version number of package */ +#undef VERSION diff --git a/configure.ac b/configure.ac index d183b6114..97420855f 100644 --- a/configure.ac +++ b/configure.ac @@ -43,17 +43,16 @@ AM_SANITY_CHECK # ---------------- # DX_DOXYGEN_FEATURE(ON) -DX_HTML_FEATURE(ON) -DX_CHM_FEATURE(OFF) -DX_CHI_FEATURE(OFF) +# DX_HTML_FEATURE(ON) +# DX_CHM_FEATURE(OFF) +# DX_CHI_FEATURE(OFF) -DX_MAN_FEATURE(OFF) -DX_RTF_FEATURE(OFF) -DX_XML_FEATURE(OFF) -DX_PDF_FEATURE(ON) -DX_PS_FEATURE(OFF) - -DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) +# DX_MAN_FEATURE(OFF) +# DX_RTF_FEATURE(OFF) +# DX_XML_FEATURE(OFF) +# DX_PDF_FEATURE(ON) +# DX_PS_FEATURE(OFF) +# DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) # Generate Output Files AC_OUTPUT( Makefile Cantera/Makefile test_problems/Makefile examples/Makefile doxygen/Makefile) From 5812f8675e9b15618fc986c9d336e347d99926d6 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 10 Nov 2011 23:11:04 +0000 Subject: [PATCH 006/124] [cantera+autotools]: adding news, readme and authors to suppress boostrap warnings --- AUTHORS | 1 + NEWS | 1 + README.txt => README | 0 configure | 32083 +++++++++++++++++++++++++++-------------- 4 files changed, 21631 insertions(+), 10454 deletions(-) create mode 100644 AUTHORS create mode 100644 NEWS rename README.txt => README (100%) diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 000000000..70abbc409 --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +cantera developers: \ No newline at end of file diff --git a/NEWS b/NEWS new file mode 100644 index 000000000..19e278aa7 --- /dev/null +++ b/NEWS @@ -0,0 +1 @@ +11/10/11 cantera 1.8.0 development begins on autotools chain \ No newline at end of file diff --git a/README.txt b/README similarity index 100% rename from README.txt rename to README diff --git a/configure b/configure index 5f3a58df0..7000ac0de 100755 --- a/configure +++ b/configure @@ -1,81 +1,418 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.59 for Cantera 1.7.0. +# Generated by GNU Autoconf 2.65 for cantera 1.8.0. +# +# Report bugs to . +# +# +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# # -# Copyright (C) 2003 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' -elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then - set -o posix -fi -DUALCASE=1; export DUALCASE # for MKS sh - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - as_unset=unset + setopt NO_GLOB_SUBST else - as_unset=false + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac fi -# Work around bugs in pre-3.0 UWIN ksh. -$as_unset ENV MAIL MAILPATH +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - $as_unset $as_var - fi -done +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1; then +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +if test "x$CONFIG_SHELL" = x; then + as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi +" + as_required="as_fn_return () { (exit \$1); } +as_fn_success () { as_fn_return 0; } +as_fn_failure () { as_fn_return 1; } +as_fn_ret_success () { return 0; } +as_fn_ret_failure () { return 1; } + +exitcode=0 +as_fn_success || { exitcode=1; echo as_fn_success failed.; } +as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } +as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } +as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } +if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : + +else + exitcode=1; echo positional parameters were not saved. +fi +test x\$exitcode = x0 || exit 1" + as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO + as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO + eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && + test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 +test \$(( 1 + 1 )) = 2 || exit 1" + if (eval "$as_required") 2>/dev/null; then : + as_have_required=yes +else + as_have_required=no +fi + if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_found=false +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + as_found=: + case $as_dir in #( + /*) + for as_base in sh bash ksh sh5; do + # Try only shells that exist, to save several forks. + as_shell=$as_dir/$as_base + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : + CONFIG_SHELL=$as_shell as_have_required=yes + if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : + break 2 +fi +fi + done;; + esac + as_found=false +done +$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : + CONFIG_SHELL=$SHELL as_have_required=yes +fi; } +IFS=$as_save_IFS + + + if test "x$CONFIG_SHELL" != x; then : + # We cannot yet assume a decent shell, so we have to provide a + # neutralization value for shells without unset; and this also + # works around shells that cannot unset nonexistent variables. + BASH_ENV=/dev/null + ENV=/dev/null + (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV + export CONFIG_SHELL + exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} +fi + + if test x$as_have_required = xno; then : + $as_echo "$0: This script requires a shell more modern than all" + $as_echo "$0: the shells that I found on your system." + if test x${ZSH_VERSION+set} = xset ; then + $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" + $as_echo "$0: be upgraded to zsh 4.3.4 or later." + else + $as_echo "$0: Please tell bug-autoconf@gnu.org and +$0: nick@ices.utexas.edu about your system, including any +$0: error possibly output before this message. Then install +$0: a modern shell, or manually run the script under such a +$0: shell if you do have one." + fi + exit 1 +fi +fi +fi +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +# Unset more variables known to interfere with behavior of common tools. +CLICOLOR_FORCE= GREP_OPTIONS= +unset CLICOLOR_FORCE GREP_OPTIONS + +## --------------------- ## +## M4sh Shell Functions. ## +## --------------------- ## +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +# as_fn_error ERROR [LINENO LOG_FD] +# --------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with status $?, using 1 if that was 0. +as_fn_error () +{ + as_status=$?; test $as_status -eq 0 && as_status=1 + if test "$3"; then + as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + fi + $as_echo "$as_me: error: $1" >&2 + as_fn_exit $as_status +} # as_fn_error + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi -if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi -# Name of the executable. -as_me=`$as_basename "$0" || +as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)$' \| \ - . : '\(.\)' 2>/dev/null || -echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } - /^X\/\(\/\/\)$/{ s//\1/; q; } - /^X\/\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` - -# PATH needs CR, and LINENO needs CR and PATH. # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' @@ -83,146 +420,107 @@ as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" || { - # Find who we are. Look in the path if we contain no path at all - # relative or not. - case $0 in - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done - - ;; - esac - # We did not find ourselves, most probably we were run as `sh COMMAND' - # in which case we are not to be found in the path. - if test "x$as_myself" = x; then - as_myself=$0 - fi - if test ! -f "$as_myself"; then - { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 - { (exit 1); exit 1; }; } - fi - case $CONFIG_SHELL in - '') - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for as_base in sh bash ksh sh5; do - case $as_dir in - /*) - if ("$as_dir/$as_base" -c ' - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then - $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } - $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } - CONFIG_SHELL=$as_dir/$as_base - export CONFIG_SHELL - exec "$CONFIG_SHELL" "$0" ${1+"$@"} - fi;; - esac - done -done -;; - esac - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line before each line; the second 'sed' does the real - # work. The second script uses 'N' to pair each line-number line - # with the numbered line, and appends trailing '-' during - # substitution so that $LINENO is not a special case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) - sed '=' <$as_myself | + as_lineno_1=$LINENO as_lineno_1a=$LINENO + as_lineno_2=$LINENO as_lineno_2a=$LINENO + eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && + test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { + # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno N - s,$,-, - : loop - s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop - s,-$,, - s,^['$as_cr_digits']*\n,, + s/-\n.*// ' >$as_me.lineno && - chmod +x $as_me.lineno || - { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 - { (exit 1); exit 1; }; } + chmod +x "$as_me.lineno" || + { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensible to this). - . ./$as_me.lineno + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" # Exit status is that of the last command. exit } - -case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in - *c*,-n*) ECHO_N= ECHO_C=' -' ECHO_T=' ' ;; - *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; - *) ECHO_N= ECHO_C='\c' ECHO_T= ;; +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; esac -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - rm -f conf$$ conf$$.exe conf$$.file -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - # We could just check for DJGPP; but this test a) works b) is more generic - # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). - if test -f conf$$.exe; then - # Don't use ln at all; we don't have any links - as_ln_s='cp -p' - else +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -p' fi -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln else as_ln_s='cp -p' fi -rm -f conf$$ conf$$.exe conf$$.file +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then - as_mkdir_p=: + as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi -as_executable_p="test -f" +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in #( + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" @@ -231,89 +529,382 @@ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" -# IFS -# We need space, tab and new line, in precisely that order. -as_nl=' -' -IFS=" $as_nl" -# CDPATH. -$as_unset CDPATH +# Check that we are running under the correct shell. +SHELL=${CONFIG_SHELL-/bin/sh} +case X$lt_ECHO in +X*--fallback-echo) + # Remove one level of quotation (which was required for Make). + ECHO=`echo "$lt_ECHO" | sed 's,\\\\\$\\$0,'$0','` + ;; +esac + +ECHO=${lt_ECHO-echo} +if test "X$1" = X--no-reexec; then + # Discard the --no-reexec flag, and continue. + shift +elif test "X$1" = X--fallback-echo; then + # Avoid inline document here, it may be left over + : +elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' ; then + # Yippee, $ECHO works! + : +else + # Restart under the correct shell. + exec $SHELL "$0" --no-reexec ${1+"$@"} +fi + +if test "X$1" = X--fallback-echo; then + # used as fallback echo + shift + cat <<_LT_EOF +$* +_LT_EOF + exit 0 +fi + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +if test -z "$lt_ECHO"; then + if test "X${echo_test_string+set}" != Xset; then + # find a string as large as possible, as long as the shell can cope with it + for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do + # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... + if { echo_test_string=`eval $cmd`; } 2>/dev/null && + { test "X$echo_test_string" = "X$echo_test_string"; } 2>/dev/null + then + break + fi + done + fi + + if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && + echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + : + else + # The Solaris, AIX, and Digital Unix default echo programs unquote + # backslashes. This makes it impossible to quote backslashes using + # echo "$something" | sed 's/\\/\\\\/g' + # + # So, first we look for a working echo in the user's PATH. + + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for dir in $PATH /usr/ucb; do + IFS="$lt_save_ifs" + if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && + test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && + echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + ECHO="$dir/echo" + break + fi + done + IFS="$lt_save_ifs" + + if test "X$ECHO" = Xecho; then + # We didn't find a better echo, so look for alternatives. + if test "X`{ print -r '\t'; } 2>/dev/null`" = 'X\t' && + echo_testing_string=`{ print -r "$echo_test_string"; } 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + # This shell has a builtin print -r that does the trick. + ECHO='print -r' + elif { test -f /bin/ksh || test -f /bin/ksh$ac_exeext; } && + test "X$CONFIG_SHELL" != X/bin/ksh; then + # If we have ksh, try running configure again with it. + ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} + export ORIGINAL_CONFIG_SHELL + CONFIG_SHELL=/bin/ksh + export CONFIG_SHELL + exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"} + else + # Try using printf. + ECHO='printf %s\n' + if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && + echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + # Cool, printf works + : + elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && + test "X$echo_testing_string" = 'X\t' && + echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL + export CONFIG_SHELL + SHELL="$CONFIG_SHELL" + export SHELL + ECHO="$CONFIG_SHELL $0 --fallback-echo" + elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && + test "X$echo_testing_string" = 'X\t' && + echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + ECHO="$CONFIG_SHELL $0 --fallback-echo" + else + # maybe with a smaller string... + prev=: + + for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do + if { test "X$echo_test_string" = "X`eval $cmd`"; } 2>/dev/null + then + break + fi + prev="$cmd" + done + + if test "$prev" != 'sed 50q "$0"'; then + echo_test_string=`eval $prev` + export echo_test_string + exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"} + else + # Oops. We lost completely, so just stick with echo. + ECHO=echo + fi + fi + fi + fi + fi +fi + +# Copy echo and quote the copy suitably for passing to libtool from +# the Makefile, instead of quoting the original, which is used later. +lt_ECHO=$ECHO +if test "X$lt_ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then + lt_ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo" +fi + + + + +test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` -exec 6>&1 - # # Initializations. # ac_default_prefix=/usr/local +ac_clean_files= ac_config_libobj_dir=. +LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= -SHELL=${CONFIG_SHELL-/bin/sh} - -# Maximum number of lines to put in a shell here document. -# This variable seems obsolete. It should probably be removed, and -# only ac_max_sed_lines should be used. -: ${ac_max_here_lines=38} # Identity of this package. -PACKAGE_NAME='Cantera' +PACKAGE_NAME='cantera' PACKAGE_TARNAME='cantera' -PACKAGE_VERSION='1.7.0' -PACKAGE_STRING='Cantera 1.7.0' -PACKAGE_BUGREPORT='' +PACKAGE_VERSION='1.8.0' +PACKAGE_STRING='cantera 1.8.0' +PACKAGE_BUGREPORT='nick@ices.utexas.edu' +PACKAGE_URL='' # Factoring default headers for most tests. ac_includes_default="\ #include -#if HAVE_SYS_TYPES_H +#ifdef HAVE_SYS_TYPES_H # include #endif -#if HAVE_SYS_STAT_H +#ifdef HAVE_SYS_STAT_H # include #endif -#if STDC_HEADERS +#ifdef STDC_HEADERS # include # include #else -# if HAVE_STDLIB_H +# ifdef HAVE_STDLIB_H # include # endif #endif -#if HAVE_STRING_H -# if !STDC_HEADERS && HAVE_MEMORY_H +#ifdef HAVE_STRING_H +# if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif -#if HAVE_STRINGS_H +#ifdef HAVE_STRINGS_H # include #endif -#if HAVE_INTTYPES_H +#ifdef HAVE_INTTYPES_H # include -#else -# if HAVE_STDINT_H -# include -# endif #endif -#if HAVE_UNISTD_H +#ifdef HAVE_STDINT_H +# include +#endif +#ifdef HAVE_UNISTD_H # include #endif" -ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS BITCOMPILE BITHARDWARE BITCHANGE ldemulationarg CVF_LIBDIR USE_CLIB_DLL local_inst local_python_inst python_prefix python_win_prefix ctversion homedir ct_libdir ct_bindir ct_incdir ct_incroot ct_datadir ct_demodir ct_templdir ct_tutdir ct_docdir ct_dir ct_mandir build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os username ctroot buildinc buildlib buildbin MAKE GRAPHVIZDIR ARCHIVE DO_RANLIB RANLIB CXX_DEPENDS USERDIR INCL_USER_CODE CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT use_sundials CVODE_LIBS IDA_LIBS sundials_include sundials_lib_dir sundials_lib sundials_lib_dep CANTERA_DEBUG_MODE COMPILE_PURE_FLUIDS phase_object_files phase_header_files COMPILE_IDEAL_SOLUTIONS COMPILE_ELECTROLYTES NEED_CATHERMO COMPILE_KINETICS COMPILE_HETEROKIN COMPILE_RXNPATH WITH_REACTORS KERNEL KERNEL_OBJ BUILD_CK LIB_DIR COMPILE_VCSNONIDEAL COMPILE_H298MODIFY_CAPABILITY BOOST_INCLUDE BOOST_LIB PURIFY build_lapack build_blas BLAS_LAPACK_LIBS BLAS_LAPACK_LINK BLAS_LAPACK_DIR build_with_f2c build_f2c_lib F2C_SYSTEMLIB BOOST_LIB_DIR LOCAL_LIB_DIRS LOCAL_LIBS LOCAL_LIBS_DEP INSTALL_LIBS_DEP RAW_LIBS_DEP CANTERA_CORE_LIBS CANTERA_CORE_LIBS_DEP CT_SHARED_LIB PYTHON_CMD BUILD_PYTHON NUMPY_INC_DIR NUMPY_HOME NUMARRAY_INC_DIR NUMARRAY_HOME CANTERA_PYTHON_HOME CVSTAG MATLAB_CMD BUILD_MATLAB BUILD_CLIB export_name PIC INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CC CFLAGS ac_ct_CC CXXCPP EGREP SOEXT SHARED CXX_INCLUDES LCXX_FLAGS LCXX_END_LIBS HAVE_STRIPSYMBOLS F77 FFLAGS ac_ct_F77 FLIBS F90 BUILD_F90 F90FLAGS F90BUILDFLAGS F90LIBS LCXX_FLIBS precompile_headers OS_IS_DARWIN OS_IS_WIN OS_IS_CYGWIN SHARED_CTLIB mex_ext F77_EXT CXX_EXT OBJ_EXT EXE_EXT math_libs SO LDSHARED EXTRA_LINK TSCOMPARE_abs INSTALL_abs INSTALL_VERBOSE LIBOBJS LTLIBOBJS' +ac_subst_vars='am__EXEEXT_FALSE +am__EXEEXT_TRUE +LTLIBOBJS +LIBOBJS +CXXCPP +CPP +OTOOL64 +OTOOL +LIPO +NMEDIT +DSYMUTIL +lt_ECHO +RANLIB +AR +OBJDUMP +LN_S +NM +ac_ct_DUMPBIN +DUMPBIN +LD +FGREP +EGREP +GREP +SED +host_os +host_vendor +host_cpu +host +build_os +build_vendor +build_cpu +build +LIBTOOL +ac_ct_F77 +FFLAGS +F77 +ac_ct_FC +FCFLAGS +FC +am__fastdepCXX_FALSE +am__fastdepCXX_TRUE +CXXDEPMODE +ac_ct_CXX +CXXFLAGS +CXX +am__fastdepCC_FALSE +am__fastdepCC_TRUE +CCDEPMODE +AMDEPBACKSLASH +AMDEP_FALSE +AMDEP_TRUE +am__quote +am__include +DEPDIR +OBJEXT +EXEEXT +ac_ct_CC +CPPFLAGS +LDFLAGS +CFLAGS +CC +PACKAGE_DESCRIPTION +GENERIC_RELEASE +GENERIC_MICRO_VERSION +GENERIC_MINOR_VERSION +GENERIC_MAJOR_VERSION +GENERIC_VERSION +am__untar +am__tar +AMTAR +am__leading_dot +SET_MAKE +AWK +mkdir_p +MKDIR_P +INSTALL_STRIP_PROGRAM +STRIP +install_sh +MAKEINFO +AUTOHEADER +AUTOMAKE +AUTOCONF +ACLOCAL +VERSION +PACKAGE +CYGPATH_W +am__isrc +INSTALL_DATA +INSTALL_SCRIPT +INSTALL_PROGRAM +target_alias +host_alias +build_alias +LIBS +ECHO_T +ECHO_N +ECHO_C +DEFS +mandir +localedir +libdir +psdir +pdfdir +dvidir +htmldir +infodir +docdir +oldincludedir +includedir +localstatedir +sharedstatedir +sysconfdir +datadir +datarootdir +libexecdir +sbindir +bindir +program_transform_name +prefix +exec_prefix +PACKAGE_URL +PACKAGE_BUGREPORT +PACKAGE_STRING +PACKAGE_VERSION +PACKAGE_TARNAME +PACKAGE_NAME +PATH_SEPARATOR +SHELL' ac_subst_files='' +ac_user_opts=' +enable_option_checking +enable_dependency_tracking +enable_shared +enable_static +with_pic +enable_fast_install +with_gnu_ld +enable_libtool_lock +' + ac_precious_vars='build_alias +host_alias +target_alias +CC +CFLAGS +LDFLAGS +LIBS +CPPFLAGS +CXX +CXXFLAGS +CCC +FC +FCFLAGS +F77 +FFLAGS +CPP +CXXCPP' + # Initialize some variables set by options. ac_init_help= ac_init_version=false +ac_unrecognized_opts= +ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null @@ -336,34 +927,48 @@ x_libraries=NONE # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. +# (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' -datadir='${prefix}/share' +datarootdir='${prefix}/share' +datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' -libdir='${exec_prefix}/lib' includedir='${prefix}/include' oldincludedir='/usr/include' -infodir='${prefix}/info' -mandir='${prefix}/man' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +infodir='${datarootdir}/info' +htmldir='${docdir}' +dvidir='${docdir}' +pdfdir='${docdir}' +psdir='${docdir}' +libdir='${exec_prefix}/lib' +localedir='${datarootdir}/locale' +mandir='${datarootdir}/man' ac_prev= +ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then - eval "$ac_prev=\$ac_option" + eval $ac_prev=\$ac_option ac_prev= continue fi - ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` + case $ac_option in + *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *) ac_optarg=yes ;; + esac # Accept the important Cygnus configure options, so we can diagnose typos. - case $ac_option in + case $ac_dashdash$ac_option in + --) + ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; @@ -385,33 +990,59 @@ do --config-cache | -C) cache_file=config.cache ;; - -datadir | --datadir | --datadi | --datad | --data | --dat | --da) + -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; - -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ - | --da=*) + -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ + | --dataroo | --dataro | --datar) + ac_prev=datarootdir ;; + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) + datarootdir=$ac_optarg ;; + -disable-* | --disable-*) - ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid feature name: $ac_feature" >&2 - { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/-/_/g'` - eval "enable_$ac_feature=no" ;; + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; + -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) + docdir=$ac_optarg ;; + + -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) + ac_prev=dvidir ;; + -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) + dvidir=$ac_optarg ;; -enable-* | --enable-*) - ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid feature name: $ac_feature" >&2 - { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/-/_/g'` - case $ac_option in - *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; - *) ac_optarg=yes ;; + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; esac - eval "enable_$ac_feature='$ac_optarg'" ;; + eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ @@ -438,6 +1069,12 @@ do -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; + -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) + ac_prev=htmldir ;; + -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ + | --ht=*) + htmldir=$ac_optarg ;; + -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; @@ -462,13 +1099,16 @@ do | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; + -localedir | --localedir | --localedi | --localed | --locale) + ac_prev=localedir ;; + -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) + localedir=$ac_optarg ;; + -localstatedir | --localstatedir | --localstatedi | --localstated \ - | --localstate | --localstat | --localsta | --localst \ - | --locals | --local | --loca | --loc | --lo) + | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ - | --localstate=* | --localstat=* | --localsta=* | --localst=* \ - | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) + | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) @@ -533,6 +1173,16 @@ do | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; + -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) + ac_prev=pdfdir ;; + -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) + pdfdir=$ac_optarg ;; + + -psdir | --psdir | --psdi | --psd | --ps) + ac_prev=psdir ;; + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) + psdir=$ac_optarg ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; @@ -583,26 +1233,36 @@ do ac_init_version=: ;; -with-* | --with-*) - ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. - expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid package name: $ac_package" >&2 - { (exit 1); exit 1; }; } - ac_package=`echo $ac_package| sed 's/-/_/g'` - case $ac_option in - *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; - *) ac_optarg=yes ;; + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" + ac_unrecognized_sep=', ';; esac - eval "with_$ac_package='$ac_optarg'" ;; + eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) - ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` + ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. - expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid package name: $ac_package" >&2 - { (exit 1); exit 1; }; } - ac_package=`echo $ac_package | sed 's/-/_/g'` - eval "with_$ac_package=no" ;; + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. @@ -622,26 +1282,25 @@ do | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; - -*) { echo "$as_me: error: unrecognized option: $ac_option -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; } + -*) as_fn_error "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information." ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. - expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 - { (exit 1); exit 1; }; } - ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` - eval "$ac_envvar='$ac_optarg'" + case $ac_envvar in #( + '' | [0-9]* | *[!_$as_cr_alnum]* ) + as_fn_error "invalid variable name: \`$ac_envvar'" ;; + esac + eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. - echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && - echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} ;; @@ -650,31 +1309,36 @@ done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` - { echo "$as_me: error: missing argument to $ac_option" >&2 - { (exit 1); exit 1; }; } + as_fn_error "missing argument to $ac_option" fi -# Be sure to have absolute paths. -for ac_var in exec_prefix prefix -do - eval ac_val=$`echo $ac_var` - case $ac_val in - [\\/$]* | ?:[\\/]* | NONE | '' ) ;; - *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 - { (exit 1); exit 1; }; };; +if test -n "$ac_unrecognized_opts"; then + case $enable_option_checking in + no) ;; + fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;; + *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac -done +fi -# Be sure to have absolute paths. -for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ - localstatedir libdir includedir oldincludedir infodir mandir +# Check all directory arguments for consistency. +for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir do - eval ac_val=$`echo $ac_var` + eval ac_val=\$$ac_var + # Remove trailing slashes. case $ac_val in - [\\/$]* | ?:[\\/]* ) ;; - *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 - { (exit 1); exit 1; }; };; + */ ) + ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` + eval $ac_var=\$ac_val;; esac + # Be sure to have absolute directory names. + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac + as_fn_error "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' @@ -688,7 +1352,7 @@ target=$target_alias if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe - echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. + $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used." >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes @@ -701,90 +1365,72 @@ test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null +ac_pwd=`pwd` && test -n "$ac_pwd" && +ac_ls_di=`ls -di .` && +ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || + as_fn_error "working directory cannot be determined" +test "X$ac_ls_di" = "X$ac_pwd_ls_di" || + as_fn_error "pwd does not report name of working directory" + + # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes - # Try the directory containing this script, then its parent. - ac_confdir=`(dirname "$0") 2>/dev/null || -$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$0" : 'X\(//\)[^/]' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$0" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` + # Try the directory containing this script, then the parent directory. + ac_confdir=`$as_dirname -- "$as_myself" || +$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_myself" : 'X\(//\)[^/]' \| \ + X"$as_myself" : 'X\(//\)$' \| \ + X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_myself" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` srcdir=$ac_confdir - if test ! -r $srcdir/$ac_unique_file; then + if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi -if test ! -r $srcdir/$ac_unique_file; then - if test "$ac_srcdir_defaulted" = yes; then - { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 - { (exit 1); exit 1; }; } - else - { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 - { (exit 1); exit 1; }; } - fi +if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." + as_fn_error "cannot find sources ($ac_unique_file) in $srcdir" fi -(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || - { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 - { (exit 1); exit 1; }; } -srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` -ac_env_build_alias_set=${build_alias+set} -ac_env_build_alias_value=$build_alias -ac_cv_env_build_alias_set=${build_alias+set} -ac_cv_env_build_alias_value=$build_alias -ac_env_host_alias_set=${host_alias+set} -ac_env_host_alias_value=$host_alias -ac_cv_env_host_alias_set=${host_alias+set} -ac_cv_env_host_alias_value=$host_alias -ac_env_target_alias_set=${target_alias+set} -ac_env_target_alias_value=$target_alias -ac_cv_env_target_alias_set=${target_alias+set} -ac_cv_env_target_alias_value=$target_alias -ac_env_CXX_set=${CXX+set} -ac_env_CXX_value=$CXX -ac_cv_env_CXX_set=${CXX+set} -ac_cv_env_CXX_value=$CXX -ac_env_CXXFLAGS_set=${CXXFLAGS+set} -ac_env_CXXFLAGS_value=$CXXFLAGS -ac_cv_env_CXXFLAGS_set=${CXXFLAGS+set} -ac_cv_env_CXXFLAGS_value=$CXXFLAGS -ac_env_LDFLAGS_set=${LDFLAGS+set} -ac_env_LDFLAGS_value=$LDFLAGS -ac_cv_env_LDFLAGS_set=${LDFLAGS+set} -ac_cv_env_LDFLAGS_value=$LDFLAGS -ac_env_CPPFLAGS_set=${CPPFLAGS+set} -ac_env_CPPFLAGS_value=$CPPFLAGS -ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} -ac_cv_env_CPPFLAGS_value=$CPPFLAGS -ac_env_CC_set=${CC+set} -ac_env_CC_value=$CC -ac_cv_env_CC_set=${CC+set} -ac_cv_env_CC_value=$CC -ac_env_CFLAGS_set=${CFLAGS+set} -ac_env_CFLAGS_value=$CFLAGS -ac_cv_env_CFLAGS_set=${CFLAGS+set} -ac_cv_env_CFLAGS_value=$CFLAGS -ac_env_CXXCPP_set=${CXXCPP+set} -ac_env_CXXCPP_value=$CXXCPP -ac_cv_env_CXXCPP_set=${CXXCPP+set} -ac_cv_env_CXXCPP_value=$CXXCPP -ac_env_F77_set=${F77+set} -ac_env_F77_value=$F77 -ac_cv_env_F77_set=${F77+set} -ac_cv_env_F77_value=$F77 -ac_env_FFLAGS_set=${FFLAGS+set} -ac_env_FFLAGS_value=$FFLAGS -ac_cv_env_FFLAGS_set=${FFLAGS+set} -ac_cv_env_FFLAGS_value=$FFLAGS +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" +ac_abs_confdir=`( + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg" + pwd)` +# When building in place, set srcdir=. +if test "$ac_abs_confdir" = "$ac_pwd"; then + srcdir=. +fi +# Remove unnecessary trailing slashes from srcdir. +# Double slashes in file names in object file debugging info +# mess up M-x gdb in Emacs. +case $srcdir in +*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; +esac +for ac_var in $ac_precious_vars; do + eval ac_env_${ac_var}_set=\${${ac_var}+set} + eval ac_env_${ac_var}_value=\$${ac_var} + eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} + eval ac_cv_env_${ac_var}_value=\$${ac_var} +done # # Report the --help message. @@ -793,7 +1439,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures Cantera 1.7.0 to adapt to many kinds of systems. +\`configure' configures cantera 1.8.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -813,14 +1459,11 @@ Configuration: -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] -_ACEOF - - cat <<_ACEOF Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX - [$ac_default_prefix] + [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX - [PREFIX] + [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify @@ -830,166 +1473,722 @@ for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: - --bindir=DIR user executables [EPREFIX/bin] - --sbindir=DIR system admin executables [EPREFIX/sbin] - --libexecdir=DIR program executables [EPREFIX/libexec] - --datadir=DIR read-only architecture-independent data [PREFIX/share] - --sysconfdir=DIR read-only single-machine data [PREFIX/etc] - --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] - --localstatedir=DIR modifiable single-machine data [PREFIX/var] - --libdir=DIR object code libraries [EPREFIX/lib] - --includedir=DIR C header files [PREFIX/include] - --oldincludedir=DIR C header files for non-gcc [/usr/include] - --infodir=DIR info documentation [PREFIX/info] - --mandir=DIR man documentation [PREFIX/man] + --bindir=DIR user executables [EPREFIX/bin] + --sbindir=DIR system admin executables [EPREFIX/sbin] + --libexecdir=DIR program executables [EPREFIX/libexec] + --sysconfdir=DIR read-only single-machine data [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] + --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] + --infodir=DIR info documentation [DATAROOTDIR/info] + --localedir=DIR locale-dependent data [DATAROOTDIR/locale] + --mandir=DIR man documentation [DATAROOTDIR/man] + --docdir=DIR documentation root [DATAROOTDIR/doc/cantera] + --htmldir=DIR html documentation [DOCDIR] + --dvidir=DIR dvi documentation [DOCDIR] + --pdfdir=DIR pdf documentation [DOCDIR] + --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF +Program names: + --program-prefix=PREFIX prepend PREFIX to installed program names + --program-suffix=SUFFIX append SUFFIX to installed program names + --program-transform-name=PROGRAM run sed PROGRAM on installed program names + System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] - --target=TARGET configure for building compilers for TARGET [HOST] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of Cantera 1.7.0:";; + short | recursive ) echo "Configuration of cantera 1.8.0:";; esac cat <<\_ACEOF +Optional Features: + --disable-option-checking ignore unrecognized --enable/--with options + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors + --enable-shared[=PKGS] build shared libraries [default=yes] + --enable-static[=PKGS] build static libraries [default=yes] + --enable-fast-install[=PKGS] + optimize for fast installation [default=yes] + --disable-libtool-lock avoid locking (might break parallel builds) + +Optional Packages: + --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] + --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) + --with-pic try to use only PIC/non-PIC objects [default=use + both] + --with-gnu-ld assume the C compiler uses GNU ld [default=no] + Some influential environment variables: - CXX C++ compiler command - CXXFLAGS C++ compiler flags - LDFLAGS linker flags, e.g. -L if you have libraries in a - nonstandard directory - CPPFLAGS C/C++ preprocessor flags, e.g. -I if you have - headers in a nonstandard directory CC C compiler command CFLAGS C compiler flags - CXXCPP C++ preprocessor + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory + LIBS libraries to pass to the linker, e.g. -l + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if + you have headers in a nonstandard directory + CXX C++ compiler command + CXXFLAGS C++ compiler flags + FC Fortran compiler command + FCFLAGS Fortran compiler flags F77 Fortran 77 compiler command FFLAGS Fortran 77 compiler flags + CPP C preprocessor + CXXCPP C++ preprocessor Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. +Report bugs to . _ACEOF +ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. - ac_popdir=`pwd` for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue - test -d $ac_dir || continue + test -d "$ac_dir" || + { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || + continue ac_builddir=. -if test "$ac_dir" != .; then - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A "../" for each directory in $ac_dir_suffix. - ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` -else - ac_dir_suffix= ac_top_builddir= -fi +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix case $srcdir in - .) # No --srcdir option. We are building in place. + .) # We are building in place. ac_srcdir=. - if test -z "$ac_top_builddir"; then - ac_top_srcdir=. - else - ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` - fi ;; - [\\/]* | ?:[\\/]* ) # Absolute path. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir ;; - *) # Relative path. - ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_builddir$srcdir ;; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix -# Do not use `cd foo && pwd` to compute absolute paths, because -# the directories may not exist. -case `pwd` in -.) ac_abs_builddir="$ac_dir";; -*) - case "$ac_dir" in - .) ac_abs_builddir=`pwd`;; - [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; - *) ac_abs_builddir=`pwd`/"$ac_dir";; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_builddir=${ac_top_builddir}.;; -*) - case ${ac_top_builddir}. in - .) ac_abs_top_builddir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; - *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_srcdir=$ac_srcdir;; -*) - case $ac_srcdir in - .) ac_abs_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; - *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_srcdir=$ac_top_srcdir;; -*) - case $ac_top_srcdir in - .) ac_abs_top_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; - *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; - esac;; -esac - - cd $ac_dir - # Check for guested configure; otherwise get Cygnus style configure. - if test -f $ac_srcdir/configure.gnu; then - echo - $SHELL $ac_srcdir/configure.gnu --help=recursive - elif test -f $ac_srcdir/configure; then - echo - $SHELL $ac_srcdir/configure --help=recursive - elif test -f $ac_srcdir/configure.ac || - test -f $ac_srcdir/configure.in; then - echo - $ac_configure --help + cd "$ac_dir" || { ac_status=$?; continue; } + # Check for guested configure. + if test -f "$ac_srcdir/configure.gnu"; then + echo && + $SHELL "$ac_srcdir/configure.gnu" --help=recursive + elif test -f "$ac_srcdir/configure"; then + echo && + $SHELL "$ac_srcdir/configure" --help=recursive else - echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 - fi - cd $ac_popdir + $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } done fi -test -n "$ac_init_help" && exit 0 +test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -Cantera configure 1.7.0 -generated by GNU Autoconf 2.59 +cantera configure 1.8.0 +generated by GNU Autoconf 2.65 -Copyright (C) 2003 Free Software Foundation, Inc. +Copyright (C) 2009 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF - exit 0 + exit fi -exec 5>config.log -cat >&5 <<_ACEOF + +## ------------------------ ## +## Autoconf initialization. ## +## ------------------------ ## + +# ac_fn_c_try_compile LINENO +# -------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_c_try_compile + +# ac_fn_cxx_try_compile LINENO +# ---------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_cxx_try_compile + +# ac_fn_fc_try_compile LINENO +# --------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_fc_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_fc_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_fc_try_compile + +# ac_fn_f77_try_compile LINENO +# ---------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_f77_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_f77_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_f77_try_compile + +# ac_fn_c_try_link LINENO +# ----------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + $as_test_x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_c_try_link + +# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists and can be compiled using the include files in +# INCLUDES, setting the cache variable VAR accordingly. +ac_fn_c_check_header_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} # ac_fn_c_check_header_compile + +# ac_fn_c_try_cpp LINENO +# ---------------------- +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_c_try_cpp + +# ac_fn_c_try_run LINENO +# ---------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes +# that executables *can* be run. +ac_fn_c_try_run () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then : + ac_retval=0 +else + $as_echo "$as_me: program exited with status $ac_status" >&5 + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=$ac_status +fi + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_c_try_run + +# ac_fn_c_check_func LINENO FUNC VAR +# ---------------------------------- +# Tests whether FUNC exists, setting the cache variable VAR accordingly +ac_fn_c_check_func () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +/* Define $2 to an innocuous variant, in case declares $2. + For example, HP-UX 11i declares gettimeofday. */ +#define $2 innocuous_$2 + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $2 (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef $2 + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char $2 (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_$2 || defined __stub___$2 +choke me +#endif + +int +main () +{ +return $2 (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} # ac_fn_c_check_func + +# ac_fn_cxx_try_cpp LINENO +# ------------------------ +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } >/dev/null && { + test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_cxx_try_cpp + +# ac_fn_cxx_try_link LINENO +# ------------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + $as_test_x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_cxx_try_link + +# ac_fn_f77_try_link LINENO +# ------------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_f77_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_f77_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + $as_test_x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_f77_try_link + +# ac_fn_fc_try_link LINENO +# ------------------------ +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_fc_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_fc_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + $as_test_x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_fc_try_link +cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by Cantera $as_me 1.7.0, which was -generated by GNU Autoconf 2.59. Invocation command line was +It was created by cantera $as_me 1.8.0, which was +generated by GNU Autoconf 2.65. Invocation command line was $ $0 $@ _ACEOF +exec 5>>config.log { cat <<_ASUNAME ## --------- ## @@ -1008,7 +2207,7 @@ uname -v = `(uname -v) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -hostinfo = `(hostinfo) 2>/dev/null || echo unknown` +/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` @@ -1020,8 +2219,9 @@ for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - echo "PATH: $as_dir" -done + $as_echo "PATH: $as_dir" + done +IFS=$as_save_IFS } >&5 @@ -1043,7 +2243,6 @@ _ACEOF ac_configure_args= ac_configure_args0= ac_configure_args1= -ac_sep= ac_must_keep_next=false for ac_pass in 1 2 do @@ -1054,13 +2253,13 @@ do -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; - *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) - ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + *\'*) + ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in - 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; + 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) - ac_configure_args1="$ac_configure_args1 '$ac_arg'" + as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else @@ -1076,21 +2275,19 @@ do -* ) ac_must_keep_next=true ;; esac fi - ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" - # Get rid of the leading space. - ac_sep=" " + as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done -$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } -$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } +{ ac_configure_args0=; unset ac_configure_args0;} +{ ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. -# WARNING: Be sure not to use single quotes in there, as some shells, -# such as our DU 5.0 friend, will then `close' the trap. +# WARNING: Use '\'' to represent an apostrophe within the trap. +# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { @@ -1103,20 +2300,35 @@ trap 'exit_status=$? _ASBOX echo # The following way of writing the cache mishandles newlines in values, -{ +( + for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done (set) 2>&1 | - case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in - *ac_space=\ *) + case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( + *${as_nl}ac_space=\ *) sed -n \ - "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" - ;; + "s/'\''/'\''\\\\'\'''\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" + ;; #( *) - sed -n \ - "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; - esac; -} + esac | + sort +) echo cat <<\_ASBOX @@ -1127,22 +2339,28 @@ _ASBOX echo for ac_var in $ac_subst_vars do - eval ac_val=$`echo $ac_var` - echo "$ac_var='"'"'$ac_val'"'"'" + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then cat <<\_ASBOX -## ------------- ## -## Output files. ## -## ------------- ## +## ------------------- ## +## File substitutions. ## +## ------------------- ## _ASBOX echo for ac_var in $ac_subst_files do - eval ac_val=$`echo $ac_var` - echo "$ac_var='"'"'$ac_val'"'"'" + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi @@ -1154,26 +2372,26 @@ _ASBOX ## ----------- ## _ASBOX echo - sed "/^$/d" confdefs.h | sort + cat confdefs.h echo fi test "$ac_signal" != 0 && - echo "$as_me: caught signal $ac_signal" - echo "$as_me: exit $exit_status" + $as_echo "$as_me: caught signal $ac_signal" + $as_echo "$as_me: exit $exit_status" } >&5 - rm -f core *.core && - rm -rf conftest* confdefs* conf$$* $ac_clean_files && + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status - ' 0 +' 0 for ac_signal in 1 2 13 15; do - trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal + trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. -rm -rf conftest* confdefs.h -# AIX cpp loses on an empty file, so make sure it contains at least a newline. -echo >confdefs.h +rm -f -r conftest* confdefs.h + +$as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. @@ -1181,96 +2399,128 @@ cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF - cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF - cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF - cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF - cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF +cat >>confdefs.h <<_ACEOF +#define PACKAGE_URL "$PACKAGE_URL" +_ACEOF + # Let the site file select an alternate cache file if it wants to. -# Prefer explicitly selected file to automatically selected ones. -if test -z "$CONFIG_SITE"; then - if test "x$prefix" != xNONE; then - CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" - else - CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" - fi +# Prefer an explicitly selected file to automatically selected ones. +ac_site_file1=NONE +ac_site_file2=NONE +if test -n "$CONFIG_SITE"; then + ac_site_file1=$CONFIG_SITE +elif test "x$prefix" != xNONE; then + ac_site_file1=$prefix/share/config.site + ac_site_file2=$prefix/etc/config.site +else + ac_site_file1=$ac_default_prefix/share/config.site + ac_site_file2=$ac_default_prefix/etc/config.site fi -for ac_site_file in $CONFIG_SITE; do - if test -r "$ac_site_file"; then - { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 -echo "$as_me: loading site script $ac_site_file" >&6;} +for ac_site_file in "$ac_site_file1" "$ac_site_file2" +do + test "x$ac_site_file" = xNONE && continue + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 +$as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" fi done +if test -r "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special files + # actually), so we avoid doing that. DJGPP emulates it as a regular file. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 +$as_echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi +else + { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 +$as_echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file +fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false -for ac_var in `(set) 2>&1 | - sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do +for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set - eval ac_old_val="\$ac_cv_env_${ac_var}_value" - eval ac_new_val="\$ac_env_${ac_var}_value" + eval ac_old_val=\$ac_cv_env_${ac_var}_value + eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) - { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) - { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 -echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then - { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 -echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 -echo "$as_me: former value: $ac_old_val" >&2;} - { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 -echo "$as_me: current value: $ac_new_val" >&2;} - ac_cache_corrupted=: + # differences in whitespace do not lead to failure. + ac_old_val_w=`echo x $ac_old_val` + ac_new_val_w=`echo x $ac_new_val` + if test "$ac_old_val_w" != "$ac_new_val_w"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 +$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + ac_cache_corrupted=: + else + { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 +$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} + eval $ac_var=\$ac_old_val + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 +$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 +$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in - *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) - ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; + *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then - { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 -echo "$as_me: error: changes in the environment can compromise the build" >&2;} - { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 -echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} - { (exit 1); exit 1; }; } + { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 +$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} + as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi +## -------------------- ## +## Main body of script. ## +## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' @@ -1279,2306 +2529,33 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $ ac_compiler_gnu=$ac_cv_c_compiler_gnu +ac_config_headers="$ac_config_headers config.h" - - - - - - - - - - - - - - - - - - - - - - - - - ac_config_headers="$ac_config_headers config.h" - -# AC_CONFIG_AUX_DIR(.) -# AC_CONFIG_SRCDIR(./License.txt) ac_aux_dir= -for ac_dir in config $srcdir/config; do - if test -f $ac_dir/install-sh; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install-sh -c" - break - elif test -f $ac_dir/install.sh; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install.sh -c" - break - elif test -f $ac_dir/shtool; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/shtool install -c" - break - fi +for ac_dir in build-aux "$srcdir"/build-aux; do + for ac_t in install-sh install.sh shtool; do + if test -f "$ac_dir/$ac_t"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/$ac_t -c" + break 2 + fi + done done if test -z "$ac_aux_dir"; then - { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in config $srcdir/config" >&5 -echo "$as_me: error: cannot find install-sh or install.sh in config $srcdir/config" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "cannot find install-sh, install.sh, or shtool in build-aux \"$srcdir\"/build-aux" "$LINENO" 5 fi -ac_config_guess="$SHELL $ac_aux_dir/config.guess" -ac_config_sub="$SHELL $ac_aux_dir/config.sub" -ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. +# These three variables are undocumented and unsupported, +# and are intended to be withdrawn in a future Autoconf release. +# They can cause serious problems if a builder's source tree is in a directory +# whose full name contains unusual characters. +ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. +ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. +ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. -if test -z $CANTERA_VERSION ; then - echo - echo ">>>>> Error <<<<<" - echo - echo "Run script 'preconfig', instead of running 'configure'" - echo "directly. The 'preconfig' script sets various variable values" - echo "needed by 'configure' and then runs 'configure.' You may want to" - echo "edit 'preconfig' first, to set various installation options." - echo - exit 1 -fi - - -echo " " -echo "--------------------------------------------------------------" -echo " " -echo " Cantera "$CANTERA_VERSION -echo " Configuration Script " -echo " " -echo "--------------------------------------------------------------" -echo " " - -cat >>confdefs.h <<\_ACEOF -#define NDEBUG 1 -_ACEOF - - -ac_sys_system=`uname -s` -ac_sys_release=`uname -r` - -# moved since MacOS deosn't support -i option -#sys_hardware=`uname -i` - -# -# Determine the number of hardware bits in the system -# -# -# BITHARDWARE is the default number of compilation bits in pointers -# -case $ac_sys_system in - Linux* ) - sys_hardware=`uname -i` - echo 'linux ' $sys_hardware - case $sys_hardware in - x86_64 ) BITHARDWARE=64 ;; - - * ) BITHARDWARE=${BITHARDWARE:="32"} ;; - esac ;; - SunOS* ) - sys_hardware=`uname -i` - echo 'SunOS ' $sys_hardware - case $sys_hardware in - "SUNW,Sun-Fire" ) BITHARDWARE=64 ;; - * ) BITHARDWARE=${BITHARDWARE:="32"} ;; - esac ;; - * ) BITHARDWARE=${BITHARDWARE:="32"} ;; -esac -# -# BITCOMPILE is the desired number of compilation bits in pointers -# Note, it can be different than the number of hardware bits. -# Many times you will want to compile 32 bits on a 64 bit -# machine -if test -z $BITCOMPILE ; then - BITCOMPILE=$BITHARDWARE -fi - -BITCHANGE= -if test $BITCOMPILE != $BITHARDWARE ; then - BITCHANGE='y' -fi - - - - - - - -SHARED_CTLIB=0 -OS_IS_DARWIN=0 -OS_IS_WIN=0 -OS_IS_CYGWIN=0 -OS_IS_SOLARIS=0 -EXTRA_LINK=${EXTRA_LINK:=""} - -# default Matlab MEX file extension -mex_ext=mexglx - -case $ac_sys_system in - Darwin*) OS_IS_DARWIN=1; - hardware=`uname -m`; - EXTRA_LINK="-framework Accelerate $EXTRA_LINK"; - #mex_ext=mexmac; - #if test "$hardware" = "i386" ; then - # mex_ext=mexmaci - ;;#fi;; - CYGWIN*) OS_IS_CYGWIN=1; mex_ext=mexw32;; - SunOS*) OS_IS_SOLARIS=1;; - Linux* ) case $BITHARDWARE in - 64 ) if test "$BITCHANGE" = "y" ; then - ldemulationarg='-melf_i386' - fi ;; - esac -esac - - - - -CVF_LIBDIR="" -if test "x${OS_IS_CYGWIN}" = "x1"; then - if test "${USE_VISUAL_STUDIO}" = "y"; then - OS_IS_WIN=1; - OS_IS_CYGWIN=0; - CVF_LIBDIR=$FORTRAN_LIB_DIR - fi -fi - - -# -# Determine if clib is to be a static or dynamic library -# -> will test to see if USE_DLL is defined in the cygwmin environment -# -USE_CLIB_DLL=0 -if test "x${OS_IS_WIN}" = "x1"; then - if test -n ${USE_CLIB_DLL} ; then - USE_CLIB_DLL=1 - fi -fi - - -prdef="/usr/local/cantera" -if test "x$OS_IS_DARWIN" = "x1"; then prdef="/Applications/Cantera"; fi - -local_inst=1 -if test "x${prefix}" = "xNONE"; then - prefix=${prdef} - local_inst=0 -fi -exec_prefix=${prefix} - -if test "x${OS_IS_WIN}" = "x1"; then - prefix=`cygpath -a -m "${prefix}" ` -fi -echo "Cantera will be installed in ${prefix}" - - - - -# -# Determination of Python site-package directory location -# -local_python_inst=${local_inst} -if test "x${SET_PYTHON_SITE_PACKAGE_TOPDIR}" = "xy"; then - python_prefix=${PYTHON_SITE_PACKAGE_TOPDIR} - python_win_prefix=$python_prefix - if test "x${OS_IS_WIN}" = "x1" ; then - python_prefix=`cygpath -a -m "${python_prefix}"` - python_win_prefix=`cygpath -a -w "${python_prefix}"` - elif test "x${OS_IS_CYGWIN}" = "x1" ; then - python_prefix=`cygpath -a -u "${python_prefix}"` - python_win_prefix=`cygpath -a -w "${python_prefix}"` - fi - local_python_inst=1 - echo "Cantera's Python packages will be installed in ${python_prefix}" -else - python_prefix=$prefix - python_win_prefix=$python_prefix - if test "x${OS_IS_WIN}" = "x1"; then - python_win_prefix=`cygpath -a -w "${python_prefix}" ` - fi -fi - - - - - -ctversion=${CANTERA_VERSION} - -cat >>confdefs.h <<_ACEOF -#define CANTERA_VERSION "$ctversion" -_ACEOF - - -homedir="${HOME}" - - - -# A compact installation is one in which the $prefix directory -# contains only Cantera files. It is different than a local -# installation, in that the Python package is installed with other -# Python packages and modules in site-packages, rather than with the -# rest of the Cantera files, as in a local installation. Therefore, -# with a compact installation, there is no need to set PYTHONPATH. A -# compact installation is done on all machines now by default. -# This simplifies the installation issues, because now all Cantera -# installations look the same, except perhaps for the locations -# of the python packages. -# An option called, "distributed installations", is no longer -# supported. - -ct_libdir=${prefix}/lib -ct_bindir=${prefix}/bin -ct_incdir=${prefix}/include/cantera -ct_incroot=${prefix}/include -ct_datadir=${prefix}/data -ct_demodir=${prefix}/demos -ct_templdir=${prefix}/templates -ct_tutdir=${prefix}/tutorials -ct_docdir=${prefix}/doc -ct_dir=${prefix} -ct_mandir=${prefix} - - - - - - - - - - - - - -# Make sure we can run config.sub. -$ac_config_sub sun4 >/dev/null 2>&1 || - { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5 -echo "$as_me: error: cannot run $ac_config_sub" >&2;} - { (exit 1); exit 1; }; } - -echo "$as_me:$LINENO: checking build system type" >&5 -echo $ECHO_N "checking build system type... $ECHO_C" >&6 -if test "${ac_cv_build+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_build_alias=$build_alias -test -z "$ac_cv_build_alias" && - ac_cv_build_alias=`$ac_config_guess` -test -z "$ac_cv_build_alias" && - { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 -echo "$as_me: error: cannot guess build type; you must specify one" >&2;} - { (exit 1); exit 1; }; } -ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || - { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5 -echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;} - { (exit 1); exit 1; }; } - -fi -echo "$as_me:$LINENO: result: $ac_cv_build" >&5 -echo "${ECHO_T}$ac_cv_build" >&6 -build=$ac_cv_build -build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` -build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` -build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` - - -echo "$as_me:$LINENO: checking host system type" >&5 -echo $ECHO_N "checking host system type... $ECHO_C" >&6 -if test "${ac_cv_host+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_host_alias=$host_alias -test -z "$ac_cv_host_alias" && - ac_cv_host_alias=$ac_cv_build_alias -ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || - { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5 -echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} - { (exit 1); exit 1; }; } - -fi -echo "$as_me:$LINENO: result: $ac_cv_host" >&5 -echo "${ECHO_T}$ac_cv_host" >&6 -host=$ac_cv_host -host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` -host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` -host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` - - -echo "$as_me:$LINENO: checking target system type" >&5 -echo $ECHO_N "checking target system type... $ECHO_C" >&6 -if test "${ac_cv_target+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_target_alias=$target_alias -test "x$ac_cv_target_alias" = "x" && - ac_cv_target_alias=$ac_cv_host_alias -ac_cv_target=`$ac_config_sub $ac_cv_target_alias` || - { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5 -echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;} - { (exit 1); exit 1; }; } - -fi -echo "$as_me:$LINENO: result: $ac_cv_target" >&5 -echo "${ECHO_T}$ac_cv_target" >&6 -target=$ac_cv_target -target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` -target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` -target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` - - -# The aliases save the names the user supplied, while $host etc. -# will get canonicalized. -test -n "$target_alias" && - test "$program_prefix$program_suffix$program_transform_name" = \ - NONENONEs,x,x, && - program_prefix=${target_alias}- -# the root of the source tree -ctroot=`(pwd)` -builddir=$target -if test "x${OS_IS_WIN}" = "x1"; then - ctroot=`cygpath -a -m "${ctroot}" | sed 's/\\\/\\//g'` - builddir="i686-pc-win32" -fi - -if test -z "$username"; then username=$USER; fi -if test -z "$username"; then username=$USERNAME; fi -if test -z "$username"; then username=`whoami`; fi - - - - - -# The include directory in the 'build' subdirectory. -# This is required to build the test problems -# before Cantera has been installed. -buildinc=$ctroot/build/include - - -buildlib=$ctroot/build/lib/$builddir - -buildbin=$ctroot/build/bin/$builddir - - -# add definitions to config.h -if test "x${OS_IS_DARWIN}" = "x1"; then - cat >>confdefs.h <<_ACEOF -#define DARWIN $OS_IS_DARWIN -_ACEOF - -fi -if test "x${OS_IS_CYGWIN}" = "x1"; then - cat >>confdefs.h <<_ACEOF -#define CYGWIN $OS_IS_CYGWIN -_ACEOF - -fi -if test "x${OS_IS_SOLARIS}" = "x1"; then - cat >>confdefs.h <<_ACEOF -#define SOLARIS $OS_IS_SOLARIS -_ACEOF - -fi -if test "x${OS_IS_WIN}" = "x1"; then - cat >>confdefs.h <<_ACEOF -#define WINMSVC $OS_IS_WIN -_ACEOF - -fi -cat >>confdefs.h <<_ACEOF -#define RXNPATH_FONT "$RPFONT" -_ACEOF - -#AC_DEFINE_UNQUOTED(CANTERA_ROOT,"$prefix/cantera") -cat >>confdefs.h <<_ACEOF -#define CANTERA_DATA "$ct_datadir" -_ACEOF - - - -if test -z "$MAKE"; then MAKE='make'; fi - - -if test -z "$GRAPHVIZDIR" ; then -GRAPHVIZDIR=" " -fi - - - -#----------- ARCHIVE -------------------- - -if test "x${OS_IS_DARWIN}" = "x1"; then -ARCHIVE='libtool -static -o' -fi - - - -DO_RANLIB=1 -if test "x${RANLIB}" = "x"; then -DO_RANLIB=0 -fi - - - - -#----------- DEPENDS -------------------- - -if test "x${CXX_DEPENDS}" = "x"; then -CXX_DEPENDS='g++ -MM' -fi - - -#---------------------------------------- - -#---------------------------------------- - -######################################################## -# User Code -######################################################### -USERDIR="" -INCL_USER_CODE=0 -if test -n "$USER_SRC_DIR"; then USERDIR=$USER_SRC_DIR; INCL_USER_CODE=1; fi - - - -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -use_sundials=0 -sundials_inc= -CVODE_LIBS='-lcvode' -IDA_LIBS='' - -if test "x$SUNDIALS_HOME" = "x"; then -SUNDIALS_LIB_DIR=/usr/local/lib -SUNDIALS_INC_DIR=/usr/local/include -else -SUNDIALS_LIB_DIR="$SUNDIALS_HOME/lib" -SUNDIALS_INC_DIR="$SUNDIALS_HOME/include" -fi - -if test "$USE_SUNDIALS" = "default"; then -# -# HKM Disabled this line as it was causing configure to fail when -# SUNDIALS_LIB_DIR had a space in it, despite use of double quotes everywhere -#ldsave="$LDFLAGS" -#LDFLAGS='-L'"$SUNDIALS_LIB_DIR"' '"$ldsave" -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CXX+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CXX"; then - ac_cv_prog_CXX="$CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CXX=$ac_cv_prog_CXX -if test -n "$CXX"; then - echo "$as_me:$LINENO: result: $CXX" >&5 -echo "${ECHO_T}$CXX" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$CXX" && break - done -fi -if test -z "$CXX"; then - ac_ct_CXX=$CXX - for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CXX"; then - ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CXX="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CXX=$ac_cv_prog_ac_ct_CXX -if test -n "$ac_ct_CXX"; then - echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 -echo "${ECHO_T}$ac_ct_CXX" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$ac_ct_CXX" && break -done -test -n "$ac_ct_CXX" || ac_ct_CXX="g++" - - CXX=$ac_ct_CXX -fi - - -# Provide some information about the compiler. -echo "$as_me:$LINENO:" \ - "checking for C++ compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.exe b.out" -# Try to create an executable without -o first, disregard a.out. -# It will help us diagnose broken compilers, and finding out an intuition -# of exeext. -echo "$as_me:$LINENO: checking for C++ compiler default output file name" >&5 -echo $ECHO_N "checking for C++ compiler default output file name... $ECHO_C" >&6 -ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` -if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5 - (eval $ac_link_default) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - # Find the output, starting from the most likely. This scheme is -# not robust to junk in `.', hence go to wildcards (a.*) only as a last -# resort. - -# Be careful to initialize this variable, since it used to be cached. -# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile. -ac_cv_exeext= -# b.out is created by i960 compilers. -for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out -do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) - ;; - conftest.$ac_ext ) - # This is the source file. - ;; - [ab].out ) - # We found the default executable, but exeext='' is most - # certainly right. - break;; - *.* ) - ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - # FIXME: I believe we export ac_cv_exeext for Libtool, - # but it would be cool to find out if it's true. Does anybody - # maintain Libtool? --akim. - export ac_cv_exeext - break;; - * ) - break;; - esac -done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { echo "$as_me:$LINENO: error: C++ compiler cannot create executables -See \`config.log' for more details." >&5 -echo "$as_me: error: C++ compiler cannot create executables -See \`config.log' for more details." >&2;} - { (exit 77); exit 77; }; } -fi - -ac_exeext=$ac_cv_exeext -echo "$as_me:$LINENO: result: $ac_file" >&5 -echo "${ECHO_T}$ac_file" >&6 - -# Check the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -echo "$as_me:$LINENO: checking whether the C++ compiler works" >&5 -echo $ECHO_N "checking whether the C++ compiler works... $ECHO_C" >&6 -# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 -# If not cross compiling, check that we can run a simple program. -if test "$cross_compiling" != yes; then - if { ac_try='./$ac_file' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { echo "$as_me:$LINENO: error: cannot run C++ compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run C++ compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } - fi - fi -fi -echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - -rm -f a.out a.exe conftest$ac_cv_exeext b.out -ac_clean_files=$ac_clean_files_save -# Check the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 -echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 -echo "$as_me:$LINENO: result: $cross_compiling" >&5 -echo "${ECHO_T}$cross_compiling" >&6 - -echo "$as_me:$LINENO: checking for suffix of executables" >&5 -echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - # If both `conftest.exe' and `conftest' are `present' (well, observable) -# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -# work properly (i.e., refer to `conftest.exe'), while it won't with -# `rm'. -for ac_file in conftest.exe conftest conftest.*; do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; - *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - export ac_cv_exeext - break;; - * ) break;; - esac -done -else - { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi - -rm -f conftest$ac_cv_exeext -echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 -echo "${ECHO_T}$ac_cv_exeext" >&6 - -rm -f conftest.$ac_ext -EXEEXT=$ac_cv_exeext -ac_exeext=$EXEEXT -echo "$as_me:$LINENO: checking for suffix of object files" >&5 -echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6 -if test "${ac_cv_objext+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.o conftest.obj -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;; - *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` - break;; - esac -done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi - -rm -f conftest.$ac_cv_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 -echo "${ECHO_T}$ac_cv_objext" >&6 -OBJEXT=$ac_cv_objext -ac_objext=$OBJEXT -echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6 -if test "${ac_cv_cxx_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_cxx_compiler_gnu=$ac_compiler_gnu - -fi -echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 -GXX=`test $ac_compiler_gnu = yes && echo yes` -ac_test_CXXFLAGS=${CXXFLAGS+set} -ac_save_CXXFLAGS=$CXXFLAGS -CXXFLAGS="-g" -echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 -echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_cxx_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cxx_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_cxx_g=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 -if test "$ac_test_CXXFLAGS" = set; then - CXXFLAGS=$ac_save_CXXFLAGS -elif test $ac_cv_prog_cxx_g = yes; then - if test "$GXX" = yes; then - CXXFLAGS="-g -O2" - else - CXXFLAGS="-g" - fi -else - if test "$GXX" = yes; then - CXXFLAGS="-O2" - else - CXXFLAGS= - fi -fi -for ac_declaration in \ - '' \ - 'extern "C" void std::exit (int) throw (); using std::exit;' \ - 'extern "C" void std::exit (int); using std::exit;' \ - 'extern "C" void exit (int) throw ();' \ - 'extern "C" void exit (int);' \ - 'void exit (int);' -do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -#include -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -continue -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -rm -f conftest* -if test -n "$ac_declaration"; then - echo '#ifdef __cplusplus' >>confdefs.h - echo $ac_declaration >>confdefs.h - echo '#endif' >>confdefs.h -fi - -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -echo "$as_me:$LINENO: checking for CVodeCreate in -lsundials_cvodes" >&5 -echo $ECHO_N "checking for CVodeCreate in -lsundials_cvodes... $ECHO_C" >&6 -if test "${ac_cv_lib_sundials_cvodes_CVodeCreate+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lsundials_cvodes \ --lsundials_cvodes -lsundials_nvecserial -lm $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -/* Override any gcc2 internal prototype to avoid an error. */ -#ifdef __cplusplus -extern "C" -#endif -/* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ -char CVodeCreate (); -int -main () -{ -CVodeCreate (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_lib_sundials_cvodes_CVodeCreate=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_lib_sundials_cvodes_CVodeCreate=no -fi -rm -f conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -echo "$as_me:$LINENO: result: $ac_cv_lib_sundials_cvodes_CVodeCreate" >&5 -echo "${ECHO_T}$ac_cv_lib_sundials_cvodes_CVodeCreate" >&6 -if test $ac_cv_lib_sundials_cvodes_CVodeCreate = yes; then - use_sundials=1 -else - use_sundials=0 -fi - - -if test ${use_sundials} = 0 ; then - tmpFile="$SUNDIALS_LIB_DIR/libsundials_cvodes.a" - if test -f $tmpFile ; then - use_sundials=1 - fi -fi - -if test ${use_sundials} = 1 ; then - echo SUNDIALS: succeeded in finding a sundials installation -else - echo SUNDIALS: failed at finding a sundials installation -fi -#LDFLAGS=$ldsave -fi - -if test "x$USE_SUNDIALS" = "xy"; then -use_sundials=1 -fi -sundials_lib_dir= -sundials_lib= -sundials_lib_dep= - - -if test ${use_sundials} = 1; then -echo "using CVODES from SUNDIALS... Sensitivity analysis enabled." - -CVODE_LIBS='-lsundials_cvodes -lsundials_nvecserial' -IDA_LIBS='-lsundials_ida -lsundials_nvecserial' - -if test "$SUNDIALS_VERSION" = "2.2"; then - cat >>confdefs.h <<\_ACEOF -#define HAS_SUNDIALS 1 -_ACEOF - - cat >>confdefs.h <<\_ACEOF -#define SUNDIALS_VERSION_22 1 -_ACEOF - - sundials_include='-I'${SUNDIALS_HOME}'/include -I'${SUNDIALS_HOME}'/include/sundials -I'${SUNDIALS_HOME}'/include/cvodes -I'${SUNDIALS_HOME}'/include/ida' - echo "sundials include directory: " ${sundials_include} - echo "sundials library directory: " $SUNDIALS_LIB_DIR - sundials_lib_dir=$SUNDIALS_LIB_DIR - sundials_lib="-L$SUNDIALS_LIB_DIR -lsundials_cvodes -lsundials_ida -lsundials_nvecserial" - sundials_lib_dep="$SUNDIALS_LIB_DIR/libsundials_cvodes.a $SUNDIALS_LIB_DIR/libsundials_ida.a $SUNDIALS_LIB_DIR/libsundials_nvecserial.a" -elif test "$SUNDIALS_VERSION" = "2.3"; then - cat >>confdefs.h <<\_ACEOF -#define HAS_SUNDIALS 1 -_ACEOF - - cat >>confdefs.h <<\_ACEOF -#define SUNDIALS_VERSION_23 1 -_ACEOF - - sundials_include='-I'${SUNDIALS_INC_DIR} - echo "sundials include directory: " ${sundials_include} - echo "sundials library directory: " $SUNDIALS_LIB_DIR - sundials_lib_dir=$SUNDIALS_LIB_DIR - sundials_lib="-L$SUNDIALS_LIB_DIR -lsundials_cvodes -lsundials_ida -lsundials_nvecserial" - sundials_lib_dep="$SUNDIALS_LIB_DIR/libsundials_cvodes.a $SUNDIALS_LIB_DIR/libsundials_ida.a $SUNDIALS_LIB_DIR/libsundials_nvecserial.a" -# python tools/src/sundials_version.py $SUNDIALS_HOME -elif test "$SUNDIALS_VERSION" = "2.4"; then - cat >>confdefs.h <<\_ACEOF -#define HAS_SUNDIALS 1 -_ACEOF - - cat >>confdefs.h <<\_ACEOF -#define SUNDIALS_VERSION_24 1 -_ACEOF - - sundials_include='-I'${SUNDIALS_INC_DIR} - echo "sundials include directory: " ${sundials_include} - echo "sundials library directory: " $SUNDIALS_LIB_DIR - sundials_lib_dir=$SUNDIALS_LIB_DIR - sundials_lib="-L$SUNDIALS_LIB_DIR -lsundials_cvodes -lsundials_ida -lsundials_nvecserial" - sundials_lib_dep="$SUNDIALS_LIB_DIR/libsundials_cvodes.a $SUNDIALS_LIB_DIR/libsundials_ida.a $SUNDIALS_LIB_DIR/libsundials_nvecserial.a" -# python tools/src/sundials_version.py $SUNDIALS_HOME -else - echo "ERROR: unknown or unsupported sundials version #: $SUNDIALS_VERSION" - echo " Supported versions are 2.2, 2.3, and 2.4" - echo " Please fix or turn off the sundials option by setting USE_SUNDIALS to no" - use_sundials=0 -fi -fi - -if test ${use_sundials} = 0; then -echo "using CVODE... Sensitivity analysis disabled." -echo "-> To enable sensitivity analysis, install the SUNDIALS package with CVODES." -fi - - - - - - - - - - -######################################################### -# The Cantera Kernel -######################################################### -# -# DEBUG_MODE: Specify that additional code be compiled in -# that allows more debug printing where available. -# default = "n" -# -DEBUG_MODE=${DEBUG_MODE:="n"} -CANTERA_DEBUG_MODE=0 -if test "$DEBUG_MODE" = "y" -o "$DEBUG_MODE" = "Y" ; then - cat >>confdefs.h <<\_ACEOF -#define DEBUG_MODE 1 -_ACEOF - - CANTERA_DEBUG_MODE="1" -else - CANTERA_DEBUG_MODE="0" -fi - - -KERNEL='' -KERNEL_OBJ='' -BUILD_CK= - -NEED_CKREADER= -NEED_LAPACK= -#NEED_RECIPES= -NEED_MATH= -NEED_TPX= -NEED_F2C= -NEED_CVODE= -NEED_ZEROD= - -#if test "$ENABLE_THERMO" = "y"; then -# KERNEL=$KERNEL' 'thermo; -# KERNEL_OBJ=$KERNEL_OBJ' $(THERMO_OBJ)' -#fi - -if test "$WITH_METAL" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_METAL 1 -_ACEOF - - hdrs=$hdrs' MetalPhase.h' -fi - -if test "$WITH_SEMICONDUCTOR" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_SEMICONDUCTOR 1 -_ACEOF - - hdrs=$hdrs' SemiconductorPhase.h' - objs=$objs' SemiconductorPhase.o' -fi -if test "$WITH_ADSORBATE" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_ADSORBATE 1 -_ACEOF - - hdrs=$hdrs' AdsorbateThermo.h' -fi -if test "$WITH_STOICH_SUBSTANCE" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_STOICH_SUBSTANCE 1 -_ACEOF - - hdrs=$hdrs' StoichSubstance.h' - objs=$objs' StoichSubstance.o' -fi - -COMPILE_PURE_FLUIDS= -if test "$WITH_PURE_FLUIDS" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_PURE_FLUIDS 1 -_ACEOF - - COMPILE_PURE_FLUIDS=1 - hdrs=$hdrs' PureFluidPhase.h' - objs=$objs' PureFluidPhase.o' -fi - - -if test "$WITH_LATTICE_SOLID" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_LATTICE_SOLID 1 -_ACEOF - - hdrs=$hdrs' LatticeSolidPhase.h' - objs=$objs' LatticeSolidPhase.o' - hdrs=$hdrs' LatticePhase.h' - objs=$objs' LatticePhase.o' -fi -phase_object_files=$objs -phase_header_files=$hdrs - - - - -NEED_CATHERMO= -COMPILE_IDEAL_SOLUTIONS=0 -if test "$WITH_IDEAL_SOLUTIONS" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_IDEAL_SOLUTIONS 1 -_ACEOF - - NEED_CATHERMO=1 - COMPILE_IDEAL_SOLUTIONS=1 -fi - - -COMPILE_ELECTROLYTES=0 -if test "$WITH_ELECTROLYTES" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_ELECTROLYTES 1 -_ACEOF - - NEED_CATHERMO=1 - COMPILE_ELECTROLYTES=1 -fi - - - - -if test "$WITH_PRIME" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_PRIME 1 -_ACEOF - -fi - -COMPILE_KINETICS=0 -if test "$WITH_KINETICS" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_KINETICS 1 -_ACEOF - - COMPILE_KINETICS=1 -fi - - - -COMPILE_HETEROKIN=0 -if test "$WITH_HETERO_KINETICS" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_HETEROKINETICS 1 -_ACEOF - - COMPILE_HETEROKIN=1 -fi - - -COMPILE_RXNPATH=0 -if test "$WITH_REACTION_PATHS" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_REACTIONPATHS 1 -_ACEOF - - COMPILE_RXNPATH=1 -fi - - - -if test "$ENABLE_CK" = "y" ; then - BUILD_CK=1 - NEED_CKREADER=1 - KERNEL=$KERNEL' 'ck -fi - -NEED_TRANSPORT= -if test "$ENABLE_TRANSPORT" = "y" ; then - KERNEL=$KERNEL' 'trprops - NEED_LAPACK=1 - NEED_MATH=1 - NEED_TRANSPORT=1 -fi - -NEED_EQUIL= -if test "$ENABLE_EQUIL" = "y" ; then - KERNEL=$KERNEL' 'equil - KERNEL_OBJ=$KERNEL_OBJ' $(EQUIL_OBJ)' - NEED_EQUIL=1 - NEED_LAPACK=1 -fi - -WITH_REACTORS=0 -if test "$ENABLE_REACTORS" = "y" ; then - KERNEL=$KERNEL' 'reactor - NEED_CVODE=1 - NEED_ZEROD=1 - WITH_REACTORS=1 -fi - - -NEED_ONED= -if test "$ENABLE_FLOW1D" = "y" ; then - KERNEL=$KERNEL' 'flow1D - NEED_LAPACK=1 - NEED_MATH=1 - NEED_ONED=1 -fi - -if test "$ENABLE_TPX" = "y" ; then - KERNEL=$KERNEL' 'tpx - NEED_TPX=1 - cat >>confdefs.h <<\_ACEOF -#define INCL_PURE_FLUIDS 1 -_ACEOF - -fi - -NEED_SPECTRA=0 -if test "$WITH_SPECTRA" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_SPECTRA 1 -_ACEOF - - KERNEL=$KERNEL' 'spectra - NEED_SPECTRA=1 -fi - - - - - - -COMPILE_VCSNONIDEAL=0 -if test "$WITH_VCSNONIDEAL" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_VCSNONIDEAL 1 -_ACEOF - - COMPILE_VCSNONIDEAL=1 -fi - - -COMPILE_H298MODIFY_CAPABILITY=0 -if test "$WITH_H298MODIFY_CAPABILITY" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define H298MODIFY_CAPABILITY 1 -_ACEOF - - COMPILE_H298MODIFY_CAPABILITY=1 -fi - - - -if test "$WITH_HTML_LOG_FILES" = "y"; then - cat >>confdefs.h <<\_ACEOF -#define WITH_HTML_LOGS 1 -_ACEOF - -fi - -BOOST_INCLUDE= -BOOST_LIB= -if test "$BUILD_THREAD_SAFE" = "y" ; then - cat >>confdefs.h <<\_ACEOF -#define THREAD_SAFE_CANTERA 1 -_ACEOF - - BOOST_INCLUDE=-I$BOOST_INC_DIR - BOOST_LIB=$BOOST_THREAD_LIB -fi - - - - -# -# Report to the user what has been included/excluded from the compilation -# -echo " " -echo "Config SUMMARY OF INCLUDED/EXCLUDED CAPABILITIES:" - -if test "$CANTERA_DEBUG_MODE" = "1" ; then - echo " Cantera Debug Mode = ON" -else - echo " Cantera Debug Mode = OFF" -fi -if test "$BUILD_THREAD_SAFE" = "y" ; then - echo " Thread Safe = YES" -else - echo " Thread Safe = NO" -fi -if test "$NEED_TRANSPORT" = "1" ; then - echo " Calculation of Transport Props = ON" -else - echo " Calculation of Transport Props = OFF" -fi -if test "$NEED_ZEROD" = "1" ; then - echo " Zero-Dimensional Flow Reactors Models = ON" -else - echo " Zero-Dimensional Flow Reactors Models = OFF" -fi -if test "$NEED_ONED" = "1" ; then - echo " One Dimensional Flow Reactors Models = ON" -else - echo " One Dimensional Flow Reactors Models = OFF" -fi -if test "$NEED_TPX" = "1" ; then - echo " TPX Pure Fluid Capability = ON" -else - echo " TPX Pure Fluid Capability = OFF" -fi -if test "$NEED_SPECTRA" = "1" ; then - echo " Spectroscopy Capability = ON" -else - echo " Spectroscopy Capability = OFF" -fi -if test "$NEED_CKREADER" = "1" ; then - echo " Chemkin File Reader Capability = ON" -else - echo " Chemkin File Reader Capability = OFF" -fi -if test "$NEED_EQUIL" = "1" ; then - echo " MultiPhase Equilibrium Solver = ON" -else - echo " MultiPhase Equilibrium Solver = OFF" -fi -if test "$COMPILE_IDEAL_SOLUTIONS" = "1" ; then - echo " Ideal Solution Thermodynamics = ON" -else - echo " Ideal Solution Thermodynamics = OFF" -fi -if test "$COMPILE_ELECTROLYTES" = "1" ; then - echo " Electrolyte Thermodynamics = ON" -else - echo " Electrolyte Thermodynamics = OFF" -fi -if test "$COMPILE_KINETICS" = "1" ; then - echo " Homogeneous Kinetics = ON" -else - echo " Homogeneous Kinetics = OFF" -fi -if test "$COMPILE_HETEROKIN" = "1" ; then - echo " Heterogeneous Kinetics = ON" -else - echo " Heterogeneous Kinetics = OFF" -fi -if test "$COMPILE_RXNPATH" = "1" ; then - echo " Reaction Path Analysis = ON" -else - echo " Reaction Path Analysis = OFF" -fi -if test "$COMPILE_VCSNONIDEAL" = "1" ; then - echo " VCS NonIdeal equilibrium solver = ON" -else - echo " VCS NonIdeal equilibrium solver = OFF" -fi -if test "$COMPILE_H298MODIFY_CAPABILITY" = "1" ; then - echo " H298 Modify Capability = ON" -else - echo " H298 Modify Capability = OFF" -fi -echo " " - -echo " " -echo "Config SUMMARY OF INCLUDED/EXCLUDED THERMO MODELS:" - -if test "$WITH_IDEAL_SOLUTIONS" = "y" ; then - echo " Ideal Solution Phase Model = INCLUDED" -else - echo " Ideal Solution Phase Model = EXCLUDED" -fi -if test "$WITH_METAL" = "y" ; then - echo " Metal Phase Model = INCLUDED" -else - echo " Metal Phase Model = EXCLUDED" -fi -if test "$WITH_SEMICONDUCTOR" = "y" ; then - echo " Semiconductor Model = INCLUDED" -else - echo " Semiconductor Model = EXCLUDED" -fi -if test "$WITH_ADSORBATE" = "y" ; then - echo " Adsorbate Model = INCLUDED" -else - echo " Adsorbate Model = EXCLUDED" -fi -if test "$WITH_ELECTROLYTES" = "y" ; then - echo " Molality-based Electrolyte Models = INCLUDED" -else - echo " Molality-based Electrolyte Models = EXCLUDED" -fi -if test "$WITH_LATTICE_SOLID" = "y" ; then - echo " Lattice Solid based Models = INCLUDED" -else - echo " Lattice Solid based Models = EXCLUDED" -fi - - -echo " " - -########################################################## -# PURIFY -########################################################## - - -if test "x$PURIFY" != "x"; then - cat >>confdefs.h <<\_ACEOF -#define PURIFY_MODE 1 -_ACEOF - -fi - -######################################################## -# BLAS and LAPACK -######################################################## -# -# if lapack and blas libraries have been specified, then skip building the -# supplied libraries - - -build_lapack=0 -build_blas=0 -if test -z "$BLAS_LAPACK_LIBS"; then - BLAS_LAPACK_LIBS="-lctlapack -lctblas" - BLAS_LAPACK_DIR="$buildlib" - BLAS_LAPACK_LINK="-L$BLAS_LAPACK_DIR $BLAS_LAPACK_LIBS" - build_blas=1 - build_lapack=1 -else - BLAS_LAPACK_LINK="-L$BLAS_LAPACK_DIR $BLAS_LAPACK_LIBS" -fi - - - - - - - - - -# -# Stubout section for f2c versions of lapack: -# Define these variables, but turn them off in main version of code -# -build_with_f2c=0 -if test -n "$BUILD_WITH_F2C" ; then - if test "$BUILD_WITH_F2C" = "y" -o "$BUILD_WITH_F2C" = "Y" ; then - build_with_f2c=1 - elif test "$BUILD_WITH_F2C" = "n" -o "$BUILD_WITH_F2C" = "N" ; then - build_with_f2c=0 - elif test "$BUILD_WITH_F2C" = "default" ; then - if test "x$OS_IS_WIN" = "x1" ; then - build_with_f2c=1 - else - build_with_f2c=0 - fi - fi -fi - - -# -# Build a string of Canne if you need the f2c library at link time -# -> Note, Linux systems already have the g2c library -# added in, which is the same thing as our -# f2c library. However, the f2c library seems -# more reliable at resolving names -if test x"$build_with_f2c" = "x1" ; then - NEED_F2C=1 - case $ac_sys_system in - Linux) NEED_F2C= ;; - esac -fi -case $ac_sys_system in - Linux) NEED_F2C=1 ;; -esac - -# -# Create a variable build_f2c_lib that determines whether -# our f2c_lib will be built on a given platform -# -build_f2c_lib=0 -F2C_SYSTEMLIB= -if test -n "$NEED_F2C" ; then - build_f2c_lib=1 -else - case $ac_sys_system in - Linux) F2C_SYSTEMLIB="-lg2c" - esac -fi - - - -# -# LOCAL_LIBS: -# Build a string of Cantera libraries necessary to link -# Cantera applications -# -LOCAL_LIBS= -LOCAL_LIBS_DEP= -RAW_LIBS_DEP= -INSTALL_LIBS_DEP= - -if test -n "$INCL_USER_CODE" -then - LOCAL_LIBS=$LOCAL_LIBS' '-luser - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libuser.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libuser.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libuser.a -fi - -if test -n "$NEED_ONED" -then - LOCAL_LIBS=$LOCAL_LIBS' '-loneD - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/liboneD.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/liboneD.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'liboneD.a -fi - -if test -n "$NEED_ZEROD" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lzeroD - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libzeroD.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libzeroD.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libzeroD.a -fi - -LOCAL_LIBS=$LOCAL_LIBS' '-lequil -LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libequil.a -INSTALL_LIBS_DEP=$INTALL_LIBS_DEP' '$ct_libdir/libequil.a -RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libequil.a - -if test "$WITH_VCSNONIDEAL" = "y" ; then - LOCAL_LIBS=$LOCAL_LIBS' '-lVCSnonideal - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libVCSnonideal.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libVCSnonideal.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libVCSnonideal.a -fi - -if test -n "$COMPILE_KINETICS" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lkinetics - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libkinetics.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libkinetics.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libkinetics.a -fi - -if test -n "$NEED_TRANSPORT" -then - LOCAL_LIBS=$LOCAL_LIBS' '-ltransport - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libtransport.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libtransport.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libtransport.a -fi - -if test -n "$NEED_CATHERMO" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lthermo - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libthermo.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libthermo.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libthermo.a -fi - -LOCAL_LIBS=$LOCAL_LIBS' '-lctnumerics -LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctnumerics.a -INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctnumerics.a -RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctnumerics.a - -if test -n "$NEED_MATH" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lctmath - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctmath.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctmath.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctmath.a -fi - -if test -n "$NEED_TPX" -then - LOCAL_LIBS=$LOCAL_LIBS' '-ltpx - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libtpx.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libtpx.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libtpx.a -fi - -if test -n "$NEED_SPECTRA" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lctspectra - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctspectra.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctspectra.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctspectra.a -fi - -if test -n "$NEED_CKREADER" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lconverters - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libconverters.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libconverters.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libconverters.a -fi - -LOCAL_LIBS=$LOCAL_LIBS' '-lctbase -LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctbase.a -INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctbase.a -RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctbase.a - -CANTERA_CORE_LIBS=$LOCAL_LIBS -CANTERA_CORE_LIBS_DEP=$INSTALL_LIBS_DEP -CANTERA_CORE_LIBS_BT_DEP=$LOCAL_LIBS_DEP -CANTERA_CORE_LIBS_NAMES=$RAW_LIBS_DEP - -if test -n "$NEED_CVODE"; then - LOCAL_LIBS=$LOCAL_LIBS' '$CVODE_LIBS -fi - -if test -n "$NEED_LAPACK" -then - LOCAL_LIBS=$LOCAL_LIBS' '$BLAS_LAPACK_LIBS -fi - -if test -n "$NEED_F2C" -then - LOCAL_LIBS=$LOCAL_LIBS' '-lctf2c - LOCAL_LIBS_DEP=$LOCAL_LIBS_DEP' '$buildlib/libctf2c.a - INSTALL_LIBS_DEP=$INSTALL_LIBS_DEP' '$ct_libdir/libctf2c.a - RAW_LIBS_DEP=$RAW_LIBS_DEP' 'libctf2c.a -else - case $ac_sys_system in - Linux) LOCAL_LIBS=$LOCAL_LIBS' '-lg2c;; - esac -fi -# Darwin*) LOCAL_LIBS=$LOCAL_LIBS' '-lg2c;; - -LOCAL_LIB_DIRS= -if test -n "$BLAS_LAPACK_DIR" -then LOCAL_LIB_DIRS=$LOCAL_LIB_DIRS' -L'$BLAS_LAPACK_DIR -fi - -if test ${use_sundials} = 1; then -LOCAL_LIB_DIRS=$LOCAL_LIB_DIRS' -L'$SUNDIALS_LIB_DIR -fi - -if test ${BUILD_THREAD_SAFE} = "y"; then -LOCAL_LIBS=$LOCAL_LIBS' '-l$BOOST_LIB -LOCAL_LIB_DIRS=$LOCAL_LIB_DIRS' -L'$BOOST_LIB_DIR -else -BOOST_LIB_DIR="" -fi - - - - - - - - - - -#------------------------------------------------- -# Language Interfaces -#------------------------------------------------- -# This define is needed to account for the variability for how -# static variables in templated classes are defined. Right now -# this is only turned on for the SunPro compiler on solaris. -# in that system , you need to declare the static storage variable. -# with the following line in the include file -# -# template Cabinet* Cabinet::__storage; -# -# Note, on other systems that declaration is treated as a definition -# and this leads to multiple defines at link time. This config.h addition -# is needed because there were irreconcilable issues between -# the Solaris SunPro compiler and the cygwin gcc compiler. -# -case $ac_sys_system in - SunOS* ) - cat >>confdefs.h <<\_ACEOF -#define NEEDS_GENERIC_TEMPL_STATIC_DECL 1 -_ACEOF - - echo 'Turned on special handing of static definitions in templated classes' - ;; - * ) - ;; -esac - - - - - -BUILD_F90=1 -if test "x$BUILD_F90_INTERFACE" = "xn"; then - BUILD_F90=0 -fi - -BUILD_CLIB=1 - -#---------------------------------------------------------------- -# Python Interface -#---------------------------------------------------------------- - -BUILD_PYTHON=0 -if test "x$PYTHON_PACKAGE" = "xfull"; then - BUILD_PYTHON=2 -elif test "x$PYTHON_PACKAGE" = "xdefault"; then - BUILD_PYTHON=2 -elif test "x$PYTHON_PACKAGE" = "xminimal"; then - BUILD_PYTHON=1 -elif test "x$PYTHON_PACKAGE" = "xnone"; then - BUILD_PYTHON=0 -else - echo "ERROR: PYTHON_PACKAGE variable, " $PYTHON_PACKAGE ", is not understood. Use:" - echo " full, default, minimal, or none" - exit 1 -fi -if test $BUILD_PYTHON = 0 ; then -cat >>confdefs.h <<\_ACEOF -#define HAS_NO_PYTHON 1 -_ACEOF - -fi - -if test "$PYTHON_CMD" = "default" -o \ - "$PYTHON_CMD"x = "x"; then - for ac_prog in python2 python -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PYTHON_CMD+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $PYTHON_CMD in - [\\/]* | ?:[\\/]*) - ac_cv_path_PYTHON_CMD="$PYTHON_CMD" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PYTHON_CMD="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - ;; -esac -fi -PYTHON_CMD=$ac_cv_path_PYTHON_CMD - -if test -n "$PYTHON_CMD"; then - echo "$as_me:$LINENO: result: $PYTHON_CMD" >&5 -echo "${ECHO_T}$PYTHON_CMD" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$PYTHON_CMD" && break -done -test -n "$PYTHON_CMD" || PYTHON_CMD=""none"" - - if test "$PYTHON_CMD" = "none"; then - BUILD_PYTHON=0 - echo "Python not found. Only those portions of Cantera that" - echo "can be installed without Python will be installed." - else - echo "Python command set by configure to " $PYTHON_CMD - fi -else - echo "Python command preset to $PYTHON_CMD" -fi - - - -cat >>confdefs.h <<_ACEOF -#define PYTHON_EXE "$PYTHON_CMD" -_ACEOF - - -USE_NUMARRAY='y' - -if test "$USE_NUMERIC" = "y"; then -USE_NUMARRAY='n' -USE_NUMPY='n' -cat >>confdefs.h <<\_ACEOF -#define HAS_NUMERIC 1 -_ACEOF - -fi - -if test "$USE_NUMPY" = "y"; then -USE_NUMARRAY='n' -cat >>confdefs.h <<\_ACEOF -#define HAS_NUMPY 1 -_ACEOF - -fi - -if test "$USE_NUMARRAY" = "y"; then -cat >>confdefs.h <<\_ACEOF -#define HAS_NUMARRAY 1 -_ACEOF - -fi - -if test "$USE_NUMARRAY" = "y"; then - if test -n "$NUMARRAY_INC_DIR" ; then - echo "setting NUMARRAY_INC_DIR to $NUMARRAY_INC_DIR" - else - NUMARRAY_INC_DIR="" - if test -n "$NUMARRAY_HOME"; then - dir5="$NUMARRAY_HOME/include/python2.5" - if test -d $dir5 ; then - NUMARRAY_INC_DIR=$dir5 - else - dir4="$NUMARRAY_HOME/include/python2.4" - if test -d $dir4 ; then - NUMARRAY_INC_DIR=$dir4 - else - dir3="$NUMARRAY_HOME/include/python2.3" - if test -d $dir3 ; then - NUMARRAY_INC_DIR=$dir3 - else - dir1="$NUMARRAY_HOME/include/python" - if test -d $dir1 ; then - NUMARRAY_INC_DIR=$dir1 - else - echo "WARNING: NUMARRAY include dir $dir1 does not exist." - NUMARRAY_INC_DIR=$dir1 - fi - fi - fi - fi - echo "setting NUMARRAY_INC_DIR to $NUMARRAY_INC_DIR" - fi - fi -else - NUMARRAY_INC_DIR="" - NUMARRAY_HOME="" -fi - - -if test "$USE_NUMPY" = "y"; then - if test -n "$NUMPY_INC_DIR" ; then - echo "setting NUMPY_INC_DIR to $NUMPY_INC_DIR" - else - NUMPY_INC_DIR="" - if test -n "$NUMPY_HOME"; then - dir6="$NUMPY_HOME/include/python2.6" - if test -d $dir6 ; then - NUMPY_INC_DIR=$dir6 - else - dir5="$NUMPY_HOME/include/python2.5" - if test -d $dir5 ; then - NUMPY_INC_DIR=$dir5 - else - dir4="$NUMPY_HOME/include/python2.4" - if test -d $dir4 ; then - NUMPY_INC_DIR=$dir4 - else - dir3="$NUMPY_HOME/include/python2.3" - if test -d $dir3 ; then - NUMPY_INC_DIR=$dir3 - else - dir2="$NUMPY_HOME/include/python2.2" - if test -d $dir2 ; then - NUMPY_INC_DIR=$dir2 - else - dir1="$NUMPY_HOME/include/python" - if test -d $dir1 ; then - NUMPY_INC_DIR=$dir1 - else - echo "WARNING: NUMPY include dir $dir1 does not exist." - NUMPY_INC_DIR=$dir1 - fi - fi - fi - fi - fi - fi - echo "setting NUMPY_INC_DIR to $NUMPY_INC_DIR" - fi - fi -else - NUMPY_INC_DIR="" - NUMPY_HOME="" -fi - - - -# this fails, at least on a Mac. By default, numarray include files -# are installed in the include directory in the Python framework. This -# does not require setting NUMARRAY_INC_DIR, so testing that it is -# non-null is not a valid test of whether numarray is -# installed. Commented out 7/26/07 by DGG. -#if test $BUILD_PYTHON = 2 ; then -#if test x"$NUMARRAY_INC_DIR" = "x" ; then -#if test ! "$USE_NUMERIC" = "y"; then -# echo 'NUMARRAY is being used but we can find it' -# if test "x$PYTHON_PACKAGE" = "xdefault"; then -# echo 'setting python package build back to minimal' -# BUILD_PYTHON=1 -# fi -#fi -#fi -#fi - - - - - - -#-------------------------- -# CVS Tag -#-------------------------- -CVSTAG=`${PYTHON_CMD} tools/src/findtag.py ..` -if test "x$CVSTAG" = "x"; then -CVSTAG="HEAD" -fi - - - -# -# Matlab Interface -# - -BUILD_MATLAB=0 - -if test "$BUILD_MATLAB_TOOLBOX" != "n"; then - if test "$MATLAB_CMD" = "default" -o \ - "$MATLAB_CMD"x = "x"; then - # Extract the first word of "matlab", so it can be a program name with args. -set dummy matlab; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_MATLAB_CMD+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $MATLAB_CMD in - [\\/]* | ?:[\\/]*) - ac_cv_path_MATLAB_CMD="$MATLAB_CMD" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_MATLAB_CMD="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_path_MATLAB_CMD" && ac_cv_path_MATLAB_CMD=""none"" - ;; -esac -fi -MATLAB_CMD=$ac_cv_path_MATLAB_CMD - -if test -n "$MATLAB_CMD"; then - echo "$as_me:$LINENO: result: $MATLAB_CMD" >&5 -echo "${ECHO_T}$MATLAB_CMD" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - if test "$MATLAB_CMD" = "none"; then - MATLAB_CMD=`find /*/MATLAB*/bin/m* -name matlab` - fi - if test "$MATLAB_CMD" != "none" -a "x$MATLAB_CMD" != "x"; then - BUILD_MATLAB=1 - BUILD_CLIB=1 - #echo 'HKM -> BUILD turned on 1' - fi - else - echo "Matlab command preset to $MATLAB_CMD" - BUILD_MATLAB=1 - BUILD_CLIB=1 - fi - if test "x$OS_IS_WIN" = "x1"; then - MATLAB_CMD=`cygpath -a -m "$MATLAB_CMD" ` - echo "Windows MATLAB command: ${MATLAB_CMD}" - fi - - echo "$as_me:$LINENO: checking MATLAB ($MATLAB_CMD)" >&5 -echo $ECHO_N "checking MATLAB ($MATLAB_CMD)... $ECHO_C" >&6 - rm -f diary - cat >> testmat.m << EOF -diary; -try, mexext, catch, disp 'mex_unknown', end; -diary off; -exit; -EOF - ${MATLAB_CMD} -nojvm -nosplash -r testmat &> /dev/null -# &> /dev/null` - if test -f diary; then - BUILD_MATLAB=1 - echo $MATLAB_CMD - mex_ext=`grep mex* diary` - rm -f diary - else - BUILD_MATLAB=0 - echo 'failed!' - fi - rm -f testmat.m -else - echo "MATLAB interface will not be installed" - if test -z "$MATLAB_CMD"; then - MATLAB_CMD="matlab" - fi -fi - -if test "$mex_ext" = "mex_unknown"; then -case $ac_sys_system in - Darwin*) hardware=`uname -m`; - mex_ext=mexmac; - if test "$hardware" = "i386" ; then - mex_ext=mexmaci - fi;; - CYGWIN*) mex_ext=dll;; - Linux* ) mex_ext=mexglx;; -esac -fi - -if test "$BUILD_MATLAB" = "1"; then - echo " " - echo "---------------------------- MATLAB -------------------------------" - echo "MEX file extension: " $mex_ext - echo "MATLAB command: " $MATLAB_CMD - echo "--------------------------------------------------------------------" - echo " " -fi - - - - - -#------------------------------------------------- - -#----------------------------------------------------------------------- -# C++ Compilation -#----------------------------------------------------------------------- - - -export_name=$target - - -# -# PIC -# Compiler flag for specifying position independent code. -# This flag is needed in the compilation step -# for code that will go into a shared library. -# If Cantera is used in the Full python installation -# mode, this means that all of Cantera's code -# compiled into static libraries and all code linked into -# those routines, such as cvode and lapack, should be position independent -# and should be compiled with this flag. -# -if test -z "$PIC"; then - case $ac_sys_system in - SunOS* ) - PIC=' ';; - CYGWIN* ) - PIC=' ';; - * ) - PIC='-fPIC';; - esac -fi -echo 'checking for Position independent code command ... ' $PIC +am__api_version='1.11' -# -# This script will find and set the $INSTALL -# environmental variable, and set a substitution -# rule for that variable # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: @@ -3592,22 +2569,23 @@ echo 'checking for Position independent code command ... ' $PIC # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. -echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 -echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6 +# Reject install programs that cannot install multiple files. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 +$as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then -if test "${ac_cv_path_install+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +if test "${ac_cv_path_install+set}" = set; then : + $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - # Account for people who put trailing slashes in PATH elements. -case $as_dir/ in - ./ | .// | /cC/* | \ + # Account for people who put trailing slashes in PATH elements. +case $as_dir/ in #(( + ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ - ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ + ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. @@ -3615,7 +2593,7 @@ case $as_dir/ in # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then + if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. @@ -3625,30 +2603,43 @@ case $as_dir/ in # program-specific install script used by HP pwplus--don't use. : else - ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" - break 3 + rm -rf conftest.one conftest.two conftest.dir + echo one > conftest.one + echo two > conftest.two + mkdir conftest.dir + if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && + test -s conftest.one && test -s conftest.two && + test -s conftest.dir/conftest.one && + test -s conftest.dir/conftest.two + then + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" + break 3 + fi fi fi done done ;; esac -done + done +IFS=$as_save_IFS + +rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else - # As a last resort, use the slow shell script. We don't cache a - # path for INSTALL within a source directory, because that will + # As a last resort, use the slow shell script. Don't cache a + # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is - # removed, or if the path is relative. + # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi -echo "$as_me:$LINENO: result: $INSTALL" >&5 -echo "${ECHO_T}$INSTALL" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 +$as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. @@ -3658,1512 +2649,412 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -# -# HKM - -# However, recently, I've had problems with -# the default LINUX /usr/bin/install program wrt -# files/directories which are group writeable, but -# which are not owned by the current user (this happens -# in a group environment). The default config/install-sh -# doesn't have this problem. So, I changed the default -# install program to config/install-sh, which should work -# on all platforms since its a bourne shell script -# HKM 12/24/2009 - Ran into another problem with the new cygwin 1.7.1. -# THe install (and even cp -f in some cases) program will fail -# when an existing different file is in place. This occurs sometimes -# and I can not quite nail down when. However replacing -# the install command for cygwin. Note, install no longer -# needs to have a wildcard capability within Cantera. - -case $ac_sys_system in - CYGWIN* ) - INSTALL=${INSTALL_BIN:=config/install-sh} - echo 'INSTALL program has been set to ' $INSTALL;; +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 +$as_echo_n "checking whether build environment is sane... " >&6; } +# Just in case +sleep 1 +echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[\\\"\#\$\&\'\`$am_lf]*) + as_fn_error "unsafe absolute working directory name" "$LINENO" 5;; +esac +case $srcdir in + *[\\\"\#\$\&\'\`$am_lf\ \ ]*) + as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; esac -# -# precompile_headers still relevant? -# -precompile_headers=no -# -# CFLAGS: flags that get attached to the C compiler -# statement. AFLAGS are base flags that -# get added to compilers and loaders. -# FFLAGS: flags that get attached to the Fortran compiler -# statement. AFLAGS are base flags that -# get added to compilers and loaders. -# -# CXXFLAGS: Flags that get attached to the CXX compiler -# statement. AFLAGS are base flags that -# get added to compilers and loaders. -# -if test -z "$AFLAGS" ; then - AFLAGS=" " -fi -if test -z "$CXXFLAGS" ; then - CXXFLAGS="$AFLAGS" +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + rm -f conftest.file + if test "$*" != "X $srcdir/configure conftest.file" \ + && test "$*" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + as_fn_error "ls -t appears to fail. Make sure there is not a broken +alias in your environment" "$LINENO" 5 + fi + + test "$2" = conftest.file + ) +then + # Ok. + : else - CXXFLAGS="$CXXFLAGS"" ""$AFLAGS" -fi -if test -z "$CFLAGS" ; then - CFLAGS="$AFLAGS" -else - CFLAGS="$CFLAGS"" ""$AFLAGS" -fi -if test -z "$FFLAGS" ; then - FFLAGS="$AFLAGS" -else - FFLAGS="$FFLAGS"" ""$AFLAGS" + as_fn_error "newly created file is older than distributed files! +Check your system clock" "$LINENO" 5 fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" +# Use a double $ so make ignores it. +test "$program_suffix" != NONE && + program_transform_name="s&\$&$program_suffix&;$program_transform_name" +# Double any \ or $. +# By default was `s,x,x', remove it if useless. +ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' +program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` -if test "x$OS_IS_WIN" = "x1"; then - #CXX=cl.exe - #CC=cl.exe - #export CXX - ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CXX+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CXX"; then - ac_cv_prog_CXX="$CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` -fi -fi -CXX=$ac_cv_prog_CXX -if test -n "$CXX"; then - echo "$as_me:$LINENO: result: $CXX" >&5 -echo "${ECHO_T}$CXX" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$CXX" && break - done -fi -if test -z "$CXX"; then - ac_ct_CXX=$CXX - for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CXX"; then - ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CXX="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CXX=$ac_cv_prog_ac_ct_CXX -if test -n "$ac_ct_CXX"; then - echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 -echo "${ECHO_T}$ac_ct_CXX" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$ac_ct_CXX" && break -done -test -n "$ac_ct_CXX" || ac_ct_CXX="g++" - - CXX=$ac_ct_CXX -fi - - -# Provide some information about the compiler. -echo "$as_me:$LINENO:" \ - "checking for C++ compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - -echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6 -if test "${ac_cv_cxx_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_cxx_compiler_gnu=$ac_compiler_gnu - -fi -echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 -GXX=`test $ac_compiler_gnu = yes && echo yes` -ac_test_CXXFLAGS=${CXXFLAGS+set} -ac_save_CXXFLAGS=$CXXFLAGS -CXXFLAGS="-g" -echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 -echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_cxx_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cxx_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_cxx_g=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 -if test "$ac_test_CXXFLAGS" = set; then - CXXFLAGS=$ac_save_CXXFLAGS -elif test $ac_cv_prog_cxx_g = yes; then - if test "$GXX" = yes; then - CXXFLAGS="-g -O2" - else - CXXFLAGS="-g" - fi -else - if test "$GXX" = yes; then - CXXFLAGS="-O2" - else - CXXFLAGS= - fi -fi -for ac_declaration in \ - '' \ - 'extern "C" void std::exit (int) throw (); using std::exit;' \ - 'extern "C" void std::exit (int); using std::exit;' \ - 'extern "C" void exit (int) throw ();' \ - 'extern "C" void exit (int);' \ - 'void exit (int);' -do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -#include -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -continue -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -rm -f conftest* -if test -n "$ac_declaration"; then - echo '#ifdef __cplusplus' >>confdefs.h - echo $ac_declaration >>confdefs.h - echo '#endif' >>confdefs.h -fi - -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - CC=$ac_ct_CC -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - CC=$ac_ct_CC -else - CC="$ac_cv_prog_CC" -fi - -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$ac_ct_CC" && break -done - - CC=$ac_ct_CC -fi - -fi - - -test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&5 -echo "$as_me: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } - -# Provide some information about the compiler. -echo "$as_me:$LINENO:" \ - "checking for C compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - -echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 -if test "${ac_cv_c_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 -GCC=`test $ac_compiler_gnu = yes && echo yes` -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -CFLAGS="-g" -echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 -echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_cc_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cc_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_cc_g=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 -echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 -if test "${ac_cv_prog_cc_stdc+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_prog_cc_stdc=no -ac_save_CC=$CC -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -#include -#include -#include -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std1 is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std1. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -# Don't try gcc -ansi; that turns off useful extensions and -# breaks some systems' header files. -# AIX -qlanglvl=ansi -# Ultrix and OSF/1 -std1 -# HP-UX 10.20 and later -Ae -# HP-UX older versions -Aa -D_HPUX_SOURCE -# SVR4 -Xc -D__EXTENSIONS__ -for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cc_stdc=$ac_arg -break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext -done -rm -f conftest.$ac_ext conftest.$ac_objext -CC=$ac_save_CC - -fi - -case "x$ac_cv_prog_cc_stdc" in - x|xno) - echo "$as_me:$LINENO: result: none needed" >&5 -echo "${ECHO_T}none needed" >&6 ;; +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) - echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 - CC="$CC $ac_cv_prog_cc_stdc" ;; -esac - -# Some people use a C++ compiler to compile C. Since we use `exit', -# in C++ we need to declare it. In case someone uses the same compiler -# for both compiling C and C++ we need to have the C++ compiler decide -# the declaration of exit, since it's the most demanding environment. -cat >conftest.$ac_ext <<_ACEOF -#ifndef __cplusplus - choke me -#endif -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - for ac_declaration in \ - '' \ - 'extern "C" void std::exit (int) throw (); using std::exit;' \ - 'extern "C" void std::exit (int); using std::exit;' \ - 'extern "C" void exit (int) throw ();' \ - 'extern "C" void exit (int);' \ - 'void exit (int);' -do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -#include -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -continue + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - break +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -rm -f conftest* -if test -n "$ac_declaration"; then - echo '#ifdef __cplusplus' >>confdefs.h - echo $ac_declaration >>confdefs.h - echo '#endif' >>confdefs.h + am_missing_run= + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 +$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_STRIP+set}" = set; then : + $as_echo_n "(cached) " >&6 else - -# -# Determines the CXX compiler to use -# -export CXX -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CXX+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CXX"; then - ac_cv_prog_CXX="$CXX" # Let the user override the test. + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done - -fi -fi -CXX=$ac_cv_prog_CXX -if test -n "$CXX"; then - echo "$as_me:$LINENO: result: $CXX" >&5 -echo "${ECHO_T}$CXX" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$CXX" && break done +IFS=$as_save_IFS + fi -if test -z "$CXX"; then - ac_ct_CXX=$CXX - for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 +$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } +if test -z "$MKDIR_P"; then + if test "${ac_cv_path_mkdir+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in mkdir gmkdir; do + for ac_exec_ext in '' $ac_executable_extensions; do + { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue + case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( + 'mkdir (GNU coreutils) '* | \ + 'mkdir (coreutils) '* | \ + 'mkdir (fileutils) '4.1*) + ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext + break 3;; + esac + done + done + done +IFS=$as_save_IFS + +fi + + test -d ./--version && rmdir ./--version + if test "${ac_cv_path_mkdir+set}" = set; then + MKDIR_P="$ac_cv_path_mkdir -p" + else + # As a last resort, use the slow shell script. Don't cache a + # value for MKDIR_P within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + MKDIR_P="$ac_install_sh -d" + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 +$as_echo "$MKDIR_P" >&6; } + +mkdir_p="$MKDIR_P" +case $mkdir_p in + [\\/$]* | ?:[\\/]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +esac + +for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_AWK+set}" = set; then : + $as_echo_n "(cached) " >&6 else - if test -n "$ac_ct_CXX"; then - ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CXX="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AWK="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done + done +IFS=$as_save_IFS + +fi +fi +AWK=$ac_cv_prog_AWK +if test -n "$AWK"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 +$as_echo "$AWK" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AWK" && break done -fi -fi -ac_ct_CXX=$ac_cv_prog_ac_ct_CXX -if test -n "$ac_ct_CXX"; then - echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 -echo "${ECHO_T}$ac_ct_CXX" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } +set x ${MAKE-make} +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$ac_ct_CXX" && break -done -test -n "$ac_ct_CXX" || ac_ct_CXX="g++" - - CXX=$ac_ct_CXX -fi - - -# Provide some information about the compiler. -echo "$as_me:$LINENO:" \ - "checking for C++ compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - -echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6 -if test "${ac_cv_cxx_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no +# GNU make sometimes prints "make[1]: Entering...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_cxx_compiler_gnu=$ac_compiler_gnu - -fi -echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 -GXX=`test $ac_compiler_gnu = yes && echo yes` -ac_test_CXXFLAGS=${CXXFLAGS+set} -ac_save_CXXFLAGS=$CXXFLAGS -CXXFLAGS="-g" -echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 -echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_cxx_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + SET_MAKE= else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cxx_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_cxx_g=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 -if test "$ac_test_CXXFLAGS" = set; then - CXXFLAGS=$ac_save_CXXFLAGS -elif test $ac_cv_prog_cxx_g = yes; then - if test "$GXX" = yes; then - CXXFLAGS="-g -O2" - else - CXXFLAGS="-g" - fi + +rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. else - if test "$GXX" = yes; then - CXXFLAGS="-O2" - else - CXXFLAGS= + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null + +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + am__isrc=' -I$(srcdir)' + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi -for ac_declaration in \ - '' \ - 'extern "C" void std::exit (int) throw (); using std::exit;' \ - 'extern "C" void std::exit (int); using std::exit;' \ - 'extern "C" void exit (int) throw ();' \ - 'extern "C" void exit (int);' \ - 'void exit (int);' -do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -#include -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 -continue -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -rm -f conftest* -if test -n "$ac_declaration"; then - echo '#ifdef __cplusplus' >>confdefs.h - echo $ac_declaration >>confdefs.h - echo '#endif' >>confdefs.h +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi fi -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +# Define the identity of the package. + PACKAGE='cantera' + VERSION='1.8.0' + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE "$PACKAGE" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define VERSION "$VERSION" +_ACEOF + +# Some tools Automake needs. + +ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} + + +AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} + + +AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} + + +AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} + + +MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +# Always define AMTAR for backward compatibility. + +AMTAR=${AMTAR-"${am_missing_run}tar"} + +am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' + + + + + + +# snarf and provide versioning numbers +AX_SPLIT_VERSION +GENERIC_MAJOR_VERSION=$AX_MAJOR_VERSION +GENERIC_MINOR_VERSION=$AX_MINOR_VERSION +GENERIC_MICRO_VERSION=$AX_POINT_VERSION +GENERIC_VERSION=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION.$GENERIC_MICRO_VERSION +GENERIC_RELEASE=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION + + + + + + + +PACKAGE_DESCRIPTION="An object-oriented software toolkit for chemical kinetics, thermodynamics, and transport processes." + +PACKAGE_URL="http://code.google.com/p/cantera/" + + +# ------------------------------ +# Checks for required programs +# ------------------------------ ac_ext=c ac_cpp='$CPP $CPPFLAGS' @@ -5173,10 +3064,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. @@ -5186,35 +3077,37 @@ for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done +IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } fi + fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. @@ -5224,39 +3117,50 @@ for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done +IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } fi - CC=$ac_ct_CC + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. @@ -5266,77 +3170,37 @@ for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done +IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } fi -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 + fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - CC=$ac_ct_CC -else - CC="$ac_cv_prog_CC" -fi - fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. @@ -5347,18 +3211,19 @@ for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done +IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. @@ -5376,24 +3241,25 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } fi + fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then - for ac_prog in cl + for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. @@ -5403,39 +3269,41 @@ for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done +IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } fi + test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC - for ac_prog in cl + for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. @@ -5445,71 +3313,334 @@ for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done +IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } fi + test -n "$ac_ct_CC" && break done - CC=$ac_ct_CC + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi fi fi -test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&5 -echo "$as_me: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "no acceptable C compiler found in \$PATH +See \`config.log' for more details." "$LINENO" 5; } # Provide some information about the compiler. -echo "$as_me:$LINENO:" \ - "checking for C compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done -echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 -if test "${ac_cv_c_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} _ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" +# Try to create an executable without -o first, disregard a.out. +# It will help us diagnose broken compilers, and finding out an intuition +# of exeext. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 +$as_echo_n "checking whether the C compiler works... " >&6; } +ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` + +# The possible output files: +ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" + +ac_rmfiles= +for ac_file in $ac_files +do + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + * ) ac_rmfiles="$ac_rmfiles $ac_file";; + esac +done +rm -f $ac_rmfiles + +if { { ac_try="$ac_link_default" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. +# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' +# in a Makefile. We should not override ac_cv_exeext if it was cached, +# so that the user can short-circuit this test for compilers unknown to +# Autoconf. +for ac_file in $ac_files '' +do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) + ;; + [ab].out ) + # We found the default executable, but exeext='' is most + # certainly right. + break;; + *.* ) + if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + then :; else + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + fi + # We set ac_cv_exeext here because the later test for it is not + # safe: cross compilers may not add the suffix if given an `-o' + # argument, so we may need to know it at that point already. + # Even if this section looks crufty: it has the advantage of + # actually working. + break;; + * ) + break;; + esac +done +test "$ac_cv_exeext" = no && ac_cv_exeext= + +else + ac_file='' +fi +if test -z "$ac_file"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +$as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +{ as_fn_set_status 77 +as_fn_error "C compiler cannot create executables +See \`config.log' for more details." "$LINENO" 5; }; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 +$as_echo_n "checking for C compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 +$as_echo "$ac_file" >&6; } +ac_exeext=$ac_cv_exeext + +rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 +$as_echo_n "checking for suffix of executables... " >&6; } +if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # If both `conftest.exe' and `conftest' are `present' (well, observable) +# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +# work properly (i.e., refer to `conftest.exe'), while it won't with +# `rm'. +for ac_file in conftest.exe conftest conftest.*; do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + break;; + * ) break;; + esac +done +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details." "$LINENO" 5; } +fi +rm -f conftest conftest$ac_cv_exeext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 +$as_echo "$ac_cv_exeext" >&6; } + +rm -f conftest.$ac_ext +EXEEXT=$ac_cv_exeext +ac_exeext=$EXEEXT +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +FILE *f = fopen ("conftest.out", "w"); + return ferror (f) || fclose (f) != 0; + + ; + return 0; +} +_ACEOF +ac_clean_files="$ac_clean_files conftest.out" +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 +$as_echo_n "checking whether we are cross compiling... " >&6; } +if test "$cross_compiling" != yes; then + { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if { ac_try='./conftest$ac_cv_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "cannot run C compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details." "$LINENO" 5; } + fi + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 +$as_echo "$cross_compiling" >&6; } + +rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 +$as_echo_n "checking for suffix of object files... " >&6; } +if test "${ac_cv_objext+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.o conftest.obj +if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` + break;; + esac +done +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "cannot compute suffix of object files: cannot compile +See \`config.log' for more details." "$LINENO" 5; } +fi +rm -f conftest.$ac_cv_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 +$as_echo "$ac_cv_objext" >&6; } +OBJEXT=$ac_cv_objext +ac_objext=$OBJEXT +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 +$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } +if test "${ac_cv_c_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -5523,55 +3654,34 @@ main () return 0; } _ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then +if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no + ac_compiler_gnu=no fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi -echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 -GCC=`test $ac_compiler_gnu = yes && echo yes` +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 +$as_echo "$ac_cv_c_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GCC=yes +else + GCC= +fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS -CFLAGS="-g" -echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 -echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_cc_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 +$as_echo_n "checking whether $CC accepts -g... " >&6; } +if test "${ac_cv_prog_cc_g+set}" = set; then : + $as_echo_n "(cached) " >&6 else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -5582,39 +3692,49 @@ main () return 0; } _ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then +if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 + CFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ -ac_cv_prog_cc_g=no +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 +$as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then @@ -5630,18 +3750,14 @@ else CFLAGS= fi fi -echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 -echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 -if test "${ac_cv_prog_cc_stdc+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 +$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } +if test "${ac_cv_prog_cc_c89+set}" = set; then : + $as_echo_n "(cached) " >&6 else - ac_cv_prog_cc_stdc=no + ac_cv_prog_cc_c89=no ac_save_CC=$CC -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF +cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include @@ -5669,12 +3785,17 @@ static char *f (char * (*g) (char **, int), char **p, ...) /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std1 is added to get + as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std1. */ + that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) 'x' +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; @@ -5689,248 +3810,3693 @@ return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; return 0; } _ACEOF -# Don't try gcc -ansi; that turns off useful extensions and -# breaks some systems' header files. -# AIX -qlanglvl=ansi -# Ultrix and OSF/1 -std1 -# HP-UX 10.20 and later -Ae -# HP-UX older versions -Aa -D_HPUX_SOURCE -# SVR4 -Xc -D__EXTENSIONS__ -for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" - rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cc_stdc=$ac_arg -break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - + if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c89=$ac_arg fi -rm -f conftest.err conftest.$ac_objext +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break done -rm -f conftest.$ac_ext conftest.$ac_objext +rm -f conftest.$ac_ext CC=$ac_save_CC fi - -case "x$ac_cv_prog_cc_stdc" in - x|xno) - echo "$as_me:$LINENO: result: none needed" >&5 -echo "${ECHO_T}none needed" >&6 ;; +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c89" in + x) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +$as_echo "none needed" >&6; } ;; + xno) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +$as_echo "unsupported" >&6; } ;; *) - echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 - CC="$CC $ac_cv_prog_cc_stdc" ;; + CC="$CC $ac_cv_prog_cc_c89" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 +$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; +esac +if test "x$ac_cv_prog_cc_c89" != xno; then : + +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +DEPDIR="${am__leading_dot}deps" + +ac_config_commands="$ac_config_commands depfiles" + + +am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 +$as_echo_n "checking for style of include used by $am_make... " >&6; } +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from `make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 +$as_echo "$_am_result" >&6; } +rm -f confinc confmf + +# Check whether --enable-dependency-tracking was given. +if test "${enable_dependency_tracking+set}" = set; then : + enableval=$enable_dependency_tracking; +fi + +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' +fi + if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' +else + AMDEP_TRUE='#' + AMDEP_FALSE= +fi + + + +depcc="$CC" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +if test -z "$CXX"; then + if test -n "$CCC"; then + CXX=$CCC + else + if test -n "$ac_tool_prefix"; then + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CXX"; then + ac_cv_prog_CXX="$CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CXX=$ac_cv_prog_CXX +if test -n "$CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 +$as_echo "$CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CXX" && break + done +fi +if test -z "$CXX"; then + ac_ct_CXX=$CXX + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CXX"; then + ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CXX="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CXX=$ac_cv_prog_ac_ct_CXX +if test -n "$ac_ct_CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 +$as_echo "$ac_ct_CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CXX" && break +done + + if test "x$ac_ct_CXX" = x; then + CXX="g++" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CXX=$ac_ct_CXX + fi +fi + + fi +fi +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 +$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } +if test "${ac_cv_cxx_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_cxx_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 +$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GXX=yes +else + GXX= +fi +ac_test_CXXFLAGS=${CXXFLAGS+set} +ac_save_CXXFLAGS=$CXXFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 +$as_echo_n "checking whether $CXX accepts -g... " >&6; } +if test "${ac_cv_prog_cxx_g+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_save_cxx_werror_flag=$ac_cxx_werror_flag + ac_cxx_werror_flag=yes + ac_cv_prog_cxx_g=no + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +else + CXXFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + +else + ac_cxx_werror_flag=$ac_save_cxx_werror_flag + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cxx_werror_flag=$ac_save_cxx_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 +$as_echo "$ac_cv_prog_cxx_g" >&6; } +if test "$ac_test_CXXFLAGS" = set; then + CXXFLAGS=$ac_save_CXXFLAGS +elif test $ac_cv_prog_cxx_g = yes; then + if test "$GXX" = yes; then + CXXFLAGS="-g -O2" + else + CXXFLAGS="-g" + fi +else + if test "$GXX" = yes; then + CXXFLAGS="-O2" + else + CXXFLAGS= + fi +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CXX" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CXX_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CXX_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CXX_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } +CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then + am__fastdepCXX_TRUE= + am__fastdepCXX_FALSE='#' +else + am__fastdepCXX_TRUE='#' + am__fastdepCXX_FALSE= +fi + + +ac_ext=${ac_fc_srcext-f} +ac_compile='$FC -c $FCFLAGS $ac_fcflags_srcext conftest.$ac_ext >&5' +ac_link='$FC -o conftest$ac_exeext $FCFLAGS $LDFLAGS $ac_fcflags_srcext conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_fc_compiler_gnu +if test -n "$ac_tool_prefix"; then + for ac_prog in gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn xlf90 f90 pgf90 pghpf epcf90 g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_FC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$FC"; then + ac_cv_prog_FC="$FC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_FC="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +FC=$ac_cv_prog_FC +if test -n "$FC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FC" >&5 +$as_echo "$FC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$FC" && break + done +fi +if test -z "$FC"; then + ac_ct_FC=$FC + for ac_prog in gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn xlf90 f90 pgf90 pghpf epcf90 g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_FC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_FC"; then + ac_cv_prog_ac_ct_FC="$ac_ct_FC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_FC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_FC=$ac_cv_prog_ac_ct_FC +if test -n "$ac_ct_FC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_FC" >&5 +$as_echo "$ac_ct_FC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_FC" && break +done + + if test "x$ac_ct_FC" = x; then + FC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + FC=$ac_ct_FC + fi +fi + + +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done +rm -f a.out + +# If we don't use `.F' as extension, the preprocessor is not run on the +# input file. (Note that this only needs to work for GNU compilers.) +ac_save_ext=$ac_ext +ac_ext=F +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran compiler" >&5 +$as_echo_n "checking whether we are using the GNU Fortran compiler... " >&6; } +if test "${ac_cv_fc_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat > conftest.$ac_ext <<_ACEOF + program main +#ifndef __GNUC__ + choke me +#endif + + end +_ACEOF +if ac_fn_fc_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_fc_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_fc_compiler_gnu" >&5 +$as_echo "$ac_cv_fc_compiler_gnu" >&6; } +ac_ext=$ac_save_ext +ac_test_FCFLAGS=${FCFLAGS+set} +ac_save_FCFLAGS=$FCFLAGS +FCFLAGS= +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $FC accepts -g" >&5 +$as_echo_n "checking whether $FC accepts -g... " >&6; } +if test "${ac_cv_prog_fc_g+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + FCFLAGS=-g +cat > conftest.$ac_ext <<_ACEOF + program main + + end +_ACEOF +if ac_fn_fc_try_compile "$LINENO"; then : + ac_cv_prog_fc_g=yes +else + ac_cv_prog_fc_g=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_fc_g" >&5 +$as_echo "$ac_cv_prog_fc_g" >&6; } +if test "$ac_test_FCFLAGS" = set; then + FCFLAGS=$ac_save_FCFLAGS +elif test $ac_cv_prog_fc_g = yes; then + if test "x$ac_cv_fc_compiler_gnu" = xyes; then + FCFLAGS="-g -O2" + else + FCFLAGS="-g" + fi +else + if test "x$ac_cv_fc_compiler_gnu" = xyes; then + FCFLAGS="-O2" + else + FCFLAGS= + fi +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +ac_ext=f +ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' +ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_f77_compiler_gnu +if test -n "$ac_tool_prefix"; then + for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_F77+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$F77"; then + ac_cv_prog_F77="$F77" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_F77="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +F77=$ac_cv_prog_F77 +if test -n "$F77"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $F77" >&5 +$as_echo "$F77" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$F77" && break + done +fi +if test -z "$F77"; then + ac_ct_F77=$F77 + for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_F77+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_F77"; then + ac_cv_prog_ac_ct_F77="$ac_ct_F77" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_F77="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_F77=$ac_cv_prog_ac_ct_F77 +if test -n "$ac_ct_F77"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_F77" >&5 +$as_echo "$ac_ct_F77" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_F77" && break +done + + if test "x$ac_ct_F77" = x; then + F77="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + F77=$ac_ct_F77 + fi +fi + + +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran 77 compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done +rm -f a.out + +# If we don't use `.F' as extension, the preprocessor is not run on the +# input file. (Note that this only needs to work for GNU compilers.) +ac_save_ext=$ac_ext +ac_ext=F +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran 77 compiler" >&5 +$as_echo_n "checking whether we are using the GNU Fortran 77 compiler... " >&6; } +if test "${ac_cv_f77_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat > conftest.$ac_ext <<_ACEOF + program main +#ifndef __GNUC__ + choke me +#endif + + end +_ACEOF +if ac_fn_f77_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_f77_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_f77_compiler_gnu" >&5 +$as_echo "$ac_cv_f77_compiler_gnu" >&6; } +ac_ext=$ac_save_ext +ac_test_FFLAGS=${FFLAGS+set} +ac_save_FFLAGS=$FFLAGS +FFLAGS= +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $F77 accepts -g" >&5 +$as_echo_n "checking whether $F77 accepts -g... " >&6; } +if test "${ac_cv_prog_f77_g+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + FFLAGS=-g +cat > conftest.$ac_ext <<_ACEOF + program main + + end +_ACEOF +if ac_fn_f77_try_compile "$LINENO"; then : + ac_cv_prog_f77_g=yes +else + ac_cv_prog_f77_g=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_f77_g" >&5 +$as_echo "$ac_cv_prog_f77_g" >&6; } +if test "$ac_test_FFLAGS" = set; then + FFLAGS=$ac_save_FFLAGS +elif test $ac_cv_prog_f77_g = yes; then + if test "x$ac_cv_f77_compiler_gnu" = xyes; then + FFLAGS="-g -O2" + else + FFLAGS="-g" + fi +else + if test "x$ac_cv_f77_compiler_gnu" = xyes; then + FFLAGS="-O2" + else + FFLAGS= + fi +fi + +if test $ac_compiler_gnu = yes; then + G77=yes +else + G77= +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +case `pwd` in + *\ * | *\ *) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 +$as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; esac -# Some people use a C++ compiler to compile C. Since we use `exit', -# in C++ we need to declare it. In case someone uses the same compiler -# for both compiling C and C++ we need to have the C++ compiler decide -# the declaration of exit, since it's the most demanding environment. -cat >conftest.$ac_ext <<_ACEOF -#ifndef __cplusplus - choke me -#endif -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - for ac_declaration in \ - '' \ - 'extern "C" void std::exit (int) throw (); using std::exit;' \ - 'extern "C" void std::exit (int); using std::exit;' \ - 'extern "C" void exit (int) throw ();' \ - 'extern "C" void exit (int);' \ - 'void exit (int);' + + +macro_version='2.2.6b' +macro_revision='1.3017' + + + + + + + + + + + + + +ltmain="$ac_aux_dir/ltmain.sh" + +# Make sure we can run config.sub. +$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || + as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 +$as_echo_n "checking build system type... " >&6; } +if test "${ac_cv_build+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_build_alias=$build_alias +test "x$ac_build_alias" = x && + ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` +test "x$ac_build_alias" = x && + as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5 +ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || + as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 +$as_echo "$ac_cv_build" >&6; } +case $ac_cv_build in +*-*-*) ;; +*) as_fn_error "invalid value of canonical build" "$LINENO" 5;; +esac +build=$ac_cv_build +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_build +shift +build_cpu=$1 +build_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +build_os=$* +IFS=$ac_save_IFS +case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 +$as_echo_n "checking host system type... " >&6; } +if test "${ac_cv_host+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build +else + ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || + as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 +$as_echo "$ac_cv_host" >&6; } +case $ac_cv_host in +*-*-*) ;; +*) as_fn_error "invalid value of canonical host" "$LINENO" 5;; +esac +host=$ac_cv_host +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_host +shift +host_cpu=$1 +host_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +host_os=$* +IFS=$ac_save_IFS +case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 +$as_echo_n "checking for a sed that does not truncate output... " >&6; } +if test "${ac_cv_path_SED+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for ac_i in 1 2 3 4 5 6 7; do + ac_script="$ac_script$as_nl$ac_script" + done + echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed + { ac_script=; unset ac_script;} + if test -z "$SED"; then + ac_path_SED_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -#include -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue +# Check for GNU ac_path_SED and select it if it is found. + # Check for GNU $ac_path_SED +case `"$ac_path_SED" --version 2>&1` in +*GNU*) + ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo '' >> "conftest.nl" + "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_SED_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_SED="$ac_path_SED" + ac_path_SED_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac -continue -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - break + $ac_path_SED_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_SED"; then + as_fn_error "no acceptable sed could be found in \$PATH" "$LINENO" 5 + fi else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 + ac_cv_path_SED=$SED +fi fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 +$as_echo "$ac_cv_path_SED" >&6; } + SED="$ac_cv_path_SED" + rm -f conftest.sed + +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 +$as_echo_n "checking for grep that handles long lines and -e... " >&6; } +if test "${ac_cv_path_GREP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$GREP"; then + ac_path_GREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in grep ggrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue +# Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP +case `"$ac_path_GREP" --version 2>&1` in +*GNU*) + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_GREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_GREP="$ac_path_GREP" + ac_path_GREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_GREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_GREP"; then + as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_GREP=$GREP +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 +$as_echo "$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 +$as_echo_n "checking for egrep... " >&6; } +if test "${ac_cv_path_EGREP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 + then ac_cv_path_EGREP="$GREP -E" + else + if test -z "$EGREP"; then + ac_path_EGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in egrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue +# Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP +case `"$ac_path_EGREP" --version 2>&1` in +*GNU*) + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_EGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_EGREP="$ac_path_EGREP" + ac_path_EGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_EGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_EGREP"; then + as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_EGREP=$EGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 +$as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 +$as_echo_n "checking for fgrep... " >&6; } +if test "${ac_cv_path_FGREP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 + then ac_cv_path_FGREP="$GREP -F" + else + if test -z "$FGREP"; then + ac_path_FGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in fgrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue +# Check for GNU ac_path_FGREP and select it if it is found. + # Check for GNU $ac_path_FGREP +case `"$ac_path_FGREP" --version 2>&1` in +*GNU*) + ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'FGREP' >> "conftest.nl" + "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_FGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_FGREP="$ac_path_FGREP" + ac_path_FGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_FGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_FGREP"; then + as_fn_error "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_FGREP=$FGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 +$as_echo "$ac_cv_path_FGREP" >&6; } + FGREP="$ac_cv_path_FGREP" + + +test -z "$GREP" && GREP=grep + + + + + + + + + + + + + + + + + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 +$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | ?:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 +$as_echo_n "checking for GNU ld... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 +$as_echo_n "checking for non-GNU ld... " >&6; } +fi +if test "${lt_cv_path_LD+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &5 +$as_echo "$LD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi +test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 +$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } +if test "${lt_cv_prog_gnu_ld+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 &5 +$as_echo "$lt_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$lt_cv_prog_gnu_ld + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 +$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } +if test "${lt_cv_path_NM+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" +else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + : ${lt_cv_path_NM=no} +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 +$as_echo "$lt_cv_path_NM" >&6; } +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$ac_tool_prefix"; then + for ac_prog in "dumpbin -symbols" "link -dump -symbols" + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_DUMPBIN+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DUMPBIN"; then + ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi done -rm -f conftest* -if test -n "$ac_declaration"; then - echo '#ifdef __cplusplus' >>confdefs.h - echo $ac_declaration >>confdefs.h - echo '#endif' >>confdefs.h -fi + done +IFS=$as_save_IFS +fi +fi +DUMPBIN=$ac_cv_prog_DUMPBIN +if test -n "$DUMPBIN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 +$as_echo "$DUMPBIN" >&6; } else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$DUMPBIN" && break + done +fi +if test -z "$DUMPBIN"; then + ac_ct_DUMPBIN=$DUMPBIN + for ac_prog in "dumpbin -symbols" "link -dump -symbols" +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_DUMPBIN+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DUMPBIN"; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +fi +ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN +if test -n "$ac_ct_DUMPBIN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 +$as_echo "$ac_ct_DUMPBIN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_DUMPBIN" && break +done + + if test "x$ac_ct_DUMPBIN" = x; then + DUMPBIN=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DUMPBIN=$ac_ct_DUMPBIN + fi +fi + + + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" + fi +fi +test -z "$NM" && NM=nm -echo "$as_me:$LINENO: checking for ability to precompile headers" >&5 -echo $ECHO_N "checking for ability to precompile headers... $ECHO_C" >&6 -if test -n "$GCC"; then - msg=`rm -f *h.gch; $CXX testpch.h &> /dev/null` - if test -f testpch.h.gch; then - precompile_headers=yes - cat >>confdefs.h <<\_ACEOF -#define USE_PCH 1 + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 +$as_echo_n "checking the name lister ($NM) interface... " >&6; } +if test "${lt_cv_nm_interface+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:5521: $ac_compile\"" >&5) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&5 + (eval echo "\"\$as_me:5524: $NM \\\"conftest.$ac_objext\\\"\"" >&5) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&5 + (eval echo "\"\$as_me:5527: output\"" >&5) + cat conftest.out >&5 + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest* +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 +$as_echo "$lt_cv_nm_interface" >&6; } + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 +$as_echo_n "checking whether ln -s works... " >&6; } +LN_S=$as_ln_s +if test "$LN_S" = "ln -s"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 +$as_echo "no, using $LN_S" >&6; } +fi + +# find the maximum length of command line arguments +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 +$as_echo_n "checking the maximum length of command line arguments... " >&6; } +if test "${lt_cv_sys_max_cmd_len+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + i=0 + teststring="ABCD" + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test "X"`$SHELL $0 --fallback-echo "X$teststring$teststring" 2>/dev/null` \ + = "XX$teststring$teststring"; } >/dev/null 2>&1 && + test $i != 17 # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac + +fi + +if test -n $lt_cv_sys_max_cmd_len ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 +$as_echo "$lt_cv_sys_max_cmd_len" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 +$as_echo "none" >&6; } +fi +max_cmd_len=$lt_cv_sys_max_cmd_len + + + + + + +: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 +$as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 +$as_echo "$xsi_shell" >&6; } + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 +$as_echo_n "checking whether the shell understands \"+=\"... " >&6; } +lt_shell_append=no +( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 +$as_echo "$lt_shell_append" >&6; } + + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi + + + + + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 +$as_echo_n "checking for $LD option to reload object files... " >&6; } +if test "${lt_cv_ld_reload_flag+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_reload_flag='-r' +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 +$as_echo "$lt_cv_ld_reload_flag" >&6; } +reload_flag=$lt_cv_ld_reload_flag +case $reload_flag in +"" | " "*) ;; +*) reload_flag=" $reload_flag" ;; +esac +reload_cmds='$LD$reload_flag -o $output$reload_objs' +case $host_os in + darwin*) + if test "$GCC" = yes; then + reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' + else + reload_cmds='$LD$reload_flag -o $output$reload_objs' + fi + ;; +esac + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. +set dummy ${ac_tool_prefix}objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_OBJDUMP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OBJDUMP"; then + ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OBJDUMP=$ac_cv_prog_OBJDUMP +if test -n "$OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 +$as_echo "$OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OBJDUMP"; then + ac_ct_OBJDUMP=$OBJDUMP + # Extract the first word of "objdump", so it can be a program name with args. +set dummy objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OBJDUMP"; then + ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_OBJDUMP="objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP +if test -n "$ac_ct_OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 +$as_echo "$ac_ct_OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OBJDUMP" = x; then + OBJDUMP="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OBJDUMP=$ac_ct_OBJDUMP + fi +else + OBJDUMP="$ac_cv_prog_OBJDUMP" +fi + +test -z "$OBJDUMP" && OBJDUMP=objdump + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 +$as_echo_n "checking how to recognize dependent libraries... " >&6; } +if test "${lt_cv_deplibs_check_method+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_file_magic_cmd='$MAGIC_CMD' +lt_cv_file_magic_test_file= +lt_cv_deplibs_check_method='unknown' +# Need to set the preceding variable on all platforms that support +# interlibrary dependencies. +# 'none' -- dependencies not supported. +# `unknown' -- same as none, but documents that we really don't know. +# 'pass_all' -- all dependencies passed with no checks. +# 'test_compile' -- check by making test program. +# 'file_magic [[regex]]' -- check by looking for files in library path +# which responds to the $file_magic_cmd with a given extended regex. +# If you have `file' or equivalent on your system and you're not sure +# whether `pass_all' will *always* work, you probably want this one. + +case $host_os in +aix[4-9]*) + lt_cv_deplibs_check_method=pass_all + ;; + +beos*) + lt_cv_deplibs_check_method=pass_all + ;; + +bsdi[45]*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' + lt_cv_file_magic_cmd='/usr/bin/file -L' + lt_cv_file_magic_test_file=/shlib/libc.so + ;; + +cygwin*) + # func_win32_libid is a shell function defined in ltmain.sh + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + ;; + +mingw* | pw32*) + # Base MSYS/MinGW do not provide the 'file' command needed by + # func_win32_libid shell function, so use a weaker test based on 'objdump', + # unless we find 'file', for example because we are cross-compiling. + if ( file / ) >/dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +cegcc) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]' + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[3-9]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be Linux ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 +$as_echo "$lt_cv_deplibs_check_method" >&6; } +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + + + + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. +set dummy ${ac_tool_prefix}ar; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_AR+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AR"; then + ac_cv_prog_AR="$AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AR="${ac_tool_prefix}ar" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AR=$ac_cv_prog_AR +if test -n "$AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 +$as_echo "$AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_AR"; then + ac_ct_AR=$AR + # Extract the first word of "ar", so it can be a program name with args. +set dummy ar; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_AR+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_AR"; then + ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_AR="ar" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_AR=$ac_cv_prog_ac_ct_AR +if test -n "$ac_ct_AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 +$as_echo "$ac_ct_AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_AR" = x; then + AR="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + AR=$ac_ct_AR + fi +else + AR="$ac_cv_prog_AR" +fi + +test -z "$AR" && AR=ar +test -z "$AR_FLAGS" && AR_FLAGS=cru + + + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_STRIP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +test -z "$STRIP" && STRIP=: + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. +set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_RANLIB+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$RANLIB"; then + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +RANLIB=$ac_cv_prog_RANLIB +if test -n "$RANLIB"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 +$as_echo "$RANLIB" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_RANLIB"; then + ac_ct_RANLIB=$RANLIB + # Extract the first word of "ranlib", so it can be a program name with args. +set dummy ranlib; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_RANLIB"; then + ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_RANLIB="ranlib" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB +if test -n "$ac_ct_RANLIB"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 +$as_echo "$ac_ct_RANLIB" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_RANLIB" = x; then + RANLIB=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + RANLIB=$ac_ct_RANLIB + fi +else + RANLIB="$ac_cv_prog_RANLIB" +fi + +test -z "$RANLIB" && RANLIB=: + + + + + + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + + +# Check for command to grab the raw symbol name followed by C symbol from nm. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 +$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } +if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[BCDEGRST]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([_A-Za-z][_A-Za-z0-9]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[BCDT]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[ABCDGISTW]' + ;; +hpux*) + if test "$host_cpu" = ia64; then + symcode='[ABCDEGRST]' + fi + ;; +irix* | nonstopux*) + symcode='[BCDEGRST]' + ;; +osf*) + symcode='[BCDEGQRST]' + ;; +solaris*) + symcode='[BDRT]' + ;; +sco3.2v5*) + symcode='[DT]' + ;; +sysv4.2uw2*) + symcode='[DT]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[ABDT]' + ;; +sysv4) + symcode='[DFNSTU]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[ABCDGIRSTW]' ;; +esac + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK '"\ +" {last_section=section; section=\$ 3};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + # Now try to grab the symbols. + nlist=conftest.nm + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\""; } >&5 + (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +const struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_save_LIBS="$LIBS" + lt_save_CFLAGS="$CFLAGS" + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS="$lt_save_LIBS" + CFLAGS="$lt_save_CFLAGS" + else + echo "cannot find nm_test_func in $nlist" >&5 + fi + else + echo "cannot find nm_test_var in $nlist" >&5 + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 + fi + else + echo "$progname: failed program was:" >&5 + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done + +fi + +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 +$as_echo "failed" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 +$as_echo "ok" >&6; } +fi + + + + + + + + + + + + + + + + + + + + + + + +# Check whether --enable-libtool-lock was given. +if test "${enable_libtool_lock+set}" = set; then : + enableval=$enable_libtool_lock; +fi + +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" + ;; + *ELF-64*) + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out which ABI we are using. + echo '#line 6733 "configure"' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_i386" + ;; + ppc64-*linux*|powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + ppc*-*linux*|powerpc*-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 +$as_echo_n "checking whether the C compiler needs -belf... " >&6; } +if test "${lt_cv_cc_needs_belf+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} _ACEOF - - fi -fi -echo "$as_me:$LINENO: result: ${precompile_headers}" >&5 -echo "${ECHO_T}${precompile_headers}" >&6 -# End of the OS_IS_WIN section -fi - -# Sizes of various common basic types -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -echo "$as_me:$LINENO: checking how to run the C++ preprocessor" >&5 -echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6 -if test -z "$CXXCPP"; then - if test "${ac_cv_prog_CXXCPP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_cc_needs_belf=yes else - # Double quotes because CXXCPP needs to be expanded - for CXXCPP in "$CXX -E" "/lib/cpp" + lt_cv_cc_needs_belf=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 +$as_echo "$lt_cv_cc_needs_belf" >&6; } + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; +sparc*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) LD="${LD-ld} -m elf64_sparc" ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks="$enable_libtool_lock" + + + case $host_os in + rhapsody* | darwin*) + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. +set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_DSYMUTIL+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DSYMUTIL"; then + ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DSYMUTIL=$ac_cv_prog_DSYMUTIL +if test -n "$DSYMUTIL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 +$as_echo "$DSYMUTIL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DSYMUTIL"; then + ac_ct_DSYMUTIL=$DSYMUTIL + # Extract the first word of "dsymutil", so it can be a program name with args. +set dummy dsymutil; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DSYMUTIL"; then + ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL +if test -n "$ac_ct_DSYMUTIL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 +$as_echo "$ac_ct_DSYMUTIL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DSYMUTIL" = x; then + DSYMUTIL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DSYMUTIL=$ac_ct_DSYMUTIL + fi +else + DSYMUTIL="$ac_cv_prog_DSYMUTIL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. +set dummy ${ac_tool_prefix}nmedit; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_NMEDIT+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NMEDIT"; then + ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +NMEDIT=$ac_cv_prog_NMEDIT +if test -n "$NMEDIT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 +$as_echo "$NMEDIT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_NMEDIT"; then + ac_ct_NMEDIT=$NMEDIT + # Extract the first word of "nmedit", so it can be a program name with args. +set dummy nmedit; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_NMEDIT"; then + ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_NMEDIT="nmedit" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT +if test -n "$ac_ct_NMEDIT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 +$as_echo "$ac_ct_NMEDIT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_NMEDIT" = x; then + NMEDIT=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + NMEDIT=$ac_ct_NMEDIT + fi +else + NMEDIT="$ac_cv_prog_NMEDIT" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. +set dummy ${ac_tool_prefix}lipo; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_LIPO+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$LIPO"; then + ac_cv_prog_LIPO="$LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_LIPO="${ac_tool_prefix}lipo" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +LIPO=$ac_cv_prog_LIPO +if test -n "$LIPO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 +$as_echo "$LIPO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_LIPO"; then + ac_ct_LIPO=$LIPO + # Extract the first word of "lipo", so it can be a program name with args. +set dummy lipo; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_LIPO+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_LIPO"; then + ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_LIPO="lipo" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO +if test -n "$ac_ct_LIPO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 +$as_echo "$ac_ct_LIPO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_LIPO" = x; then + LIPO=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + LIPO=$ac_ct_LIPO + fi +else + LIPO="$ac_cv_prog_LIPO" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_OTOOL+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OTOOL"; then + ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_OTOOL="${ac_tool_prefix}otool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OTOOL=$ac_cv_prog_OTOOL +if test -n "$OTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 +$as_echo "$OTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL"; then + ac_ct_OTOOL=$OTOOL + # Extract the first word of "otool", so it can be a program name with args. +set dummy otool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_OTOOL+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OTOOL"; then + ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_OTOOL="otool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL +if test -n "$ac_ct_OTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 +$as_echo "$ac_ct_OTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OTOOL" = x; then + OTOOL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OTOOL=$ac_ct_OTOOL + fi +else + OTOOL="$ac_cv_prog_OTOOL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool64; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_OTOOL64+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OTOOL64"; then + ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OTOOL64=$ac_cv_prog_OTOOL64 +if test -n "$OTOOL64"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 +$as_echo "$OTOOL64" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL64"; then + ac_ct_OTOOL64=$OTOOL64 + # Extract the first word of "otool64", so it can be a program name with args. +set dummy otool64; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_OTOOL64+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OTOOL64"; then + ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_OTOOL64="otool64" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 +if test -n "$ac_ct_OTOOL64"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 +$as_echo "$ac_ct_OTOOL64" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OTOOL64" = x; then + OTOOL64=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OTOOL64=$ac_ct_OTOOL64 + fi +else + OTOOL64="$ac_cv_prog_OTOOL64" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 +$as_echo_n "checking for -single_module linker flag... " >&6; } +if test "${lt_cv_apple_cc_single_mod+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&5 + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&5 + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 +$as_echo "$lt_cv_apple_cc_single_mod" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 +$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } +if test "${lt_cv_ld_exported_symbols_list+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_ld_exported_symbols_list=yes +else + lt_cv_ld_exported_symbols_list=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 +$as_echo "$lt_cv_ld_exported_symbols_list" >&6; } + case $host_os in + rhapsody* | darwin1.[012]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[91]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[012]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + if test "$DSYMUTIL" != ":"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 +$as_echo_n "checking how to run the C preprocessor... " >&6; } +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then + CPP= +fi +if test -z "$CPP"; then + if test "${ac_cv_prog_CPP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + # Double quotes because CPP needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false -for ac_cxx_preproc_warn_flag in '' yes +for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. @@ -5938,11 +7504,7 @@ do # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include @@ -5951,68 +7513,24 @@ cat >>conftest.$ac_ext <<_ACEOF #endif Syntax error _ACEOF -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 - (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null; then - if test -s conftest.err; then - ac_cpp_err=$ac_cxx_preproc_warn_flag - ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag - else - ac_cpp_err= - fi -else - ac_cpp_err=yes -fi -if test -z "$ac_cpp_err"; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 +if ac_fn_c_try_cpp "$LINENO"; then : +else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext - # OK, works on sane cases. Now check whether non-existent headers + # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 - (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null; then - if test -s conftest.err; then - ac_cpp_err=$ac_cxx_preproc_warn_flag - ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag - else - ac_cpp_err= - fi -else - ac_cpp_err=yes -fi -if test -z "$ac_cpp_err"; then +if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - # Passes both tests. ac_preproc_ok=: break @@ -6022,22 +7540,22 @@ rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then +if $ac_preproc_ok; then : break fi done - ac_cv_prog_CXXCPP=$CXXCPP + ac_cv_prog_CPP=$CPP fi - CXXCPP=$ac_cv_prog_CXXCPP + CPP=$ac_cv_prog_CPP else - ac_cv_prog_CXXCPP=$CXXCPP + ac_cv_prog_CPP=$CPP fi -echo "$as_me:$LINENO: result: $CXXCPP" >&5 -echo "${ECHO_T}$CXXCPP" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 +$as_echo "$CPP" >&6; } ac_preproc_ok=false -for ac_cxx_preproc_warn_flag in '' yes +for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. @@ -6045,11 +7563,7 @@ do # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include @@ -6058,68 +7572,24 @@ cat >>conftest.$ac_ext <<_ACEOF #endif Syntax error _ACEOF -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 - (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null; then - if test -s conftest.err; then - ac_cpp_err=$ac_cxx_preproc_warn_flag - ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag - else - ac_cpp_err= - fi -else - ac_cpp_err=yes -fi -if test -z "$ac_cpp_err"; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 +if ac_fn_c_try_cpp "$LINENO"; then : +else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext - # OK, works on sane cases. Now check whether non-existent headers + # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 - (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null; then - if test -s conftest.err; then - ac_cpp_err=$ac_cxx_preproc_warn_flag - ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag - else - ac_cpp_err= - fi -else - ac_cpp_err=yes -fi -if test -z "$ac_cpp_err"; then +if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - # Passes both tests. ac_preproc_ok=: break @@ -6129,48 +7599,28 @@ rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then - : +if $ac_preproc_ok; then : + else - { { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check -See \`config.log' for more details." >&5 -echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details." "$LINENO" 5; } fi -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu -echo "$as_me:$LINENO: checking for egrep" >&5 -echo $ECHO_N "checking for egrep... $ECHO_C" >&6 -if test "${ac_cv_prog_egrep+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 +$as_echo_n "checking for ANSI C header files... " >&6; } +if test "${ac_cv_header_stdc+set}" = set; then : + $as_echo_n "(cached) " >&6 else - if echo a | (grep -E '(a|b)') >/dev/null 2>&1 - then ac_cv_prog_egrep='grep -E' - else ac_cv_prog_egrep='egrep' - fi -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5 -echo "${ECHO_T}$ac_cv_prog_egrep" >&6 - EGREP=$ac_cv_prog_egrep - - -echo "$as_me:$LINENO: checking for ANSI C header files" >&5 -echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 -if test "${ac_cv_header_stdc+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include @@ -6185,51 +7635,23 @@ main () return 0; } _ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then +if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_header_stdc=no + ac_cv_header_stdc=no fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then - : + $EGREP "memchr" >/dev/null 2>&1; then : + else ac_cv_header_stdc=no fi @@ -6239,18 +7661,14 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then - : + $EGREP "free" >/dev/null 2>&1; then : + else ac_cv_header_stdc=no fi @@ -6260,16 +7678,13 @@ fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then + if test "$cross_compiling" = yes; then : : else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include +#include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) @@ -6289,109 +7704,40 @@ main () for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) - exit(2); - exit (0); + return 2; + return 0; } _ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 +if ac_fn_c_try_run "$LINENO"; then : -( exit $ac_status ) -ac_cv_header_stdc=no +else + ac_cv_header_stdc=no fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + fi fi -fi -echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 -echo "${ECHO_T}$ac_cv_header_stdc" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 +$as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then -cat >>confdefs.h <<\_ACEOF -#define STDC_HEADERS 1 -_ACEOF +$as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. - - - - - - - - - for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h -do -as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:$LINENO: checking for $ac_header" >&5 -echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 -if eval "test \"\${$as_ac_Header+set}\" = set"; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - -#include <$ac_header> -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - eval "$as_ac_Header=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -eval "$as_ac_Header=no" -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 -echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 -if test `eval echo '${'$as_ac_Header'}'` = yes; then +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default +" +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi @@ -6399,3576 +7745,561 @@ fi done -echo "$as_me:$LINENO: checking for int" >&5 -echo $ECHO_N "checking for int... $ECHO_C" >&6 -if test "${ac_cv_type_int+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ +for ac_header in dlfcn.h +do : + ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default +" +if test "x$ac_cv_header_dlfcn_h" = x""yes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_DLFCN_H 1 _ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -if ((int *) 0) - return 0; -if (sizeof (int)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_type_int=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 -ac_cv_type_int=no fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_type_int" >&5 -echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:$LINENO: checking size of int" >&5 -echo $ECHO_N "checking size of int... $ECHO_C" >&6 -if test "${ac_cv_sizeof_int+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$ac_cv_type_int" = yes; then - # The cast to unsigned long works around a bug in the HP C Compiler - # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects - # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. - # This bug is HP SR number 8606223364. - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (int))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (int))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (int))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (int))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo= ac_hi= -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (int))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr '(' $ac_mid ')' + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done -case $ac_lo in -?*) ac_cv_sizeof_int=$ac_lo;; -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (int), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (int), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } ;; -esac -else - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -long longval () { return (long) (sizeof (int)); } -unsigned long ulongval () { return (long) (sizeof (int)); } -#include -#include -int -main () -{ - FILE *f = fopen ("conftest.val", "w"); - if (! f) - exit (1); - if (((long) (sizeof (int))) < 0) - { - long i = longval (); - if (i != ((long) (sizeof (int)))) - exit (1); - fprintf (f, "%ld\n", i); - } + + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +if test -z "$CXX"; then + if test -n "$CCC"; then + CXX=$CCC else - { - unsigned long i = ulongval (); - if (i != ((long) (sizeof (int)))) - exit (1); - fprintf (f, "%lu\n", i); - } - exit (ferror (f) || fclose (f) != 0); - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_int=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (int), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (int), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -rm -f conftest.val -else - ac_cv_sizeof_int=0 -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_sizeof_int" >&5 -echo "${ECHO_T}$ac_cv_sizeof_int" >&6 -cat >>confdefs.h <<_ACEOF -#define SIZEOF_INT $ac_cv_sizeof_int -_ACEOF - - -echo "$as_me:$LINENO: checking for long" >&5 -echo $ECHO_N "checking for long... $ECHO_C" >&6 -if test "${ac_cv_type_long+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -if ((long *) 0) - return 0; -if (sizeof (long)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_type_long=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_type_long=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_type_long" >&5 -echo "${ECHO_T}$ac_cv_type_long" >&6 - -echo "$as_me:$LINENO: checking size of long" >&5 -echo $ECHO_N "checking size of long... $ECHO_C" >&6 -if test "${ac_cv_sizeof_long+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$ac_cv_type_long" = yes; then - # The cast to unsigned long works around a bug in the HP C Compiler - # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects - # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. - # This bug is HP SR number 8606223364. - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (long))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (long))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (long))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (long))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo= ac_hi= -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (long))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr '(' $ac_mid ')' + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_long=$ac_lo;; -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (long), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (long), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } ;; -esac -else - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -long longval () { return (long) (sizeof (long)); } -unsigned long ulongval () { return (long) (sizeof (long)); } -#include -#include -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - exit (1); - if (((long) (sizeof (long))) < 0) - { - long i = longval (); - if (i != ((long) (sizeof (long)))) - exit (1); - fprintf (f, "%ld\n", i); - } - else - { - unsigned long i = ulongval (); - if (i != ((long) (sizeof (long)))) - exit (1); - fprintf (f, "%lu\n", i); - } - exit (ferror (f) || fclose (f) != 0); - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_long=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (long), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (long), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -rm -f conftest.val -else - ac_cv_sizeof_long=0 -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_sizeof_long" >&5 -echo "${ECHO_T}$ac_cv_sizeof_long" >&6 -cat >>confdefs.h <<_ACEOF -#define SIZEOF_LONG $ac_cv_sizeof_long -_ACEOF - - -echo "$as_me:$LINENO: checking for void *" >&5 -echo $ECHO_N "checking for void *... $ECHO_C" >&6 -if test "${ac_cv_type_void_p+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -if ((void * *) 0) - return 0; -if (sizeof (void *)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_type_void_p=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_type_void_p=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_type_void_p" >&5 -echo "${ECHO_T}$ac_cv_type_void_p" >&6 - -echo "$as_me:$LINENO: checking size of void *" >&5 -echo $ECHO_N "checking size of void *... $ECHO_C" >&6 -if test "${ac_cv_sizeof_void_p+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$ac_cv_type_void_p" = yes; then - # The cast to unsigned long works around a bug in the HP C Compiler - # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects - # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. - # This bug is HP SR number 8606223364. - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (void *))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (void *))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (void *))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (void *))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo= ac_hi= -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (void *))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr '(' $ac_mid ')' + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_void_p=$ac_lo;; -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (void *), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (void *), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } ;; -esac -else - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -long longval () { return (long) (sizeof (void *)); } -unsigned long ulongval () { return (long) (sizeof (void *)); } -#include -#include -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - exit (1); - if (((long) (sizeof (void *))) < 0) - { - long i = longval (); - if (i != ((long) (sizeof (void *)))) - exit (1); - fprintf (f, "%ld\n", i); - } - else - { - unsigned long i = ulongval (); - if (i != ((long) (sizeof (void *)))) - exit (1); - fprintf (f, "%lu\n", i); - } - exit (ferror (f) || fclose (f) != 0); - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_void_p=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (void *), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (void *), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -rm -f conftest.val -else - ac_cv_sizeof_void_p=0 -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_sizeof_void_p" >&5 -echo "${ECHO_T}$ac_cv_sizeof_void_p" >&6 -cat >>confdefs.h <<_ACEOF -#define SIZEOF_VOID_P $ac_cv_sizeof_void_p -_ACEOF - - -echo "$as_me:$LINENO: checking for char" >&5 -echo $ECHO_N "checking for char... $ECHO_C" >&6 -if test "${ac_cv_type_char+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -if ((char *) 0) - return 0; -if (sizeof (char)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_type_char=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_type_char=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_type_char" >&5 -echo "${ECHO_T}$ac_cv_type_char" >&6 - -echo "$as_me:$LINENO: checking size of char" >&5 -echo $ECHO_N "checking size of char... $ECHO_C" >&6 -if test "${ac_cv_sizeof_char+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$ac_cv_type_char" = yes; then - # The cast to unsigned long works around a bug in the HP C Compiler - # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects - # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. - # This bug is HP SR number 8606223364. - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (char))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (char))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (char))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (char))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo= ac_hi= -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (char))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr '(' $ac_mid ')' + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_char=$ac_lo;; -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (char), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (char), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } ;; -esac -else - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -long longval () { return (long) (sizeof (char)); } -unsigned long ulongval () { return (long) (sizeof (char)); } -#include -#include -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - exit (1); - if (((long) (sizeof (char))) < 0) - { - long i = longval (); - if (i != ((long) (sizeof (char)))) - exit (1); - fprintf (f, "%ld\n", i); - } - else - { - unsigned long i = ulongval (); - if (i != ((long) (sizeof (char)))) - exit (1); - fprintf (f, "%lu\n", i); - } - exit (ferror (f) || fclose (f) != 0); - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_char=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (char), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (char), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -rm -f conftest.val -else - ac_cv_sizeof_char=0 -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_sizeof_char" >&5 -echo "${ECHO_T}$ac_cv_sizeof_char" >&6 -cat >>confdefs.h <<_ACEOF -#define SIZEOF_CHAR $ac_cv_sizeof_char -_ACEOF - - -echo "$as_me:$LINENO: checking for short" >&5 -echo $ECHO_N "checking for short... $ECHO_C" >&6 -if test "${ac_cv_type_short+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -if ((short *) 0) - return 0; -if (sizeof (short)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_type_short=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_type_short=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_type_short" >&5 -echo "${ECHO_T}$ac_cv_type_short" >&6 - -echo "$as_me:$LINENO: checking size of short" >&5 -echo $ECHO_N "checking size of short... $ECHO_C" >&6 -if test "${ac_cv_sizeof_short+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$ac_cv_type_short" = yes; then - # The cast to unsigned long works around a bug in the HP C Compiler - # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects - # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. - # This bug is HP SR number 8606223364. - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (short))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (short))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (short))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (short))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo= ac_hi= -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (short))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr '(' $ac_mid ')' + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_short=$ac_lo;; -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (short), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (short), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } ;; -esac -else - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -long longval () { return (long) (sizeof (short)); } -unsigned long ulongval () { return (long) (sizeof (short)); } -#include -#include -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - exit (1); - if (((long) (sizeof (short))) < 0) - { - long i = longval (); - if (i != ((long) (sizeof (short)))) - exit (1); - fprintf (f, "%ld\n", i); - } - else - { - unsigned long i = ulongval (); - if (i != ((long) (sizeof (short)))) - exit (1); - fprintf (f, "%lu\n", i); - } - exit (ferror (f) || fclose (f) != 0); - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_short=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (short), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (short), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -rm -f conftest.val -else - ac_cv_sizeof_short=0 -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_sizeof_short" >&5 -echo "${ECHO_T}$ac_cv_sizeof_short" >&6 -cat >>confdefs.h <<_ACEOF -#define SIZEOF_SHORT $ac_cv_sizeof_short -_ACEOF - - -echo "$as_me:$LINENO: checking for float" >&5 -echo $ECHO_N "checking for float... $ECHO_C" >&6 -if test "${ac_cv_type_float+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -if ((float *) 0) - return 0; -if (sizeof (float)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_type_float=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_type_float=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_type_float" >&5 -echo "${ECHO_T}$ac_cv_type_float" >&6 - -echo "$as_me:$LINENO: checking size of float" >&5 -echo $ECHO_N "checking size of float... $ECHO_C" >&6 -if test "${ac_cv_sizeof_float+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$ac_cv_type_float" = yes; then - # The cast to unsigned long works around a bug in the HP C Compiler - # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects - # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. - # This bug is HP SR number 8606223364. - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (float))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (float))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (float))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (float))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo= ac_hi= -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (float))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr '(' $ac_mid ')' + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_float=$ac_lo;; -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (float), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (float), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } ;; -esac -else - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -long longval () { return (long) (sizeof (float)); } -unsigned long ulongval () { return (long) (sizeof (float)); } -#include -#include -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - exit (1); - if (((long) (sizeof (float))) < 0) - { - long i = longval (); - if (i != ((long) (sizeof (float)))) - exit (1); - fprintf (f, "%ld\n", i); - } - else - { - unsigned long i = ulongval (); - if (i != ((long) (sizeof (float)))) - exit (1); - fprintf (f, "%lu\n", i); - } - exit (ferror (f) || fclose (f) != 0); - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_float=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (float), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (float), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -rm -f conftest.val -else - ac_cv_sizeof_float=0 -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_sizeof_float" >&5 -echo "${ECHO_T}$ac_cv_sizeof_float" >&6 -cat >>confdefs.h <<_ACEOF -#define SIZEOF_FLOAT $ac_cv_sizeof_float -_ACEOF - - -echo "$as_me:$LINENO: checking for double" >&5 -echo $ECHO_N "checking for double... $ECHO_C" >&6 -if test "${ac_cv_type_double+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -if ((double *) 0) - return 0; -if (sizeof (double)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_type_double=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_type_double=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_type_double" >&5 -echo "${ECHO_T}$ac_cv_type_double" >&6 - -echo "$as_me:$LINENO: checking size of double" >&5 -echo $ECHO_N "checking size of double... $ECHO_C" >&6 -if test "${ac_cv_sizeof_double+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$ac_cv_type_double" = yes; then - # The cast to unsigned long works around a bug in the HP C Compiler - # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects - # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. - # This bug is HP SR number 8606223364. - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (double))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (double))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (double))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (double))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo= ac_hi= -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (double))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr '(' $ac_mid ')' + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_double=$ac_lo;; -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (double), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (double), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } ;; -esac -else - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -long longval () { return (long) (sizeof (double)); } -unsigned long ulongval () { return (long) (sizeof (double)); } -#include -#include -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - exit (1); - if (((long) (sizeof (double))) < 0) - { - long i = longval (); - if (i != ((long) (sizeof (double)))) - exit (1); - fprintf (f, "%ld\n", i); - } - else - { - unsigned long i = ulongval (); - if (i != ((long) (sizeof (double)))) - exit (1); - fprintf (f, "%lu\n", i); - } - exit (ferror (f) || fclose (f) != 0); - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_double=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (double), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (double), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -rm -f conftest.val -else - ac_cv_sizeof_double=0 -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_sizeof_double" >&5 -echo "${ECHO_T}$ac_cv_sizeof_double" >&6 -cat >>confdefs.h <<_ACEOF -#define SIZEOF_DOUBLE $ac_cv_sizeof_double -_ACEOF - - -echo "$as_me:$LINENO: checking for fpos_t" >&5 -echo $ECHO_N "checking for fpos_t... $ECHO_C" >&6 -if test "${ac_cv_type_fpos_t+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -if ((fpos_t *) 0) - return 0; -if (sizeof (fpos_t)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_type_fpos_t=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_type_fpos_t=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_type_fpos_t" >&5 -echo "${ECHO_T}$ac_cv_type_fpos_t" >&6 - -echo "$as_me:$LINENO: checking size of fpos_t" >&5 -echo $ECHO_N "checking size of fpos_t... $ECHO_C" >&6 -if test "${ac_cv_sizeof_fpos_t+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$ac_cv_type_fpos_t" = yes; then - # The cast to unsigned long works around a bug in the HP C Compiler - # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects - # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. - # This bug is HP SR number 8606223364. - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (fpos_t))) >= 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=0 ac_mid=0 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (fpos_t))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr $ac_mid + 1` - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (fpos_t))) < 0)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=-1 ac_mid=-1 - while :; do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (fpos_t))) >= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_lo=$ac_mid; break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_hi=`expr '(' $ac_mid ')' - 1` - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - ac_mid=`expr 2 '*' $ac_mid` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo= ac_hi= -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(((long) (sizeof (fpos_t))) <= $ac_mid)]; -test_array [0] = 0 - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_hi=$ac_mid -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_lo=`expr '(' $ac_mid ')' + 1` -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in -?*) ac_cv_sizeof_fpos_t=$ac_lo;; -'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (fpos_t), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (fpos_t), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } ;; -esac -else - if test "$cross_compiling" = yes; then - { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run test program while cross compiling -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -long longval () { return (long) (sizeof (fpos_t)); } -unsigned long ulongval () { return (long) (sizeof (fpos_t)); } -#include -#include -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - exit (1); - if (((long) (sizeof (fpos_t))) < 0) - { - long i = longval (); - if (i != ((long) (sizeof (fpos_t)))) - exit (1); - fprintf (f, "%ld\n", i); - } - else - { - unsigned long i = ulongval (); - if (i != ((long) (sizeof (fpos_t)))) - exit (1); - fprintf (f, "%lu\n", i); - } - exit (ferror (f) || fclose (f) != 0); - - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_sizeof_fpos_t=`cat conftest.val` -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -{ { echo "$as_me:$LINENO: error: cannot compute sizeof (fpos_t), 77 -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute sizeof (fpos_t), 77 -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -rm -f conftest.val -else - ac_cv_sizeof_fpos_t=0 -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_sizeof_fpos_t" >&5 -echo "${ECHO_T}$ac_cv_sizeof_fpos_t" >&6 -cat >>confdefs.h <<_ACEOF -#define SIZEOF_FPOS_T $ac_cv_sizeof_fpos_t -_ACEOF - - - - - -if test -z "$SHARED"; then SHARED='-shared'; fi - - -CXX_INCLUDES=$BOOST_INCLUDE - -# -# LCXX_FLAGS: Flags that get attached to the CXX loader -# statement AFLAGS are base flags that -# get added to compilers and loaders. -# -if test ! -z "$AFLAGS" ; then - if test -z "$LCXX_FLAGS" ; then - LCXX_FLAGS="$AFLAGS" - else - LCXX_FLAGS="$LCXXFLAGS"" ""$AFLAGS" + if test -n "$ac_tool_prefix"; then + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CXX"; then + ac_cv_prog_CXX="$CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 fi +done + done +IFS=$as_save_IFS + fi -if test "$BUILD_WITH_F2C"="n"; then - if test ! -z "$LFORT_FLAGS"; then - LCXX_FLAGS="$LCXX_FLAGS"" ""$LFORT_FLAGS" +fi +CXX=$ac_cv_prog_CXX +if test -n "$CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 +$as_echo "$CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CXX" && break + done +fi +if test -z "$CXX"; then + ac_ct_CXX=$CXX + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CXX"; then + ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CXX="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CXX=$ac_cv_prog_ac_ct_CXX +if test -n "$ac_ct_CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 +$as_echo "$ac_ct_CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CXX" && break +done + + if test "x$ac_ct_CXX" = x; then + CXX="g++" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CXX=$ac_ct_CXX fi fi + fi +fi +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done - -# -# Ending Libs for compiling static applications and -# dynamically loaded libraries -# (sunpro solaris needs a few for dynamic linking) -# -# -# Check to see if we have a -lm line -# -echo "$as_me:$LINENO: checking for printf in -lm" >&5 -echo $ECHO_N "checking for printf in -lm... $ECHO_C" >&6 -if test "${ac_cv_lib_m_printf+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 +$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } +if test "${ac_cv_cxx_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lm $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -/* Override any gcc2 internal prototype to avoid an error. */ -#ifdef __cplusplus -extern "C" -#endif -/* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ -char printf (); int main () { -printf (); +#ifndef __GNUC__ + choke me +#endif + ; return 0; } _ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_lib_m_printf=yes +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_compiler_gnu=yes else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_cxx_compiler_gnu=$ac_compiler_gnu -ac_cv_lib_m_printf=no fi -rm -f conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -echo "$as_me:$LINENO: result: $ac_cv_lib_m_printf" >&5 -echo "${ECHO_T}$ac_cv_lib_m_printf" >&6 -if test $ac_cv_lib_m_printf = yes; then - add_stm=1 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 +$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GXX=yes else - add_stm=0 + GXX= fi - - -# -# Check to see if we have a -lstdc++ line -# -echo "$as_me:$LINENO: checking for printf in -lstdc++" >&5 -echo $ECHO_N "checking for printf in -lstdc++... $ECHO_C" >&6 -if test "${ac_cv_lib_stdcpp_printf+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +ac_test_CXXFLAGS=${CXXFLAGS+set} +ac_save_CXXFLAGS=$CXXFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 +$as_echo_n "checking whether $CXX accepts -g... " >&6; } +if test "${ac_cv_prog_cxx_g+set}" = set; then : + $as_echo_n "(cached) " >&6 else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lstdc++ $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + ac_save_cxx_werror_flag=$ac_cxx_werror_flag + ac_cxx_werror_flag=yes + ac_cv_prog_cxx_g=no + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -/* Override any gcc2 internal prototype to avoid an error. */ -#ifdef __cplusplus -extern "C" -#endif -/* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ -char printf (); int main () { -printf (); + ; return 0; } _ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_cxx_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_lib_stdcpp_printf=yes +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 + CXXFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ -ac_cv_lib_stdcpp_printf=no -fi -rm -f conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -echo "$as_me:$LINENO: result: $ac_cv_lib_stdcpp_printf" >&5 -echo "${ECHO_T}$ac_cv_lib_stdcpp_printf" >&6 -if test $ac_cv_lib_stdcpp_printf = yes; then - add_stdc=1 -else - add_stdc=0 -fi +int +main () +{ - - -if test -n "$NEED_F2C" ; then - LCXX_END_LIBS="-lctf2c ""$LCXX_END_LIBS" -fi -case $ac_sys_system in - SunOS* ) - case $CXX in - CC* ) - LCXX_END_LIBS="$LCXX_END_LIBS"" -lCrun -lCstd -lfsu" ;; - esac ;; -esac -if test $add_stm = 1 ; then - echo 'Adding -lm to the end of the LCXX_END_LIBS variable' - LCXX_END_LIBS="$LCXX_END_LIBS"" -lm" - echo 'LCXX_END_LIBS = ' $LCXX_END_LIBS -fi -if test $add_stdc = 1 ; then - echo 'Adding -lstdc++ to the end of the LCXX_END_LIBS variable' - LCXX_END_LIBS="$LCXX_END_LIBS"" -lstdc++ " - echo 'LCXX_END_LIBS = ' $LCXX_END_LIBS -fi - - - - - -has_sstream=no -echo "$as_me:$LINENO: checking for sstream" >&5 -echo $ECHO_N "checking for sstream... $ECHO_C" >&6 -cat >> testsstream.cpp << EOF -#include -main() {} -EOF - msg=`${CXX} -c testsstream.cpp &> /dev/null` - if test -f testsstream.o; then - has_sstream=yes - rm testsstream.o - cat >>confdefs.h <<\_ACEOF -#define HAS_SSTREAM 1 + ; + return 0; +} _ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + +else + ac_cxx_werror_flag=$ac_save_cxx_werror_flag + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cxx_werror_flag=$ac_save_cxx_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 +$as_echo "$ac_cv_prog_cxx_g" >&6; } +if test "$ac_test_CXXFLAGS" = set; then + CXXFLAGS=$ac_save_CXXFLAGS +elif test $ac_cv_prog_cxx_g = yes; then + if test "$GXX" = yes; then + CXXFLAGS="-g -O2" + else + CXXFLAGS="-g" + fi +else + if test "$GXX" = yes; then + CXXFLAGS="-O2" + else + CXXFLAGS= + fi +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CXX" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CXX_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CXX_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CXX_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } +CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then + am__fastdepCXX_TRUE= + am__fastdepCXX_FALSE='#' +else + am__fastdepCXX_TRUE='#' + am__fastdepCXX_FALSE= +fi + + +if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then + ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 +$as_echo_n "checking how to run the C++ preprocessor... " >&6; } +if test -z "$CXXCPP"; then + if test "${ac_cv_prog_CXXCPP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + # Double quotes because CXXCPP needs to be expanded + for CXXCPP in "$CXX -E" "/lib/cpp" + do + ac_preproc_ok=false +for ac_cxx_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + break +fi + + done + ac_cv_prog_CXXCPP=$CXXCPP + +fi + CXXCPP=$ac_cv_prog_CXXCPP +else + ac_cv_prog_CXXCPP=$CXXCPP +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 +$as_echo "$CXXCPP" >&6; } +ac_preproc_ok=false +for ac_cxx_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +_lt_caught_CXX_error=yes; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +else + _lt_caught_CXX_error=yes +fi - fi -rm -f testsstream.cpp -echo "$as_me:$LINENO: result: ${has_sstream}" >&5 -echo "${ECHO_T}${has_sstream}" >&6 -# -# Determine if we have a command to strip symbols from an object file -# -HAVE_STRIPSYMBOLS='yes' -case $ac_sys_system in - SunOS* ) - HAVE_STRIPSYMBOLS='no';; - Darwin* ) - HAVE_STRIPSYMBOLS='no';; -esac -echo 'checking for a strip symbol command ... ' $HAVE_STRIPSYMBOLS -#--------------------------------------------------------------------------- -# Fortran -#--------------------------------------------------------------------------- -#if test x"$build_with_f2c" = "x0"; then ac_ext=f ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_f77_compiler_gnu if test -n "$ac_tool_prefix"; then - for ac_prog in g77 f77 xlf frt pgf77 fort77 fl32 af77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 ifc efc pgf95 lf95 gfortran + for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_F77+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_F77+set}" = set; then : + $as_echo_n "(cached) " >&6 else if test -n "$F77"; then ac_cv_prog_F77="$F77" # Let the user override the test. @@ -9978,39 +8309,41 @@ for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_F77="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done +IFS=$as_save_IFS fi fi F77=$ac_cv_prog_F77 if test -n "$F77"; then - echo "$as_me:$LINENO: result: $F77" >&5 -echo "${ECHO_T}$F77" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $F77" >&5 +$as_echo "$F77" >&6; } else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } fi + test -n "$F77" && break done fi if test -z "$F77"; then ac_ct_F77=$F77 - for ac_prog in g77 f77 xlf frt pgf77 fort77 fl32 af77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 ifc efc pgf95 lf95 gfortran + for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_F77+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_F77+set}" = set; then : + $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_F77"; then ac_cv_prog_ac_ct_F77="$ac_ct_F77" # Let the user override the test. @@ -10020,64 +8353,81 @@ for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_F77="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done +IFS=$as_save_IFS fi fi ac_ct_F77=$ac_cv_prog_ac_ct_F77 if test -n "$ac_ct_F77"; then - echo "$as_me:$LINENO: result: $ac_ct_F77" >&5 -echo "${ECHO_T}$ac_ct_F77" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_F77" >&5 +$as_echo "$ac_ct_F77" >&6; } else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } fi + test -n "$ac_ct_F77" && break done - F77=$ac_ct_F77 + if test "x$ac_ct_F77" = x; then + F77="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + F77=$ac_ct_F77 + fi fi # Provide some information about the compiler. -echo "$as_me:10051:" \ - "checking for Fortran 77 compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 +$as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran 77 compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done rm -f a.out # If we don't use `.F' as extension, the preprocessor is not run on the # input file. (Note that this only needs to work for GNU compilers.) ac_save_ext=$ac_ext ac_ext=F -echo "$as_me:$LINENO: checking whether we are using the GNU Fortran 77 compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU Fortran 77 compiler... $ECHO_C" >&6 -if test "${ac_cv_f77_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran 77 compiler" >&5 +$as_echo_n "checking whether we are using the GNU Fortran 77 compiler... " >&6; } +if test "${ac_cv_f77_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 else - cat >conftest.$ac_ext <<_ACEOF + cat > conftest.$ac_ext <<_ACEOF program main #ifndef __GNUC__ choke me @@ -10085,90 +8435,42 @@ else end _ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_f77_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then +if ac_fn_f77_try_compile "$LINENO"; then : ac_compiler_gnu=yes else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no + ac_compiler_gnu=no fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_f77_compiler_gnu=$ac_compiler_gnu fi -echo "$as_me:$LINENO: result: $ac_cv_f77_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_f77_compiler_gnu" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_f77_compiler_gnu" >&5 +$as_echo "$ac_cv_f77_compiler_gnu" >&6; } ac_ext=$ac_save_ext ac_test_FFLAGS=${FFLAGS+set} ac_save_FFLAGS=$FFLAGS FFLAGS= -echo "$as_me:$LINENO: checking whether $F77 accepts -g" >&5 -echo $ECHO_N "checking whether $F77 accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_f77_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $F77 accepts -g" >&5 +$as_echo_n "checking whether $F77 accepts -g... " >&6; } +if test "${ac_cv_prog_f77_g+set}" = set; then : + $as_echo_n "(cached) " >&6 else FFLAGS=-g -cat >conftest.$ac_ext <<_ACEOF +cat > conftest.$ac_ext <<_ACEOF program main end _ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_f77_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then +if ac_fn_f77_try_compile "$LINENO"; then : ac_cv_prog_f77_g=yes else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_f77_g=no + ac_cv_prog_f77_g=no fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:$LINENO: result: $ac_cv_prog_f77_g" >&5 -echo "${ECHO_T}$ac_cv_prog_f77_g" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_f77_g" >&5 +$as_echo "$ac_cv_prog_f77_g" >&6; } if test "$ac_test_FFLAGS" = set; then FFLAGS=$ac_save_FFLAGS elif test $ac_cv_prog_f77_g = yes; then @@ -10185,707 +8487,12077 @@ else fi fi -G77=`test $ac_compiler_gnu = yes && echo yes` -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -# if G77 is defined, then add a flag to turn off adding a second underscore -# to procedures that have an underscore in the name -if test -n "$G77"; then - FFLAGS=$FFLAGS' -fno-second-underscore' +if test $ac_compiler_gnu = yes; then + G77=yes else - if test $F77 = "g77" -o $F77 = "mpif77" -o $F77 = "gfortran" ; then - FFLAGS=$FFLAGS' -fno-second-underscore' - fi + G77= +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +if test -z "$F77" || test "X$F77" = "Xno"; then + _lt_disable_F77=yes fi -ac_ext=f -ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' -ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_f77_compiler_gnu -echo "$as_me:$LINENO: checking how to get verbose linking output from $F77" >&5 -echo $ECHO_N "checking how to get verbose linking output from $F77... $ECHO_C" >&6 -if test "${ac_cv_prog_f77_v+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 + + + +ac_ext=${ac_fc_srcext-f} +ac_compile='$FC -c $FCFLAGS $ac_fcflags_srcext conftest.$ac_ext >&5' +ac_link='$FC -o conftest$ac_exeext $FCFLAGS $LDFLAGS $ac_fcflags_srcext conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_fc_compiler_gnu +if test -n "$ac_tool_prefix"; then + for ac_prog in gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn xlf90 f90 pgf90 pghpf epcf90 g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_FC+set}" = set; then : + $as_echo_n "(cached) " >&6 else - cat >conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_f77_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_f77_v= -# Try some options frequently used verbose output -for ac_verb in -v -verbose --verbose -V -\#\#\#; do - cat >conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF - -# Compile and link our simple test program by passing a flag (argument -# 1 to this macro) to the Fortran compiler in order to get -# "verbose" output that we can then parse for the Fortran linker -# flags. -ac_save_FFLAGS=$FFLAGS -FFLAGS="$FFLAGS $ac_verb" -(eval echo $as_me:10258: \"$ac_link\") >&5 -ac_f77_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'` -echo "$ac_f77_v_output" >&5 -FFLAGS=$ac_save_FFLAGS - -rm -f conftest* - -# On HP/UX there is a line like: "LPATH is: /foo:/bar:/baz" where -# /foo, /bar, and /baz are search directories for the Fortran linker. -# Here, we change these into -L/foo -L/bar -L/baz (and put it first): -ac_f77_v_output="`echo $ac_f77_v_output | - grep 'LPATH is:' | - sed 's,.*LPATH is\(: *[^ ]*\).*,\1,;s,: */, -L/,g'` $ac_f77_v_output" - -case $ac_f77_v_output in - # If we are using xlf then replace all the commas with spaces. - *xlfentry*) - ac_f77_v_output=`echo $ac_f77_v_output | sed 's/,/ /g'` ;; - - # With Intel ifc, ignore the quoted -mGLOB_options_string stuff (quoted - # $LIBS confuse us, and the libraries appear later in the output anyway). - *mGLOB_options_string*) - ac_f77_v_output=`echo $ac_f77_v_output | sed 's/\"-mGLOB[^\"]*\"/ /g'` ;; - - # If we are using Cray Fortran then delete quotes. - # Use "\"" instead of '"' for font-lock-mode. - # FIXME: a more general fix for quoted arguments with spaces? - *cft90*) - ac_f77_v_output=`echo $ac_f77_v_output | sed "s/\"//g"` ;; -esac - - - # look for -l* and *.a constructs in the output - for ac_arg in $ac_f77_v_output; do - case $ac_arg in - [\\/]*.a | ?:[\\/]*.a | -[lLRu]*) - ac_cv_prog_f77_v=$ac_verb - break 2 ;; - esac - done -done -if test -z "$ac_cv_prog_f77_v"; then - { echo "$as_me:$LINENO: WARNING: cannot determine how to obtain linking information from $F77" >&5 -echo "$as_me: WARNING: cannot determine how to obtain linking information from $F77" >&2;} -fi + if test -n "$FC"; then + ac_cv_prog_FC="$FC" # Let the user override the test. else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ echo "$as_me:$LINENO: WARNING: compilation failed" >&5 -echo "$as_me: WARNING: compilation failed" >&2;} -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_f77_v" >&5 -echo "${ECHO_T}$ac_cv_prog_f77_v" >&6 -echo "$as_me:$LINENO: checking for Fortran libraries of $F77" >&5 -echo $ECHO_N "checking for Fortran libraries of $F77... $ECHO_C" >&6 -if test "${ac_cv_f77_libs+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "x$FLIBS" != "x"; then - ac_cv_f77_libs="$FLIBS" # Let the user override the test. -else - -cat >conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF - -# Compile and link our simple test program by passing a flag (argument -# 1 to this macro) to the Fortran compiler in order to get -# "verbose" output that we can then parse for the Fortran linker -# flags. -ac_save_FFLAGS=$FFLAGS -FFLAGS="$FFLAGS $ac_cv_prog_f77_v" -(eval echo $as_me:10336: \"$ac_link\") >&5 -ac_f77_v_output=`eval $ac_link 5>&1 2>&1 | grep -v 'Driving:'` -echo "$ac_f77_v_output" >&5 -FFLAGS=$ac_save_FFLAGS - -rm -f conftest* - -# On HP/UX there is a line like: "LPATH is: /foo:/bar:/baz" where -# /foo, /bar, and /baz are search directories for the Fortran linker. -# Here, we change these into -L/foo -L/bar -L/baz (and put it first): -ac_f77_v_output="`echo $ac_f77_v_output | - grep 'LPATH is:' | - sed 's,.*LPATH is\(: *[^ ]*\).*,\1,;s,: */, -L/,g'` $ac_f77_v_output" - -case $ac_f77_v_output in - # If we are using xlf then replace all the commas with spaces. - *xlfentry*) - ac_f77_v_output=`echo $ac_f77_v_output | sed 's/,/ /g'` ;; - - # With Intel ifc, ignore the quoted -mGLOB_options_string stuff (quoted - # $LIBS confuse us, and the libraries appear later in the output anyway). - *mGLOB_options_string*) - ac_f77_v_output=`echo $ac_f77_v_output | sed 's/\"-mGLOB[^\"]*\"/ /g'` ;; - - # If we are using Cray Fortran then delete quotes. - # Use "\"" instead of '"' for font-lock-mode. - # FIXME: a more general fix for quoted arguments with spaces? - *cft90*) - ac_f77_v_output=`echo $ac_f77_v_output | sed "s/\"//g"` ;; -esac - - - -ac_cv_f77_libs= - -# Save positional arguments (if any) -ac_save_positional="$@" - -set X $ac_f77_v_output -while test $# != 1; do - shift - ac_arg=$1 - case $ac_arg in - [\\/]*.a | ?:[\\/]*.a) - ac_exists=false - for ac_i in $ac_cv_f77_libs; do - if test x"$ac_arg" = x"$ac_i"; then - ac_exists=true - break - fi - done - - if test x"$ac_exists" = xtrue; then - : -else - ac_cv_f77_libs="$ac_cv_f77_libs $ac_arg" -fi - - ;; - -bI:*) - ac_exists=false - for ac_i in $ac_cv_f77_libs; do - if test x"$ac_arg" = x"$ac_i"; then - ac_exists=true - break - fi - done - - if test x"$ac_exists" = xtrue; then - : -else - if test "$ac_compiler_gnu" = yes; then - for ac_link_opt in $ac_arg; do - ac_cv_f77_libs="$ac_cv_f77_libs -Xlinker $ac_link_opt" - done -else - ac_cv_f77_libs="$ac_cv_f77_libs $ac_arg" -fi -fi - - ;; - # Ignore these flags. - -lang* | -lcrt[01].o | -lcrtbegin.o | -lc | -lgcc | -libmil | -LANG:=*) - ;; - -lkernel32) - test x"$CYGWIN" != xyes && ac_cv_f77_libs="$ac_cv_f77_libs $ac_arg" - ;; - -[LRuY]) - # These flags, when seen by themselves, take an argument. - # We remove the space between option and argument and re-iterate - # unless we find an empty arg or a new option (starting with -) - case $2 in - "" | -*);; - *) - ac_arg="$ac_arg$2" - shift; shift - set X $ac_arg "$@" - ;; - esac - ;; - -YP,*) - for ac_j in `echo $ac_arg | sed -e 's/-YP,/-L/;s/:/ -L/g'`; do - ac_exists=false - for ac_i in $ac_cv_f77_libs; do - if test x"$ac_j" = x"$ac_i"; then - ac_exists=true - break - fi - done - - if test x"$ac_exists" = xtrue; then - : -else - ac_arg="$ac_arg $ac_j" - ac_cv_f77_libs="$ac_cv_f77_libs $ac_j" -fi - - done - ;; - -[lLR]*) - ac_exists=false - for ac_i in $ac_cv_f77_libs; do - if test x"$ac_arg" = x"$ac_i"; then - ac_exists=true - break - fi - done - - if test x"$ac_exists" = xtrue; then - : -else - ac_cv_f77_libs="$ac_cv_f77_libs $ac_arg" -fi - - ;; - # Ignore everything else. - esac -done -# restore positional arguments -set X $ac_save_positional; shift - -# We only consider "LD_RUN_PATH" on Solaris systems. If this is seen, -# then we insist that the "run path" must be an absolute path (i.e. it -# must begin with a "/"). -case `(uname -sr) 2>/dev/null` in - "SunOS 5"*) - ac_ld_run_path=`echo $ac_f77_v_output | - sed -n 's,^.*LD_RUN_PATH *= *\(/[^ ]*\).*$,-R\1,p'` - test "x$ac_ld_run_path" != x && - if test "$ac_compiler_gnu" = yes; then - for ac_link_opt in $ac_ld_run_path; do - ac_cv_f77_libs="$ac_cv_f77_libs -Xlinker $ac_link_opt" - done -else - ac_cv_f77_libs="$ac_cv_f77_libs $ac_ld_run_path" -fi - ;; -esac -fi # test "x$[]_AC_LANG_PREFIX[]LIBS" = "x" - -fi -echo "$as_me:$LINENO: result: $ac_cv_f77_libs" >&5 -echo "${ECHO_T}$ac_cv_f77_libs" >&6 -FLIBS="$ac_cv_f77_libs" - - -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -override_f77_libs=0; - -#case $ac_sys_system in -# Darwin*) FLIBS='-lSystem'; override_f77_libs=1; SHARED_CTLIB=0;; -#esac -# -#if test $override_f77_libs -gt 0; then -# echo The Fortran 77 libraries on this platform are not correctly determined by -# echo the configuration process. They are being manually set to -# echo FLIBS = $FLIBS -#fi - -#fi - -# ---------------------------------------------------------------------- -# LCXX_FLIBS are extra libraries the CXX linker needs -# in order to link in fortran programs where fortran is the main program - -LCXX_FLIBS= - -case $ac_sys_system in - SunOS*) LCXX_FLIBS="-lCrun -lCstd -lfsu" ;; -esac - -#-------------------------------------------- - - -if test "x${BUILD_F90}" != "x0"; then - if test "$F90" = "default" -o \ - "$F90"x = "x"; then - for ac_prog in f95 gfortran g95 -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_F90+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $F90 in - [\\/]* | ?:[\\/]*) - ac_cv_path_F90="$F90" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_F90="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_FC="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done + done +IFS=$as_save_IFS + +fi +fi +FC=$ac_cv_prog_FC +if test -n "$FC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FC" >&5 +$as_echo "$FC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$FC" && break + done +fi +if test -z "$FC"; then + ac_ct_FC=$FC + for ac_prog in gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn xlf90 f90 pgf90 pghpf epcf90 g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_FC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_FC"; then + ac_cv_prog_ac_ct_FC="$ac_ct_FC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_FC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_FC=$ac_cv_prog_ac_ct_FC +if test -n "$ac_ct_FC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_FC" >&5 +$as_echo "$ac_ct_FC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_FC" && break done + if test "x$ac_ct_FC" = x; then + FC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + FC=$ac_ct_FC + fi +fi + + +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done +rm -f a.out + +# If we don't use `.F' as extension, the preprocessor is not run on the +# input file. (Note that this only needs to work for GNU compilers.) +ac_save_ext=$ac_ext +ac_ext=F +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran compiler" >&5 +$as_echo_n "checking whether we are using the GNU Fortran compiler... " >&6; } +if test "${ac_cv_fc_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat > conftest.$ac_ext <<_ACEOF + program main +#ifndef __GNUC__ + choke me +#endif + + end +_ACEOF +if ac_fn_fc_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_fc_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_fc_compiler_gnu" >&5 +$as_echo "$ac_cv_fc_compiler_gnu" >&6; } +ac_ext=$ac_save_ext +ac_test_FCFLAGS=${FCFLAGS+set} +ac_save_FCFLAGS=$FCFLAGS +FCFLAGS= +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $FC accepts -g" >&5 +$as_echo_n "checking whether $FC accepts -g... " >&6; } +if test "${ac_cv_prog_fc_g+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + FCFLAGS=-g +cat > conftest.$ac_ext <<_ACEOF + program main + + end +_ACEOF +if ac_fn_fc_try_compile "$LINENO"; then : + ac_cv_prog_fc_g=yes +else + ac_cv_prog_fc_g=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_fc_g" >&5 +$as_echo "$ac_cv_prog_fc_g" >&6; } +if test "$ac_test_FCFLAGS" = set; then + FCFLAGS=$ac_save_FCFLAGS +elif test $ac_cv_prog_fc_g = yes; then + if test "x$ac_cv_fc_compiler_gnu" = xyes; then + FCFLAGS="-g -O2" + else + FCFLAGS="-g" + fi +else + if test "x$ac_cv_fc_compiler_gnu" = xyes; then + FCFLAGS="-O2" + else + FCFLAGS= + fi +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +if test -z "$FC" || test "X$FC" = "Xno"; then + _lt_disable_FC=yes +fi + + + + + +# Set options + + + + enable_dlopen=no + + + enable_win32_dll=no + + + # Check whether --enable-shared was given. +if test "${enable_shared+set}" = set; then : + enableval=$enable_shared; p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_shared=yes +fi + + + + + + + + + + # Check whether --enable-static was given. +if test "${enable_static+set}" = set; then : + enableval=$enable_static; p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_static=yes +fi + + + + + + + + + + +# Check whether --with-pic was given. +if test "${with_pic+set}" = set; then : + withval=$with_pic; pic_mode="$withval" +else + pic_mode=default +fi + + +test -z "$pic_mode" && pic_mode=default + + + + + + + + # Check whether --enable-fast-install was given. +if test "${enable_fast_install+set}" = set; then : + enableval=$enable_fast_install; p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_fast_install=yes +fi + + + + + + + + + + + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ltmain" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' + + + + + + + + + + + + + + + + + + + + + + + + + +test -z "$LN_S" && LN_S="ln -s" + + + + + + + + + + + + + + +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 +$as_echo_n "checking for objdir... " >&6; } +if test "${lt_cv_objdir+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 +$as_echo "$lt_cv_objdir" >&6; } +objdir=$lt_cv_objdir + + + + + +cat >>confdefs.h <<_ACEOF +#define LT_OBJDIR "$lt_cv_objdir/" +_ACEOF + + + + + + + + + + + + + + + + + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` + + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 +$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } +if test "${lt_cv_path_MAGIC_CMD+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/${ac_tool_prefix}file; then + lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi -F90=$ac_cv_path_F90 -if test -n "$F90"; then - echo "$as_me:$LINENO: result: $F90" >&5 -echo "${ECHO_T}$F90" >&6 +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 +$as_echo "$MAGIC_CMD" >&6; } else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } fi - test -n "$F90" && break -done -test -n "$F90" || F90=""none"" - - if test "$F90" = "none" ; then - echo "ERROR: Fortran 90 requested, but no Fortran 90/95 compiler found!" - else - echo "Fortran compiler set to " $F90 - fi - else - echo "Fortran 90/95 compiler preset to $F90" - fi -fi - -has_f90=no -f90type=none -f90_module_dir='-I' -f90_opts='' - -if test "x${BUILD_F90}" != "x0"; then - echo "$as_me:$LINENO: checking Fortran 90 compiler ($F90) type" >&5 -echo $ECHO_N "checking Fortran 90 compiler ($F90) type... $ECHO_C" >&6 - cat >> testf90.f90 << EOF -module mt -double precision, parameter :: x = 2.3 -end module mt -program testf90 -use mt -integer :: i -end program testf90 -EOF - msg=`${F90} -c testf90.f90 &> /dev/null` - if test -f testf90.o; then - has_f90=yes - rm testf90.o - f90type=unknown - fi -# -F90LIBS= - - msg=`${F90} --version &> f90out` - isgfortran=`grep -c 'GNU Fortran' f90out` - if test "x${isgfortran}" != "x0"; then - f90type="gfortran" - f90opts="-fno-second-underscore -I. -I${ct_incdir}" - f90buildopts="-fno-second-underscore -I." - F90LIBS="-lgfortran" - fi - - isg95=`grep -c 'G95' f90out` - if test "x${isg95}" != "x0"; then - f90type="g95" - f90opts="-fno-second-underscore -I. -I${ct_incdir}" - f90buildopts="-fno-second-underscore -I." - #case $ac_sys_system in - # Darwin*) FLIBS='-lg2c -lcc_dynamic';; - #esac - fi - - msg=`${F90} -V &> f90out` - isnag=`grep -c NAGWare f90out` - if test "x${isnag}" != "x0"; then - f90type="NAG" - f90opts="-I. -I${ct_incdir}" - f90buildopts="-I." - fi -# - msg=`${F90} -V -c testf90.f90 &> f90out` - isabsoft=`grep -c Absoft f90out` - if test "x${isabsoft}" != "x0"; then - f90type="Absoft" - f90opts="-p. -p${ct_incdir} -s -YEXT_NAMES=LCS -YEXT_SFX=_ -YCFRL=1" - f90buildopts="-p. -s -YEXT_NAMES=LCS -YEXT_SFX=_ -YCFRL=1" - fi - rm -f testf90.f90 - echo "$as_me:$LINENO: result: ${f90type}" >&5 -echo "${ECHO_T}${f90type}" >&6 - if test "x${BUILD_F90}" != "x0"; then - if test "x${has_f90}" = "xno"; then - echo " -> cannot build the Fortran 90 interface" - BUILD_F90=0 - fi - fi -fi -if test -e f90out ; then - rm -f f90out -fi -savef90flags=${F90FLAGS} -F90FLAGS=${f90opts}' '${F90FLAGS} -F90BUILDFLAGS=${f90buildopts}' '${savef90flags} +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 +$as_echo_n "checking for file... " >&6; } +if test "${lt_cv_path_MAGIC_CMD+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/file; then + lt_cv_path_MAGIC_CMD="$ac_dir/file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org - - - - - - - - - - - - -# filename extensions for Fortran 77 -if test -z "$F77_EXT"; then F77_EXT=f; fi - - - -ac_ext=cc -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -if test -z "$CXX_EXT"; then CXX_EXT=cpp; fi - - -if test -z "$OBJ_EXT"; then OBJ_EXT='o'; fi - - -if test -z "$EXE_EXT"; then EXE_EXT=$EXEEXT; fi - - -#local_math_libs='-lcvode' -#AC_SUBST(local_math_libs) - - -math_libs='-lcvode -lctmath' - - -if test "$LAPACK_FTN_TRAILING_UNDERSCORE" = "y" -then - cat >>confdefs.h <<\_ACEOF -#define LAPACK_FTN_TRAILING_UNDERSCORE 1 -_ACEOF - - cat >>confdefs.h <<\_ACEOF -#define FTN_TRAILING_UNDERSCORE 1 -_ACEOF - -fi - -if test "$LAPACK_FTN_STRING_LEN_AT_END" = "y" -then cat >>confdefs.h <<\_ACEOF -#define LAPACK_FTN_STRING_LEN_AT_END 1 -_ACEOF - -fi - -if test "$LAPACK_NAMES" = "lower" -then cat >>confdefs.h <<\_ACEOF -#define LAPACK_NAMES_LOWERCASE 1 -_ACEOF - -fi - -# from the Python configure.in file... - -# Set info about shared libraries. - - - - - -# SO is the extension of shared libraries `(including the dot!) -# -- usually .so, .sl on HP-UX, .dll on Cygwin -echo "$as_me:$LINENO: checking SO" >&5 -echo $ECHO_N "checking SO... $ECHO_C" >&6 -if test -z "$SO" -then - case $ac_sys_system in - hp*|HP*) SO=.sl;; - CYGWIN*) SO=.dll;; - Darwin*) SO=.dylib;; - *) SO=.so;; +_LT_EOF + fi ;; esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac fi -echo "$as_me:$LINENO: result: $SO" >&5 -echo "${ECHO_T}$SO" >&6 + +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 +$as_echo "$MAGIC_CMD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + else + MAGIC_CMD=: + fi +fi + + fi + ;; +esac + +# Use C for the default configuration in the libtool script + +lt_save_CC="$CC" +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +objext=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' -ac_ext=cc + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* + +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* + + +if test -n "$compiler"; then + +lt_prog_compiler_no_builtin_flag= + +if test "$GCC" = yes; then + lt_prog_compiler_no_builtin_flag=' -fno-builtin' + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 +$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } +if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_rtti_exceptions=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="-fno-rtti -fno-exceptions" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:9219: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:9223: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_rtti_exceptions=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 +$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } + +if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then + lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" +else + : +fi + +fi + + + + + + + lt_prog_compiler_wl= +lt_prog_compiler_pic= +lt_prog_compiler_static= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 +$as_echo_n "checking for $compiler option to produce PIC... " >&6; } + + if test "$GCC" = yes; then + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_static='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + lt_prog_compiler_pic='-DDLL_EXPORT' + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic='-fno-common' + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + ;; + + interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + lt_prog_compiler_can_build_shared=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic=-Kconform_pic + fi + ;; + + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + lt_prog_compiler_wl='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + else + lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + lt_prog_compiler_pic='-DDLL_EXPORT' + ;; + + hpux9* | hpux10* | hpux11*) + lt_prog_compiler_wl='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + lt_prog_compiler_static='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + lt_prog_compiler_wl='-Wl,' + # PIC (with -KPIC) is the default. + lt_prog_compiler_static='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + # old Intel for x86_64 which still supported -KPIC. + ecc*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='--shared' + lt_prog_compiler_static='--static' + ;; + pgcc* | pgf77* | pgf90* | pgf95*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; + ccc*) + lt_prog_compiler_wl='-Wl,' + # All Alpha code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + xl*) + # IBM XL C 8.0/Fortran 10.1 on PPC + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-qpic' + lt_prog_compiler_static='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C 5.9 + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Wl,' + ;; + *Sun\ F*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='' + ;; + esac + ;; + esac + ;; + + newsos6) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + lt_prog_compiler_wl='-Wl,' + # All OSF/1 code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + + rdos*) + lt_prog_compiler_static='-non_shared' + ;; + + solaris*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + case $cc_basename in + f77* | f90* | f95*) + lt_prog_compiler_wl='-Qoption ld ';; + *) + lt_prog_compiler_wl='-Wl,';; + esac + ;; + + sunos4*) + lt_prog_compiler_wl='-Qoption ld ' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + lt_prog_compiler_pic='-Kconform_pic' + lt_prog_compiler_static='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + unicos*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_can_build_shared=no + ;; + + uts4*) + lt_prog_compiler_pic='-pic' + lt_prog_compiler_static='-Bstatic' + ;; + + *) + lt_prog_compiler_can_build_shared=no + ;; + esac + fi + +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic= + ;; + *) + lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic" >&5 +$as_echo "$lt_prog_compiler_pic" >&6; } + + + + + + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$lt_prog_compiler_pic"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 +$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } +if test "${lt_cv_prog_compiler_pic_works+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_works=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic -DPIC" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:9558: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:9562: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_pic_works=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 +$as_echo "$lt_cv_prog_compiler_pic_works" >&6; } + +if test x"$lt_cv_prog_compiler_pic_works" = xyes; then + case $lt_prog_compiler_pic in + "" | " "*) ;; + *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; + esac +else + lt_prog_compiler_pic= + lt_prog_compiler_can_build_shared=no +fi + +fi + + + + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } +if test "${lt_cv_prog_compiler_static_works+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_static_works=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_static_works=yes + fi + else + lt_cv_prog_compiler_static_works=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 +$as_echo "$lt_cv_prog_compiler_static_works" >&6; } + +if test x"$lt_cv_prog_compiler_static_works" = xyes; then + : +else + lt_prog_compiler_static= +fi + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if test "${lt_cv_prog_compiler_c_o+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:9663: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:9667: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 +$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if test "${lt_cv_prog_compiler_c_o+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:9718: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:9722: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 +$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + + +hard_links="nottested" +if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 +$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 +$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi +else + need_locks=no +fi + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= + allow_undefined_flag= + always_export_symbols=no + archive_cmds= + archive_expsym_cmds= + compiler_needs_object=no + enable_shared_with_static_runtimes=no + export_dynamic_flag_spec= + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + hardcode_automatic=no + hardcode_direct=no + hardcode_direct_absolute=no + hardcode_libdir_flag_spec= + hardcode_libdir_flag_spec_ld= + hardcode_libdir_separator= + hardcode_minus_L=no + hardcode_shlibpath_var=unsupported + inherit_rpath=no + link_all_deplibs=unknown + module_cmds= + module_expsym_cmds= + old_archive_from_new_cmds= + old_archive_from_expsyms_cmds= + thread_safe_flag_spec= + whole_archive_flag_spec= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + include_expsyms= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + linux* | k*bsd*-gnu) + link_all_deplibs=no + ;; + esac + + ld_shlibs=yes + if test "$with_gnu_ld" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[3-9]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.9.1, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to modify your PATH +*** so that a non-GNU linker is found, and then restart. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + allow_undefined_flag=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + ld_shlibs=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec='-L$libdir' + allow_undefined_flag=unsupported + always_export_symbols=no + enable_shared_with_static_runtimes=yes + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs=no + fi + ;; + + interix[3-9]*) + hardcode_direct=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + export_dynamic_flag_spec='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag= + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + whole_archive_flag_spec= + tmp_sharedflag='--shared' ;; + xl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' + hardcode_libdir_flag_spec= + hardcode_libdir_flag_spec_ld='-rpath $libdir' + archive_cmds='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + ld_shlibs=no + fi + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + ;; + + sunos4*) + archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + + if test "$ld_shlibs" = no; then + runpath_var= + hardcode_libdir_flag_spec= + export_dynamic_flag_spec= + whole_archive_flag_spec= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + allow_undefined_flag=unsupported + always_export_symbols=yes + archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + hardcode_minus_L=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct=unsupported + fi + ;; + + aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + archive_cmds='' + hardcode_direct=yes + hardcode_direct_absolute=yes + hardcode_libdir_separator=':' + link_all_deplibs=yes + file_list_spec='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + hardcode_minus_L=yes + hardcode_libdir_flag_spec='-L$libdir' + hardcode_libdir_separator= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + link_all_deplibs=no + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + export_dynamic_flag_spec='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + always_export_symbols=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + allow_undefined_flag='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + +lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\(.*\)$/\1/ + p + } + }' +aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +# Check for a 64-bit object if we didn't find anything. +if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' + allow_undefined_flag="-z nodefs" + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + +lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\(.*\)$/\1/ + p + } + }' +aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +# Check for a 64-bit object if we didn't find anything. +if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + no_undefined_flag=' ${wl}-bernotok' + allow_undefined_flag=' ${wl}-berok' + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec='$convenience' + archive_cmds_need_lc=yes + # This is similar to how AIX traditionally builds its shared libraries. + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + bsdi[45]*) + export_dynamic_flag_spec=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + hardcode_libdir_flag_spec=' ' + allow_undefined_flag=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds='$CC -o $lib $libobjs $compiler_flags `$ECHO "X$deplibs" | $Xsed -e '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + old_archive_from_new_cmds='true' + # FIXME: Should let the user specify the lib program. + old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' + fix_srcfile_path='`cygpath -w "$srcfile"`' + enable_shared_with_static_runtimes=yes + ;; + + darwin* | rhapsody*) + + + archive_cmds_need_lc=no + hardcode_direct=no + hardcode_automatic=yes + hardcode_shlibpath_var=unsupported + whole_archive_flag_spec='' + link_all_deplibs=yes + allow_undefined_flag="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=echo + archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + + else + ld_shlibs=no + fi + + ;; + + dgux*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + freebsd1*) + ld_shlibs=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + hpux9*) + if test "$GCC" = yes; then + archive_cmds='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + export_dynamic_flag_spec='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes -a "$with_gnu_ld" = no; then + archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_flag_spec_ld='+b $libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes -a "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct=no + hardcode_shlibpath_var=no + ;; + *) + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +int foo(void) {} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" + else + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + inherit_rpath=yes + link_all_deplibs=yes + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + newsos6) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_shlibpath_var=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + hardcode_direct=yes + hardcode_shlibpath_var=no + hardcode_direct_absolute=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + export_dynamic_flag_spec='${wl}-E' + else + case $host_os in + openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-R$libdir' + ;; + *) + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + ;; + esac + fi + else + ld_shlibs=no + fi + ;; + + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + allow_undefined_flag=unsupported + archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$ECHO DATA >> $output_objdir/$libname.def~$ECHO " SINGLE NONSHARED" >> $output_objdir/$libname.def~$ECHO EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + hardcode_libdir_flag_spec='-rpath $libdir' + fi + archive_cmds_need_lc='no' + hardcode_libdir_separator=: + ;; + + solaris*) + no_undefined_flag=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + archive_cmds='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_shlibpath_var=no + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + whole_archive_flag_spec='-z allextract$convenience -z defaultextract' + fi + ;; + esac + link_all_deplibs=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + hardcode_libdir_flag_spec='-L$libdir' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + sysv4) + case $host_vendor in + sni) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' + reload_cmds='$CC -r -o $output$reload_objs' + hardcode_direct=no + ;; + motorola) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + hardcode_shlibpath_var=no + ;; + + sysv4.3*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + export_dynamic_flag_spec='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + ld_shlibs=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag='${wl}-z,text' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + no_undefined_flag='${wl}-z,text' + allow_undefined_flag='${wl}-z,nodefs' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='${wl}-R,$libdir' + hardcode_libdir_separator=':' + link_all_deplibs=yes + export_dynamic_flag_spec='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + *) + ld_shlibs=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + export_dynamic_flag_spec='${wl}-Blargedynsym' + ;; + esac + fi + fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 +$as_echo "$ld_shlibs" >&6; } +test "$ld_shlibs" = no && can_build_shared=no + +with_gnu_ld=$with_gnu_ld + + + + + + + + + + + + + + + +# +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $archive_cmds in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 +$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$lt_prog_compiler_wl + pic_flag=$lt_prog_compiler_pic + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag + allow_undefined_flag= + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + then + archive_cmds_need_lc=no + else + archive_cmds_need_lc=yes + fi + allow_undefined_flag=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc" >&5 +$as_echo "$archive_cmds_need_lc" >&6; } + ;; + esac + fi + ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 +$as_echo_n "checking dynamic linker characteristics... " >&6; } + +if test "$GCC" = yes; then + case $host_os in + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` + if $ECHO "$lt_search_path_spec" | $GREP ';' >/dev/null ; then + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e 's/;/ /g'` + else + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary. + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path/$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" + else + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO $lt_tmp_lt_search_path_spec | awk ' +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo="/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[lt_foo]++; } + if (lt_freq[lt_foo] == 1) { print lt_foo; } +}'` + sys_lib_search_path_spec=`$ECHO $lt_search_path_spec` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[4-9]*) + version_type=linux + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[01] | aix4.[01].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[45]*) + version_type=linux + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$host_os in + yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` + if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then + # It is most probably a Windows format PATH printed by + # mingw gcc, but we are running on Cygwin. Gcc prints its search + # path with ; separators, and with drive letters. We can handle the + # drive letters (cygwin fileutils understands them), so leave them, + # especially as we might pass files found there to a mingw objdump, + # which wouldn't understand a cygwinified path. Ahh. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + esac + ;; + + *) + library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + ;; + esac + dynamic_linker='Win32 ld.exe' + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd1*) + dynamic_linker=no + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[123]*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[01]* | freebsdelf3.[01]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ + freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555. + postinstall_cmds='chmod 555 $lib' + ;; + +interix[3-9]*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be Linux ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + # Some binutils ld are patched to set DT_RUNPATH + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + shlibpath_overrides_runpath=yes +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[89] | openbsd2.[89].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 +$as_echo "$dynamic_linker" >&6; } +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 +$as_echo_n "checking how to hardcode library paths into programs... " >&6; } +hardcode_action= +if test -n "$hardcode_libdir_flag_spec" || + test -n "$runpath_var" || + test "X$hardcode_automatic" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$hardcode_direct" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && + test "$hardcode_minus_L" != no; then + # Linking always hardcodes the temporary library directory. + hardcode_action=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action=unsupported +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 +$as_echo "$hardcode_action" >&6; } + +if test "$hardcode_action" = relink || + test "$inherit_rpath" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi + + + + + + + if test "x$enable_dlopen" != xyes; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen="load_add_on" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 +$as_echo_n "checking for dlopen in -ldl... " >&6; } +if test "${ac_cv_lib_dl_dlopen+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes +else + ac_cv_lib_dl_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 +$as_echo "$ac_cv_lib_dl_dlopen" >&6; } +if test "x$ac_cv_lib_dl_dlopen" = x""yes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" +else + + lt_cv_dlopen="dyld" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + +fi + + ;; + + *) + ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" +if test "x$ac_cv_func_shl_load" = x""yes; then : + lt_cv_dlopen="shl_load" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 +$as_echo_n "checking for shl_load in -ldld... " >&6; } +if test "${ac_cv_lib_dld_shl_load+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char shl_load (); +int +main () +{ +return shl_load (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_shl_load=yes +else + ac_cv_lib_dld_shl_load=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 +$as_echo "$ac_cv_lib_dld_shl_load" >&6; } +if test "x$ac_cv_lib_dld_shl_load" = x""yes; then : + lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" +else + ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" +if test "x$ac_cv_func_dlopen" = x""yes; then : + lt_cv_dlopen="dlopen" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 +$as_echo_n "checking for dlopen in -ldl... " >&6; } +if test "${ac_cv_lib_dl_dlopen+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes +else + ac_cv_lib_dl_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 +$as_echo "$ac_cv_lib_dl_dlopen" >&6; } +if test "x$ac_cv_lib_dl_dlopen" = x""yes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 +$as_echo_n "checking for dlopen in -lsvld... " >&6; } +if test "${ac_cv_lib_svld_dlopen+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lsvld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_svld_dlopen=yes +else + ac_cv_lib_svld_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 +$as_echo "$ac_cv_lib_svld_dlopen" >&6; } +if test "x$ac_cv_lib_svld_dlopen" = x""yes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 +$as_echo_n "checking for dld_link in -ldld... " >&6; } +if test "${ac_cv_lib_dld_dld_link+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dld_link (); +int +main () +{ +return dld_link (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_dld_link=yes +else + ac_cv_lib_dld_dld_link=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 +$as_echo "$ac_cv_lib_dld_dld_link" >&6; } +if test "x$ac_cv_lib_dld_dld_link" = x""yes; then : + lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" +fi + + +fi + + +fi + + +fi + + +fi + + +fi + + ;; + esac + + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else + enable_dlopen=no + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 +$as_echo_n "checking whether a program can dlopen itself... " >&6; } +if test "${lt_cv_dlopen_self+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line 12102 "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +void fnord() { int i=42;} +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +} +_LT_EOF + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self=no + fi +fi +rm -fr conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 +$as_echo "$lt_cv_dlopen_self" >&6; } + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 +$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } +if test "${lt_cv_dlopen_self_static+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self_static=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line 12198 "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +void fnord() { int i=42;} +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +} +_LT_EOF + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self_static=no + fi +fi +rm -fr conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 +$as_echo "$lt_cv_dlopen_self_static" >&6; } + fi + + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi + + + + + + + + + + + + + + + + + +striplib= +old_striplib= +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 +$as_echo_n "checking whether stripping libraries is possible... " >&6; } +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + fi + ;; + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + ;; + esac +fi + + + + + + + + + + + + + # Report which library types will actually be built + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 +$as_echo_n "checking if libtool supports shared libraries... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 +$as_echo "$can_build_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 +$as_echo_n "checking whether to build shared libraries... " >&6; } + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[4-9]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 +$as_echo "$enable_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 +$as_echo_n "checking whether to build static libraries... " >&6; } + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 +$as_echo "$enable_static" >&6; } + + + + +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +CC="$lt_save_CC" + + +ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +archive_cmds_need_lc_CXX=no +allow_undefined_flag_CXX= +always_export_symbols_CXX=no +archive_expsym_cmds_CXX= +compiler_needs_object_CXX=no +export_dynamic_flag_spec_CXX= +hardcode_direct_CXX=no +hardcode_direct_absolute_CXX=no +hardcode_libdir_flag_spec_CXX= +hardcode_libdir_flag_spec_ld_CXX= +hardcode_libdir_separator_CXX= +hardcode_minus_L_CXX=no +hardcode_shlibpath_var_CXX=unsupported +hardcode_automatic_CXX=no +inherit_rpath_CXX=no +module_cmds_CXX= +module_expsym_cmds_CXX= +link_all_deplibs_CXX=unknown +old_archive_cmds_CXX=$old_archive_cmds +no_undefined_flag_CXX= +whole_archive_flag_spec_CXX= +enable_shared_with_static_runtimes_CXX=no + +# Source file extension for C++ test sources. +ac_ext=cpp + +# Object file extension for compiled C++ test sources. +objext=o +objext_CXX=$objext + +# No sense in running all these tests if we already determined that +# the CXX compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_caught_CXX_error" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;" + + # Code to be used in simple link tests + lt_simple_link_test_code='int main(int, char *[]) { return(0); }' + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. -# -# Section to handle tscompare -# -cd bin -touch s1 -sleep 1 -touch s2 -tsc=tscompare_alwaystrue -./tscompare_sh s2 s1 2> /dev/null -res=$? -if test "$res" = "0" ; then - tsc=tscompare_sh -else - ./tscompare_csh s2 s1 2> /dev/null - res=$? - if test "$res" = "0" ; then - tsc=tscompare_csh + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + + + # save warnings/boilerplate of simple test code + ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* + + ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* + + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX + lt_save_with_gnu_ld=$with_gnu_ld + lt_save_path_LD=$lt_cv_path_LD + if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then + lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else - ./tscompare_ksh s2 s1 2> /dev/null - res=$? - if test "$res" = "0" ; then - tsc=tsccompare_ksh + $as_unset lt_cv_prog_gnu_ld + fi + if test -n "${lt_cv_path_LDCXX+set}"; then + lt_cv_path_LD=$lt_cv_path_LDCXX + else + $as_unset lt_cv_path_LD + fi + test -z "${LDCXX+set}" || LD=$LDCXX + CC=${CXX-"c++"} + compiler=$CC + compiler_CXX=$CC + for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` + + + if test -n "$compiler"; then + # We don't want -fno-exception when compiling C++ code, so set the + # no_builtin_flag separately + if test "$GXX" = yes; then + lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' + else + lt_prog_compiler_no_builtin_flag_CXX= + fi + + if test "$GXX" = yes; then + # Set up default GNU C++ configuration + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 +$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | ?:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 +$as_echo_n "checking for GNU ld... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 +$as_echo_n "checking for non-GNU ld... " >&6; } +fi +if test "${lt_cv_path_LD+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &5 +$as_echo "$LD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi +test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 +$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } +if test "${lt_cv_prog_gnu_ld+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 &5 +$as_echo "$lt_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$lt_cv_prog_gnu_ld + + + + + + + + # Check if GNU C++ uses GNU ld as the underlying linker, since the + # archiving commands below assume that GNU ld is being used. + if test "$with_gnu_ld" = yes; then + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + + # If archive_cmds runs LD, not CC, wlarc should be empty + # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to + # investigate it a little bit more. (MM) + wlarc='${wl}' + + # ancient GNU ld didn't support --whole-archive et. al. + if eval "`$CC -print-prog-name=ld` --help 2>&1" | + $GREP 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec_CXX= + fi + else + with_gnu_ld=no + wlarc= + + # A generic and very simple default shared library creation + # command for GNU C++ for the case where it uses the native + # linker, instead of GNU ld. If possible, this setting should + # overridden to take advantage of the native linker features on + # the platform it is being used on. + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + fi + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' + + else + GXX=no + with_gnu_ld=no + wlarc= + fi + + # PORTME: fill in a description of your system's C++ link characteristics + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + ld_shlibs_CXX=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + case $ld_flag in + *-brtl*) + aix_use_runtimelinking=yes + break + ;; + esac + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + archive_cmds_CXX='' + hardcode_direct_CXX=yes + hardcode_direct_absolute_CXX=yes + hardcode_libdir_separator_CXX=':' + link_all_deplibs_CXX=yes + file_list_spec_CXX='${wl}-f,' + + if test "$GXX" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct_CXX=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + hardcode_minus_L_CXX=yes + hardcode_libdir_flag_spec_CXX='-L$libdir' + hardcode_libdir_separator_CXX= + fi + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + export_dynamic_flag_spec_CXX='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to + # export. + always_export_symbols_CXX=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + allow_undefined_flag_CXX='-berok' + # Determine the default libpath from the value encoded in an empty + # executable. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + +lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\(.*\)$/\1/ + p + } + }' +aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +# Check for a 64-bit object if we didn't find anything. +if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" + + archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' + allow_undefined_flag_CXX="-z nodefs" + archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + +lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\(.*\)$/\1/ + p + } + }' +aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +# Check for a 64-bit object if we didn't find anything. +if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + no_undefined_flag_CXX=' ${wl}-bernotok' + allow_undefined_flag_CXX=' ${wl}-berok' + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec_CXX='$convenience' + archive_cmds_need_lc_CXX=yes + # This is similar to how AIX traditionally builds its shared + # libraries. + archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + allow_undefined_flag_CXX=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + ld_shlibs_CXX=no + fi + ;; + + chorus*) + case $cc_basename in + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec_CXX='-L$libdir' + allow_undefined_flag_CXX=unsupported + always_export_symbols_CXX=no + enable_shared_with_static_runtimes_CXX=yes + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs_CXX=no + fi + ;; + darwin* | rhapsody*) + + + archive_cmds_need_lc_CXX=no + hardcode_direct_CXX=no + hardcode_automatic_CXX=yes + hardcode_shlibpath_var_CXX=unsupported + whole_archive_flag_spec_CXX='' + link_all_deplibs_CXX=yes + allow_undefined_flag_CXX="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=echo + archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + if test "$lt_cv_apple_cc_single_mod" != "yes"; then + archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" + archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" + fi + + else + ld_shlibs_CXX=no + fi + + ;; + + dgux*) + case $cc_basename in + ec++*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + ghcx*) + # Green Hills C++ Compiler + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + freebsd[12]*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + ld_shlibs_CXX=no + ;; + + freebsd-elf*) + archive_cmds_need_lc_CXX=no + ;; + + freebsd* | dragonfly*) + # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF + # conventions + ld_shlibs_CXX=yes + ;; + + gnu*) + ;; + + hpux9*) + hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' + hardcode_libdir_separator_CXX=: + export_dynamic_flag_spec_CXX='${wl}-E' + hardcode_direct_CXX=yes + hardcode_minus_L_CXX=yes # Not in the search PATH, + # but as the default + # location of the library. + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + aCC*) + archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' + ;; + *) + if test "$GXX" = yes; then + archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + hpux10*|hpux11*) + if test $with_gnu_ld = no; then + hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' + hardcode_libdir_separator_CXX=: + + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + export_dynamic_flag_spec_CXX='${wl}-E' + ;; + esac + fi + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct_CXX=no + hardcode_shlibpath_var_CXX=no + ;; + *) + hardcode_direct_CXX=yes + hardcode_direct_absolute_CXX=yes + hardcode_minus_L_CXX=yes # Not in the search PATH, + # but as the default + # location of the library. + ;; + esac + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + aCC*) + case $host_cpu in + hppa*64*) + archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' + ;; + *) + if test "$GXX" = yes; then + if test $with_gnu_ld = no; then + case $host_cpu in + hppa*64*) + archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + fi + else + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + interix[3-9]*) + hardcode_direct_CXX=no + hardcode_shlibpath_var_CXX=no + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + export_dynamic_flag_spec_CXX='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + irix5* | irix6*) + case $cc_basename in + CC*) + # SGI C++ + archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + + # Archives containing C++ object files must be created using + # "CC -ar", where "CC" is the IRIX C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test "$GXX" = yes; then + if test "$with_gnu_ld" = no; then + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` -o $lib' + fi + fi + link_all_deplibs_CXX=yes + ;; + esac + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator_CXX=: + inherit_rpath_CXX=yes + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' + + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + + # Archives containing C++ object files must be created using + # "CC -Bstatic", where "CC" is the KAI C++ compiler. + old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' + ;; + icpc* | ecpc* ) + # Intel C++ + with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + archive_cmds_need_lc_CXX=no + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + case `$CC -V` in + *pgCC\ [1-5]* | *pgcpp\ [1-5]*) + prelink_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | $NL2SP`"' + old_archive_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | $NL2SP`~ + $RANLIB $oldlib' + archive_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + archive_expsym_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + *) # Version 6 will use weak symbols + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + esac + + hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + ;; + cxx*) + # Compaq C++ + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec_CXX='-rpath $libdir' + hardcode_libdir_separator_CXX=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' + ;; + xl*) + # IBM XL 8.0 on PPC, with GNU ld + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + no_undefined_flag_CXX=' -zdefs' + archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + hardcode_libdir_flag_spec_CXX='-R$libdir' + whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object_CXX=yes + + # Not sure whether something based on + # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 + # would be better. + output_verbose_link_cmd='echo' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' + ;; + esac + ;; + esac + ;; + + lynxos*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + m88k*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + mvs*) + case $cc_basename in + cxx*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' + wlarc= + hardcode_libdir_flag_spec_CXX='-R$libdir' + hardcode_direct_CXX=yes + hardcode_shlibpath_var_CXX=no + fi + # Workaround some broken pre-1.5 toolchains + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' + ;; + + *nto* | *qnx*) + ld_shlibs_CXX=yes + ;; + + openbsd2*) + # C++ shared libraries are fairly broken + ld_shlibs_CXX=no + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + hardcode_direct_CXX=yes + hardcode_shlibpath_var_CXX=no + hardcode_direct_absolute_CXX=yes + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + export_dynamic_flag_spec_CXX='${wl}-E' + whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + fi + output_verbose_link_cmd=echo + else + ld_shlibs_CXX=no + fi + ;; + + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + hardcode_libdir_separator_CXX=: + + # Archives containing C++ object files must be created using + # the KAI C++ compiler. + case $host in + osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; + *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; + esac + ;; + RCC*) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + cxx*) + case $host in + osf3*) + allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && $ECHO "X${wl}-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + ;; + *) + allow_undefined_flag_CXX=' -expect_unresolved \*' + archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~ + $RM $lib.exp' + hardcode_libdir_flag_spec_CXX='-rpath $libdir' + ;; + esac + + hardcode_libdir_separator_CXX=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' + ;; + *) + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' + case $host in + osf3*) + archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + *) + archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + esac + + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator_CXX=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' + + else + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + psos*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + lcc*) + # Lucid + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + solaris*) + case $cc_basename in + CC*) + # Sun C++ 4.2, 5.x and Centerline C++ + archive_cmds_need_lc_CXX=yes + no_undefined_flag_CXX=' -zdefs' + archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + hardcode_libdir_flag_spec_CXX='-R$libdir' + hardcode_shlibpath_var_CXX=no + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. + # Supported since Solaris 2.6 (maybe 2.5.1?) + whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' + ;; + esac + link_all_deplibs_CXX=yes + + output_verbose_link_cmd='echo' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' + ;; + gcx*) + # Green Hills C++ Compiler + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + + # The C++ compiler must be used to create the archive. + old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' + ;; + *) + # GNU C++ compiler with Solaris linker + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + no_undefined_flag_CXX=' ${wl}-z ${wl}defs' + if $CC --version | $GREP -v '^2\.7' > /dev/null; then + archive_cmds_CXX='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' + else + # g++ 2.7 appears to require `-G' NOT `-shared' on this + # platform. + archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' + fi + + hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + ;; + esac + fi + ;; + esac + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag_CXX='${wl}-z,text' + archive_cmds_need_lc_CXX=no + hardcode_shlibpath_var_CXX=no + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + no_undefined_flag_CXX='${wl}-z,text' + allow_undefined_flag_CXX='${wl}-z,nodefs' + archive_cmds_need_lc_CXX=no + hardcode_shlibpath_var_CXX=no + hardcode_libdir_flag_spec_CXX='${wl}-R,$libdir' + hardcode_libdir_separator_CXX=':' + link_all_deplibs_CXX=yes + export_dynamic_flag_spec_CXX='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + vxworks*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 +$as_echo "$ld_shlibs_CXX" >&6; } + test "$ld_shlibs_CXX" = no && can_build_shared=no + + GCC_CXX="$GXX" + LD_CXX="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + # Dependencies to place before and after the object being linked: +predep_objects_CXX= +postdep_objects_CXX= +predeps_CXX= +postdeps_CXX= +compiler_lib_search_path_CXX= + +cat > conftest.$ac_ext <<_LT_EOF +class Foo +{ +public: + Foo (void) { a = 0; } +private: + int a; +}; +_LT_EOF + +if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + + # Sentinel used to keep track of whether or not we are before + # the conftest object file. + pre_test_object_deps_done=no + + for p in `eval "$output_verbose_link_cmd"`; do + case $p in + + -L* | -R* | -l*) + # Some compilers place space between "-{L,R}" and the path. + # Remove the space. + if test $p = "-L" || + test $p = "-R"; then + prev=$p + continue + else + prev= + fi + + if test "$pre_test_object_deps_done" = no; then + case $p in + -L* | -R*) + # Internal compiler library paths should come after those + # provided the user. The postdeps already come after the + # user supplied libs so there is no need to process them. + if test -z "$compiler_lib_search_path_CXX"; then + compiler_lib_search_path_CXX="${prev}${p}" + else + compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" + fi + ;; + # The "-l" case would never come before the object being + # linked, so don't bother handling this case. + esac + else + if test -z "$postdeps_CXX"; then + postdeps_CXX="${prev}${p}" + else + postdeps_CXX="${postdeps_CXX} ${prev}${p}" + fi + fi + ;; + + *.$objext) + # This assumes that the test object file only shows up + # once in the compiler output. + if test "$p" = "conftest.$objext"; then + pre_test_object_deps_done=yes + continue + fi + + if test "$pre_test_object_deps_done" = no; then + if test -z "$predep_objects_CXX"; then + predep_objects_CXX="$p" + else + predep_objects_CXX="$predep_objects_CXX $p" + fi + else + if test -z "$postdep_objects_CXX"; then + postdep_objects_CXX="$p" + else + postdep_objects_CXX="$postdep_objects_CXX $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling CXX test program" +fi + +$RM -f confest.$objext + +# PORTME: override above test on systems where it is broken +case $host_os in +interix[3-9]*) + # Interix 3.5 installs completely hosed .la files for C++, so rather than + # hack all around it, let's just trust "g++" to DTRT. + predep_objects_CXX= + postdep_objects_CXX= + postdeps_CXX= + ;; + +linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + if test "$solaris_use_stlport4" != yes; then + postdeps_CXX='-library=Cstd -library=Crun' + fi + ;; + esac + ;; + +solaris*) + case $cc_basename in + CC*) + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + # Adding this requires a known-good setup of shared libraries for + # Sun compiler versions before 5.6, else PIC objects from an old + # archive will be linked into the output, leading to subtle bugs. + if test "$solaris_use_stlport4" != yes; then + postdeps_CXX='-library=Cstd -library=Crun' + fi + ;; + esac + ;; +esac + + +case " $postdeps_CXX " in +*" -lc "*) archive_cmds_need_lc_CXX=no ;; +esac + compiler_lib_search_dirs_CXX= +if test -n "${compiler_lib_search_path_CXX}"; then + compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lt_prog_compiler_wl_CXX= +lt_prog_compiler_pic_CXX= +lt_prog_compiler_static_CXX= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 +$as_echo_n "checking for $compiler option to produce PIC... " >&6; } + + # C++ specific cases for pic, static, wl, etc. + if test "$GXX" = yes; then + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static_CXX='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic_CXX='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + lt_prog_compiler_pic_CXX='-DDLL_EXPORT' + ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic_CXX='-fno-common' + ;; + *djgpp*) + # DJGPP does not support shared libraries at all + lt_prog_compiler_pic_CXX= + ;; + interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic_CXX=-Kconform_pic + fi + ;; + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + ;; + *) + lt_prog_compiler_pic_CXX='-fPIC' + ;; + esac + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic_CXX='-fPIC -shared' + ;; + *) + lt_prog_compiler_pic_CXX='-fPIC' + ;; + esac + else + case $host_os in + aix[4-9]*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static_CXX='-Bstatic' + else + lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' + fi + ;; + chorus*) + case $cc_basename in + cxch68*) + # Green Hills C++ Compiler + # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" + ;; + esac + ;; + dgux*) + case $cc_basename in + ec++*) + lt_prog_compiler_pic_CXX='-KPIC' + ;; + ghcx*) + # Green Hills C++ Compiler + lt_prog_compiler_pic_CXX='-pic' + ;; + *) + ;; + esac + ;; + freebsd* | dragonfly*) + # FreeBSD uses GNU C++ + ;; + hpux9* | hpux10* | hpux11*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' + if test "$host_cpu" != ia64; then + lt_prog_compiler_pic_CXX='+Z' + fi + ;; + aCC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic_CXX='+Z' + ;; + esac + ;; + *) + ;; + esac + ;; + interix*) + # This is c89, which is MS Visual C++ (no shared libs) + # Anyone wants to do a port? + ;; + irix5* | irix6* | nonstopux*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='-non_shared' + # CC pic flag -KPIC is the default. + ;; + *) + ;; + esac + ;; + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # KAI C++ Compiler + lt_prog_compiler_wl_CXX='--backend -Wl,' + lt_prog_compiler_pic_CXX='-fPIC' + ;; + ecpc* ) + # old Intel C++ for x86_64 which still supported -KPIC. + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-static' + ;; + icpc* ) + # Intel C++, used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-fPIC' + lt_prog_compiler_static_CXX='-static' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-fpic' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + cxx*) + # Compaq C++ + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + lt_prog_compiler_pic_CXX= + lt_prog_compiler_static_CXX='-non_shared' + ;; + xlc* | xlC*) + # IBM XL 8.0 on PPC + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-qpic' + lt_prog_compiler_static_CXX='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + lt_prog_compiler_wl_CXX='-Qoption ld ' + ;; + esac + ;; + esac + ;; + lynxos*) + ;; + m88k*) + ;; + mvs*) + case $cc_basename in + cxx*) + lt_prog_compiler_pic_CXX='-W c,exportall' + ;; + *) + ;; + esac + ;; + netbsd* | netbsdelf*-gnu) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic_CXX='-fPIC -shared' + ;; + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + lt_prog_compiler_wl_CXX='--backend -Wl,' + ;; + RCC*) + # Rational C++ 2.4.1 + lt_prog_compiler_pic_CXX='-pic' + ;; + cxx*) + # Digital/Compaq C++ + lt_prog_compiler_wl_CXX='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + lt_prog_compiler_pic_CXX= + lt_prog_compiler_static_CXX='-non_shared' + ;; + *) + ;; + esac + ;; + psos*) + ;; + solaris*) + case $cc_basename in + CC*) + # Sun C++ 4.2, 5.x and Centerline C++ + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + lt_prog_compiler_wl_CXX='-Qoption ld ' + ;; + gcx*) + # Green Hills C++ Compiler + lt_prog_compiler_pic_CXX='-PIC' + ;; + *) + ;; + esac + ;; + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + lt_prog_compiler_pic_CXX='-pic' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + lcc*) + # Lucid + lt_prog_compiler_pic_CXX='-pic' + ;; + *) + ;; + esac + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + esac + ;; + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + lt_prog_compiler_pic_CXX='-KPIC' + ;; + *) + ;; + esac + ;; + vxworks*) + ;; + *) + lt_prog_compiler_can_build_shared_CXX=no + ;; + esac + fi + +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic_CXX= + ;; + *) + lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic_CXX" >&5 +$as_echo "$lt_prog_compiler_pic_CXX" >&6; } + + + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$lt_prog_compiler_pic_CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 +$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } +if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_works_CXX=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:14154: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:14158: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_pic_works_CXX=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } + +if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then + case $lt_prog_compiler_pic_CXX in + "" | " "*) ;; + *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; + esac +else + lt_prog_compiler_pic_CXX= + lt_prog_compiler_can_build_shared_CXX=no +fi + +fi + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } +if test "${lt_cv_prog_compiler_static_works_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_static_works_CXX=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_static_works_CXX=yes + fi + else + lt_cv_prog_compiler_static_works_CXX=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } + +if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then + : +else + lt_prog_compiler_static_CXX= +fi + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o_CXX=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:14253: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:14257: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_CXX=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o_CXX=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:14305: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:14309: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_CXX=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } + + + + +hard_links="nottested" +if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 +$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 +$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi +else + need_locks=no +fi + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + case $host_os in + aix[4-9]*) + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + ;; + pw32*) + export_symbols_cmds_CXX="$ltdll_cmds" + ;; + cygwin* | mingw* | cegcc*) + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;/^.*[ ]__nm__/s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' + ;; + linux* | k*bsd*-gnu) + link_all_deplibs_CXX=no + ;; + *) + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac + exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 +$as_echo "$ld_shlibs_CXX" >&6; } +test "$ld_shlibs_CXX" = no && can_build_shared=no + +with_gnu_ld_CXX=$with_gnu_ld + + + + + + +# +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc_CXX" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc_CXX=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $archive_cmds_CXX in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 +$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$lt_prog_compiler_wl_CXX + pic_flag=$lt_prog_compiler_pic_CXX + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag_CXX + allow_undefined_flag_CXX= + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + then + archive_cmds_need_lc_CXX=no + else + archive_cmds_need_lc_CXX=yes + fi + allow_undefined_flag_CXX=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc_CXX" >&5 +$as_echo "$archive_cmds_need_lc_CXX" >&6; } + ;; + esac + fi + ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 +$as_echo_n "checking dynamic linker characteristics... " >&6; } + +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[4-9]*) + version_type=linux + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[01] | aix4.[01].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[45]*) + version_type=linux + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$host_os in + yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` + if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then + # It is most probably a Windows format PATH printed by + # mingw gcc, but we are running on Cygwin. Gcc prints its search + # path with ; separators, and with drive letters. We can handle the + # drive letters (cygwin fileutils understands them), so leave them, + # especially as we might pass files found there to a mingw objdump, + # which wouldn't understand a cygwinified path. Ahh. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + esac + ;; + + *) + library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + ;; + esac + dynamic_linker='Win32 ld.exe' + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd1*) + dynamic_linker=no + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[123]*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[01]* | freebsdelf3.[01]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ + freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555. + postinstall_cmds='chmod 555 $lib' + ;; + +interix[3-9]*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be Linux ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + # Some binutils ld are patched to set DT_RUNPATH + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + shlibpath_overrides_runpath=yes +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[89] | openbsd2.[89].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 +$as_echo "$dynamic_linker" >&6; } +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 +$as_echo_n "checking how to hardcode library paths into programs... " >&6; } +hardcode_action_CXX= +if test -n "$hardcode_libdir_flag_spec_CXX" || + test -n "$runpath_var_CXX" || + test "X$hardcode_automatic_CXX" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$hardcode_direct_CXX" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" != no && + test "$hardcode_minus_L_CXX" != no; then + # Linking always hardcodes the temporary library directory. + hardcode_action_CXX=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action_CXX=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action_CXX=unsupported +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 +$as_echo "$hardcode_action_CXX" >&6; } + +if test "$hardcode_action_CXX" = relink || + test "$inherit_rpath_CXX" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi + + + + + + + + fi # test -n "$compiler" + + CC=$lt_save_CC + LDCXX=$LD + LD=$lt_save_LD + GCC=$lt_save_GCC + with_gnu_ld=$lt_save_with_gnu_ld + lt_cv_path_LDCXX=$lt_cv_path_LD + lt_cv_path_LD=$lt_save_path_LD + lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld + lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld +fi # test "$_lt_caught_CXX_error" != yes + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + + ac_ext=f +ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' +ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_f77_compiler_gnu + + +archive_cmds_need_lc_F77=no +allow_undefined_flag_F77= +always_export_symbols_F77=no +archive_expsym_cmds_F77= +export_dynamic_flag_spec_F77= +hardcode_direct_F77=no +hardcode_direct_absolute_F77=no +hardcode_libdir_flag_spec_F77= +hardcode_libdir_flag_spec_ld_F77= +hardcode_libdir_separator_F77= +hardcode_minus_L_F77=no +hardcode_automatic_F77=no +inherit_rpath_F77=no +module_cmds_F77= +module_expsym_cmds_F77= +link_all_deplibs_F77=unknown +old_archive_cmds_F77=$old_archive_cmds +no_undefined_flag_F77= +whole_archive_flag_spec_F77= +enable_shared_with_static_runtimes_F77=no + +# Source file extension for f77 test sources. +ac_ext=f + +# Object file extension for compiled f77 test sources. +objext=o +objext_F77=$objext + +# No sense in running all these tests if we already determined that +# the F77 compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_F77" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + + + # save warnings/boilerplate of simple test code + ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* + + ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* + + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + CC=${F77-"f77"} + compiler=$CC + compiler_F77=$CC + for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` + + GCC=$G77 + if test -n "$compiler"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 +$as_echo_n "checking if libtool supports shared libraries... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 +$as_echo "$can_build_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 +$as_echo_n "checking whether to build shared libraries... " >&6; } + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[4-9]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 +$as_echo "$enable_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 +$as_echo_n "checking whether to build static libraries... " >&6; } + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 +$as_echo "$enable_static" >&6; } + + GCC_F77="$G77" + LD_F77="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + lt_prog_compiler_wl_F77= +lt_prog_compiler_pic_F77= +lt_prog_compiler_static_F77= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 +$as_echo_n "checking for $compiler option to produce PIC... " >&6; } + + if test "$GCC" = yes; then + lt_prog_compiler_wl_F77='-Wl,' + lt_prog_compiler_static_F77='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static_F77='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic_F77='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + lt_prog_compiler_pic_F77='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + lt_prog_compiler_pic_F77='-DDLL_EXPORT' + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic_F77='-fno-common' + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic_F77='-fPIC' + ;; + esac + ;; + + interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + lt_prog_compiler_can_build_shared_F77=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic_F77='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic_F77=-Kconform_pic + fi + ;; + + *) + lt_prog_compiler_pic_F77='-fPIC' + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + lt_prog_compiler_wl_F77='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static_F77='-Bstatic' + else + lt_prog_compiler_static_F77='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + lt_prog_compiler_pic_F77='-DDLL_EXPORT' + ;; + + hpux9* | hpux10* | hpux11*) + lt_prog_compiler_wl_F77='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic_F77='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + lt_prog_compiler_static_F77='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + lt_prog_compiler_wl_F77='-Wl,' + # PIC (with -KPIC) is the default. + lt_prog_compiler_static_F77='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + # old Intel for x86_64 which still supported -KPIC. + ecc*) + lt_prog_compiler_wl_F77='-Wl,' + lt_prog_compiler_pic_F77='-KPIC' + lt_prog_compiler_static_F77='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + lt_prog_compiler_wl_F77='-Wl,' + lt_prog_compiler_pic_F77='-fPIC' + lt_prog_compiler_static_F77='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + lt_prog_compiler_wl_F77='-Wl,' + lt_prog_compiler_pic_F77='--shared' + lt_prog_compiler_static_F77='--static' + ;; + pgcc* | pgf77* | pgf90* | pgf95*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + lt_prog_compiler_wl_F77='-Wl,' + lt_prog_compiler_pic_F77='-fpic' + lt_prog_compiler_static_F77='-Bstatic' + ;; + ccc*) + lt_prog_compiler_wl_F77='-Wl,' + # All Alpha code is PIC. + lt_prog_compiler_static_F77='-non_shared' + ;; + xl*) + # IBM XL C 8.0/Fortran 10.1 on PPC + lt_prog_compiler_wl_F77='-Wl,' + lt_prog_compiler_pic_F77='-qpic' + lt_prog_compiler_static_F77='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C 5.9 + lt_prog_compiler_pic_F77='-KPIC' + lt_prog_compiler_static_F77='-Bstatic' + lt_prog_compiler_wl_F77='-Wl,' + ;; + *Sun\ F*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + lt_prog_compiler_pic_F77='-KPIC' + lt_prog_compiler_static_F77='-Bstatic' + lt_prog_compiler_wl_F77='' + ;; + esac + ;; + esac + ;; + + newsos6) + lt_prog_compiler_pic_F77='-KPIC' + lt_prog_compiler_static_F77='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic_F77='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + lt_prog_compiler_wl_F77='-Wl,' + # All OSF/1 code is PIC. + lt_prog_compiler_static_F77='-non_shared' + ;; + + rdos*) + lt_prog_compiler_static_F77='-non_shared' + ;; + + solaris*) + lt_prog_compiler_pic_F77='-KPIC' + lt_prog_compiler_static_F77='-Bstatic' + case $cc_basename in + f77* | f90* | f95*) + lt_prog_compiler_wl_F77='-Qoption ld ';; + *) + lt_prog_compiler_wl_F77='-Wl,';; + esac + ;; + + sunos4*) + lt_prog_compiler_wl_F77='-Qoption ld ' + lt_prog_compiler_pic_F77='-PIC' + lt_prog_compiler_static_F77='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + lt_prog_compiler_wl_F77='-Wl,' + lt_prog_compiler_pic_F77='-KPIC' + lt_prog_compiler_static_F77='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + lt_prog_compiler_pic_F77='-Kconform_pic' + lt_prog_compiler_static_F77='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + lt_prog_compiler_wl_F77='-Wl,' + lt_prog_compiler_pic_F77='-KPIC' + lt_prog_compiler_static_F77='-Bstatic' + ;; + + unicos*) + lt_prog_compiler_wl_F77='-Wl,' + lt_prog_compiler_can_build_shared_F77=no + ;; + + uts4*) + lt_prog_compiler_pic_F77='-pic' + lt_prog_compiler_static_F77='-Bstatic' + ;; + + *) + lt_prog_compiler_can_build_shared_F77=no + ;; + esac + fi + +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic_F77= + ;; + *) + lt_prog_compiler_pic_F77="$lt_prog_compiler_pic_F77" + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic_F77" >&5 +$as_echo "$lt_prog_compiler_pic_F77" >&6; } + + + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$lt_prog_compiler_pic_F77"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5 +$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... " >&6; } +if test "${lt_cv_prog_compiler_pic_works_F77+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_works_F77=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic_F77" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:15700: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:15704: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_pic_works_F77=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_F77" >&5 +$as_echo "$lt_cv_prog_compiler_pic_works_F77" >&6; } + +if test x"$lt_cv_prog_compiler_pic_works_F77" = xyes; then + case $lt_prog_compiler_pic_F77 in + "" | " "*) ;; + *) lt_prog_compiler_pic_F77=" $lt_prog_compiler_pic_F77" ;; + esac +else + lt_prog_compiler_pic_F77= + lt_prog_compiler_can_build_shared_F77=no +fi + +fi + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl_F77 eval lt_tmp_static_flag=\"$lt_prog_compiler_static_F77\" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } +if test "${lt_cv_prog_compiler_static_works_F77+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_static_works_F77=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_static_works_F77=yes + fi + else + lt_cv_prog_compiler_static_works_F77=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_F77" >&5 +$as_echo "$lt_cv_prog_compiler_static_works_F77" >&6; } + +if test x"$lt_cv_prog_compiler_static_works_F77" = xyes; then + : +else + lt_prog_compiler_static_F77= +fi + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o_F77=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:15799: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:15803: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_F77=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_F77" >&5 +$as_echo "$lt_cv_prog_compiler_c_o_F77" >&6; } + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o_F77=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:15851: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:15855: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_F77=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_F77" >&5 +$as_echo "$lt_cv_prog_compiler_c_o_F77" >&6; } + + + + +hard_links="nottested" +if test "$lt_cv_prog_compiler_c_o_F77" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 +$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 +$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi +else + need_locks=no +fi + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= + allow_undefined_flag_F77= + always_export_symbols_F77=no + archive_cmds_F77= + archive_expsym_cmds_F77= + compiler_needs_object_F77=no + enable_shared_with_static_runtimes_F77=no + export_dynamic_flag_spec_F77= + export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + hardcode_automatic_F77=no + hardcode_direct_F77=no + hardcode_direct_absolute_F77=no + hardcode_libdir_flag_spec_F77= + hardcode_libdir_flag_spec_ld_F77= + hardcode_libdir_separator_F77= + hardcode_minus_L_F77=no + hardcode_shlibpath_var_F77=unsupported + inherit_rpath_F77=no + link_all_deplibs_F77=unknown + module_cmds_F77= + module_expsym_cmds_F77= + old_archive_from_new_cmds_F77= + old_archive_from_expsyms_cmds_F77= + thread_safe_flag_spec_F77= + whole_archive_flag_spec_F77= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + include_expsyms_F77= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + exclude_expsyms_F77='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + linux* | k*bsd*-gnu) + link_all_deplibs_F77=no + ;; + esac + + ld_shlibs_F77=yes + if test "$with_gnu_ld" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec_F77='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec_F77="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec_F77= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[3-9]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + ld_shlibs_F77=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.9.1, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to modify your PATH +*** so that a non-GNU linker is found, and then restart. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_F77='' + ;; + m68k) + archive_cmds_F77='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec_F77='-L$libdir' + hardcode_minus_L_F77=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + allow_undefined_flag_F77=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds_F77='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + ld_shlibs_F77=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, F77) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec_F77='-L$libdir' + allow_undefined_flag_F77=unsupported + always_export_symbols_F77=no + enable_shared_with_static_runtimes_F77=yes + export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + archive_expsym_cmds_F77='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs_F77=no + fi + ;; + + interix[3-9]*) + hardcode_direct_F77=no + hardcode_shlibpath_var_F77=no + hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' + export_dynamic_flag_spec_F77='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds_F77='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag= + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers + whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + whole_archive_flag_spec_F77= + tmp_sharedflag='--shared' ;; + xl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + whole_archive_flag_spec_F77='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object_F77=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + archive_cmds_F77='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds_F77='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + whole_archive_flag_spec_F77='--whole-archive$convenience --no-whole-archive' + hardcode_libdir_flag_spec_F77= + hardcode_libdir_flag_spec_ld_F77='-rpath $libdir' + archive_cmds_F77='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds_F77='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + ld_shlibs_F77=no + fi + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds_F77='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + ld_shlibs_F77=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs_F77=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) + ld_shlibs_F77=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' + archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs_F77=no + fi + ;; + esac + ;; + + sunos4*) + archive_cmds_F77='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + hardcode_direct_F77=yes + hardcode_shlibpath_var_F77=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs_F77=no + fi + ;; + esac + + if test "$ld_shlibs_F77" = no; then + runpath_var= + hardcode_libdir_flag_spec_F77= + export_dynamic_flag_spec_F77= + whole_archive_flag_spec_F77= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + allow_undefined_flag_F77=unsupported + always_export_symbols_F77=yes + archive_expsym_cmds_F77='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + hardcode_minus_L_F77=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct_F77=unsupported + fi + ;; + + aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + export_symbols_cmds_F77='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds_F77='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + archive_cmds_F77='' + hardcode_direct_F77=yes + hardcode_direct_absolute_F77=yes + hardcode_libdir_separator_F77=':' + link_all_deplibs_F77=yes + file_list_spec_F77='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct_F77=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + hardcode_minus_L_F77=yes + hardcode_libdir_flag_spec_F77='-L$libdir' + hardcode_libdir_separator_F77= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + link_all_deplibs_F77=no + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + export_dynamic_flag_spec_F77='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + always_export_symbols_F77=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + allow_undefined_flag_F77='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + cat > conftest.$ac_ext <<_ACEOF + program main + + end +_ACEOF +if ac_fn_f77_try_link "$LINENO"; then : + +lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\(.*\)$/\1/ + p + } + }' +aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +# Check for a 64-bit object if we didn't find anything. +if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" + archive_expsym_cmds_F77='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec_F77='${wl}-R $libdir:/usr/lib:/lib' + allow_undefined_flag_F77="-z nodefs" + archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + cat > conftest.$ac_ext <<_ACEOF + program main + + end +_ACEOF +if ac_fn_f77_try_link "$LINENO"; then : + +lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\(.*\)$/\1/ + p + } + }' +aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +# Check for a 64-bit object if we didn't find anything. +if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + no_undefined_flag_F77=' ${wl}-bernotok' + allow_undefined_flag_F77=' ${wl}-berok' + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec_F77='$convenience' + archive_cmds_need_lc_F77=yes + # This is similar to how AIX traditionally builds its shared libraries. + archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_F77='' + ;; + m68k) + archive_cmds_F77='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec_F77='-L$libdir' + hardcode_minus_L_F77=yes + ;; + esac + ;; + + bsdi[45]*) + export_dynamic_flag_spec_F77=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + hardcode_libdir_flag_spec_F77=' ' + allow_undefined_flag_F77=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds_F77='$CC -o $lib $libobjs $compiler_flags `$ECHO "X$deplibs" | $Xsed -e '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + old_archive_from_new_cmds_F77='true' + # FIXME: Should let the user specify the lib program. + old_archive_cmds_F77='lib -OUT:$oldlib$oldobjs$old_deplibs' + fix_srcfile_path_F77='`cygpath -w "$srcfile"`' + enable_shared_with_static_runtimes_F77=yes + ;; + + darwin* | rhapsody*) + + + archive_cmds_need_lc_F77=no + hardcode_direct_F77=no + hardcode_automatic_F77=yes + hardcode_shlibpath_var_F77=unsupported + whole_archive_flag_spec_F77='' + link_all_deplibs_F77=yes + allow_undefined_flag_F77="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=echo + archive_cmds_F77="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + module_cmds_F77="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + archive_expsym_cmds_F77="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + module_expsym_cmds_F77="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + + else + ld_shlibs_F77=no + fi + + ;; + + dgux*) + archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec_F77='-L$libdir' + hardcode_shlibpath_var_F77=no + ;; + + freebsd1*) + ld_shlibs_F77=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + hardcode_libdir_flag_spec_F77='-R$libdir' + hardcode_direct_F77=yes + hardcode_shlibpath_var_F77=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2*) + archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct_F77=yes + hardcode_minus_L_F77=yes + hardcode_shlibpath_var_F77=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + archive_cmds_F77='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec_F77='-R$libdir' + hardcode_direct_F77=yes + hardcode_shlibpath_var_F77=no + ;; + + hpux9*) + if test "$GCC" = yes; then + archive_cmds_F77='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + archive_cmds_F77='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' + hardcode_libdir_separator_F77=: + hardcode_direct_F77=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L_F77=yes + export_dynamic_flag_spec_F77='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes -a "$with_gnu_ld" = no; then + archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds_F77='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' + hardcode_libdir_flag_spec_ld_F77='+b $libdir' + hardcode_libdir_separator_F77=: + hardcode_direct_F77=yes + hardcode_direct_absolute_F77=yes + export_dynamic_flag_spec_F77='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L_F77=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes -a "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' + hardcode_libdir_separator_F77=: + + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct_F77=no + hardcode_shlibpath_var_F77=no + ;; + *) + hardcode_direct_F77=yes + hardcode_direct_absolute_F77=yes + export_dynamic_flag_spec_F77='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L_F77=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + cat > conftest.$ac_ext <<_ACEOF +int foo(void) {} +_ACEOF +if ac_fn_f77_try_link "$LINENO"; then : + archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" + else + archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + archive_cmds_need_lc_F77='no' + hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator_F77=: + inherit_rpath_F77=yes + link_all_deplibs_F77=yes + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + archive_cmds_F77='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + hardcode_libdir_flag_spec_F77='-R$libdir' + hardcode_direct_F77=yes + hardcode_shlibpath_var_F77=no + ;; + + newsos6) + archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct_F77=yes + hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator_F77=: + hardcode_shlibpath_var_F77=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + hardcode_direct_F77=yes + hardcode_shlibpath_var_F77=no + hardcode_direct_absolute_F77=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' + export_dynamic_flag_spec_F77='${wl}-E' + else + case $host_os in + openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) + archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec_F77='-R$libdir' + ;; + *) + archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' + ;; + esac + fi + else + ld_shlibs_F77=no + fi + ;; + + os2*) + hardcode_libdir_flag_spec_F77='-L$libdir' + hardcode_minus_L_F77=yes + allow_undefined_flag_F77=unsupported + archive_cmds_F77='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$ECHO DATA >> $output_objdir/$libname.def~$ECHO " SINGLE NONSHARED" >> $output_objdir/$libname.def~$ECHO EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + old_archive_from_new_cmds_F77='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + allow_undefined_flag_F77=' -expect_unresolved \*' + archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + fi + archive_cmds_need_lc_F77='no' + hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator_F77=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' + else + allow_undefined_flag_F77=' -expect_unresolved \*' + archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds_F77='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + hardcode_libdir_flag_spec_F77='-rpath $libdir' + fi + archive_cmds_need_lc_F77='no' + hardcode_libdir_separator_F77=: + ;; + + solaris*) + no_undefined_flag_F77=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + archive_cmds_F77='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_F77='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + archive_cmds_F77='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + archive_expsym_cmds_F77='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + archive_cmds_F77='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_F77='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + hardcode_libdir_flag_spec_F77='-R$libdir' + hardcode_shlibpath_var_F77=no + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + whole_archive_flag_spec_F77='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + whole_archive_flag_spec_F77='-z allextract$convenience -z defaultextract' + fi + ;; + esac + link_all_deplibs_F77=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + archive_cmds_F77='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds_F77='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + hardcode_libdir_flag_spec_F77='-L$libdir' + hardcode_direct_F77=yes + hardcode_minus_L_F77=yes + hardcode_shlibpath_var_F77=no + ;; + + sysv4) + case $host_vendor in + sni) + archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct_F77=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + archive_cmds_F77='$LD -G -o $lib $libobjs $deplibs $linker_flags' + reload_cmds_F77='$CC -r -o $output$reload_objs' + hardcode_direct_F77=no + ;; + motorola) + archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct_F77=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + hardcode_shlibpath_var_F77=no + ;; + + sysv4.3*) + archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var_F77=no + export_dynamic_flag_spec_F77='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var_F77=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + ld_shlibs_F77=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag_F77='${wl}-z,text' + archive_cmds_need_lc_F77=no + hardcode_shlibpath_var_F77=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds_F77='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds_F77='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + no_undefined_flag_F77='${wl}-z,text' + allow_undefined_flag_F77='${wl}-z,nodefs' + archive_cmds_need_lc_F77=no + hardcode_shlibpath_var_F77=no + hardcode_libdir_flag_spec_F77='${wl}-R,$libdir' + hardcode_libdir_separator_F77=':' + link_all_deplibs_F77=yes + export_dynamic_flag_spec_F77='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds_F77='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds_F77='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec_F77='-L$libdir' + hardcode_shlibpath_var_F77=no + ;; + + *) + ld_shlibs_F77=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + export_dynamic_flag_spec_F77='${wl}-Blargedynsym' + ;; + esac fi fi -fi -/bin/rm s2 s1 -echo "checking for a time step comparison checker ... " $tsc -cp $tsc tscompare -currPath=`pwd` -TSCOMPARE_abs="$currPath"'/'tscompare -cd .. + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_F77" >&5 +$as_echo "$ld_shlibs_F77" >&6; } +test "$ld_shlibs_F77" = no && can_build_shared=no + +with_gnu_ld_F77=$with_gnu_ld + + + + # -# Create an absolute path for the $INSTALL function -# named INSTALL_abs -# (note m4 expansions [ = left bracket, ] = right bracket) -#echo "HKM - INSTALL = " $INSTALL -case "$INSTALL" in - [\\/$]* | ?:[\\/]* ) - INSTALL_abs="$INSTALL" ;; - *) - currPath=`pwd` - INSTALL_abs="$currPath"'/'"$INSTALL" ;; +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc_F77" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc_F77=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $archive_cmds_F77 in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 +$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$lt_prog_compiler_wl_F77 + pic_flag=$lt_prog_compiler_pic_F77 + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag_F77 + allow_undefined_flag_F77= + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_F77 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds_F77 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + then + archive_cmds_need_lc_F77=no + else + archive_cmds_need_lc_F77=yes + fi + allow_undefined_flag_F77=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc_F77" >&5 +$as_echo "$archive_cmds_need_lc_F77" >&6; } + ;; + esac + fi + ;; esac -#echo 'INSTALL_abs = ' $INSTALL_abs + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 +$as_echo_n "checking dynamic linker characteristics... " >&6; } + +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[4-9]*) + version_type=linux + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[01] | aix4.[01].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[45]*) + version_type=linux + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$host_os in + yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` + if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then + # It is most probably a Windows format PATH printed by + # mingw gcc, but we are running on Cygwin. Gcc prints its search + # path with ; separators, and with drive letters. We can handle the + # drive letters (cygwin fileutils understands them), so leave them, + # especially as we might pass files found there to a mingw objdump, + # which wouldn't understand a cygwinified path. Ahh. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + esac + ;; + + *) + library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + ;; + esac + dynamic_linker='Win32 ld.exe' + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd1*) + dynamic_linker=no + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[123]*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[01]* | freebsdelf3.[01]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ + freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555. + postinstall_cmds='chmod 555 $lib' + ;; + +interix[3-9]*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be Linux ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + # Some binutils ld are patched to set DT_RUNPATH + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_F77\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_F77\"" + cat > conftest.$ac_ext <<_ACEOF + program main + + end +_ACEOF +if ac_fn_f77_try_link "$LINENO"; then : + if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + shlibpath_overrides_runpath=yes +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[89] | openbsd2.[89].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 +$as_echo "$dynamic_linker" >&6; } +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 +$as_echo_n "checking how to hardcode library paths into programs... " >&6; } +hardcode_action_F77= +if test -n "$hardcode_libdir_flag_spec_F77" || + test -n "$runpath_var_F77" || + test "X$hardcode_automatic_F77" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$hardcode_direct_F77" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, F77)" != no && + test "$hardcode_minus_L_F77" != no; then + # Linking always hardcodes the temporary library directory. + hardcode_action_F77=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action_F77=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action_F77=unsupported +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_F77" >&5 +$as_echo "$hardcode_action_F77" >&6; } + +if test "$hardcode_action_F77" = relink || + test "$inherit_rpath_F77" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi + + + + + + + + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC="$lt_save_CC" +fi # test "$_lt_disable_F77" != yes + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + + ac_ext=${ac_fc_srcext-f} +ac_compile='$FC -c $FCFLAGS $ac_fcflags_srcext conftest.$ac_ext >&5' +ac_link='$FC -o conftest$ac_exeext $FCFLAGS $LDFLAGS $ac_fcflags_srcext conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_fc_compiler_gnu + + +archive_cmds_need_lc_FC=no +allow_undefined_flag_FC= +always_export_symbols_FC=no +archive_expsym_cmds_FC= +export_dynamic_flag_spec_FC= +hardcode_direct_FC=no +hardcode_direct_absolute_FC=no +hardcode_libdir_flag_spec_FC= +hardcode_libdir_flag_spec_ld_FC= +hardcode_libdir_separator_FC= +hardcode_minus_L_FC=no +hardcode_automatic_FC=no +inherit_rpath_FC=no +module_cmds_FC= +module_expsym_cmds_FC= +link_all_deplibs_FC=unknown +old_archive_cmds_FC=$old_archive_cmds +no_undefined_flag_FC= +whole_archive_flag_spec_FC= +enable_shared_with_static_runtimes_FC=no + +# Source file extension for fc test sources. +ac_ext=${ac_fc_srcext-f} + +# Object file extension for compiled fc test sources. +objext=o +objext_FC=$objext + +# No sense in running all these tests if we already determined that +# the FC compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_FC" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + + + # save warnings/boilerplate of simple test code + ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* + + ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* + + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + CC=${FC-"f95"} + compiler=$CC + GCC=$ac_cv_fc_compiler_gnu + + compiler_FC=$CC + for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` + + + if test -n "$compiler"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 +$as_echo_n "checking if libtool supports shared libraries... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 +$as_echo "$can_build_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 +$as_echo_n "checking whether to build shared libraries... " >&6; } + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[4-9]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 +$as_echo "$enable_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 +$as_echo_n "checking whether to build static libraries... " >&6; } + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 +$as_echo "$enable_static" >&6; } + + GCC_FC="$ac_cv_fc_compiler_gnu" + LD_FC="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + # Dependencies to place before and after the object being linked: +predep_objects_FC= +postdep_objects_FC= +predeps_FC= +postdeps_FC= +compiler_lib_search_path_FC= + +cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer a + a=0 + return + end +_LT_EOF + +if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + + # Sentinel used to keep track of whether or not we are before + # the conftest object file. + pre_test_object_deps_done=no + + for p in `eval "$output_verbose_link_cmd"`; do + case $p in + + -L* | -R* | -l*) + # Some compilers place space between "-{L,R}" and the path. + # Remove the space. + if test $p = "-L" || + test $p = "-R"; then + prev=$p + continue + else + prev= + fi + + if test "$pre_test_object_deps_done" = no; then + case $p in + -L* | -R*) + # Internal compiler library paths should come after those + # provided the user. The postdeps already come after the + # user supplied libs so there is no need to process them. + if test -z "$compiler_lib_search_path_FC"; then + compiler_lib_search_path_FC="${prev}${p}" + else + compiler_lib_search_path_FC="${compiler_lib_search_path_FC} ${prev}${p}" + fi + ;; + # The "-l" case would never come before the object being + # linked, so don't bother handling this case. + esac + else + if test -z "$postdeps_FC"; then + postdeps_FC="${prev}${p}" + else + postdeps_FC="${postdeps_FC} ${prev}${p}" + fi + fi + ;; + + *.$objext) + # This assumes that the test object file only shows up + # once in the compiler output. + if test "$p" = "conftest.$objext"; then + pre_test_object_deps_done=yes + continue + fi + + if test "$pre_test_object_deps_done" = no; then + if test -z "$predep_objects_FC"; then + predep_objects_FC="$p" + else + predep_objects_FC="$predep_objects_FC $p" + fi + else + if test -z "$postdep_objects_FC"; then + postdep_objects_FC="$p" + else + postdep_objects_FC="$postdep_objects_FC $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling FC test program" +fi + +$RM -f confest.$objext + +# PORTME: override above test on systems where it is broken + + +case " $postdeps_FC " in +*" -lc "*) archive_cmds_need_lc_FC=no ;; +esac + compiler_lib_search_dirs_FC= +if test -n "${compiler_lib_search_path_FC}"; then + compiler_lib_search_dirs_FC=`echo " ${compiler_lib_search_path_FC}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` +fi + + + + + + + + + + + + + + lt_prog_compiler_wl_FC= +lt_prog_compiler_pic_FC= +lt_prog_compiler_static_FC= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 +$as_echo_n "checking for $compiler option to produce PIC... " >&6; } + + if test "$GCC" = yes; then + lt_prog_compiler_wl_FC='-Wl,' + lt_prog_compiler_static_FC='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static_FC='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic_FC='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + lt_prog_compiler_pic_FC='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + lt_prog_compiler_pic_FC='-DDLL_EXPORT' + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic_FC='-fno-common' + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic_FC='-fPIC' + ;; + esac + ;; + + interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + lt_prog_compiler_can_build_shared_FC=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic_FC='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic_FC=-Kconform_pic + fi + ;; + + *) + lt_prog_compiler_pic_FC='-fPIC' + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + lt_prog_compiler_wl_FC='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static_FC='-Bstatic' + else + lt_prog_compiler_static_FC='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + lt_prog_compiler_pic_FC='-DDLL_EXPORT' + ;; + + hpux9* | hpux10* | hpux11*) + lt_prog_compiler_wl_FC='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic_FC='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + lt_prog_compiler_static_FC='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + lt_prog_compiler_wl_FC='-Wl,' + # PIC (with -KPIC) is the default. + lt_prog_compiler_static_FC='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + # old Intel for x86_64 which still supported -KPIC. + ecc*) + lt_prog_compiler_wl_FC='-Wl,' + lt_prog_compiler_pic_FC='-KPIC' + lt_prog_compiler_static_FC='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + lt_prog_compiler_wl_FC='-Wl,' + lt_prog_compiler_pic_FC='-fPIC' + lt_prog_compiler_static_FC='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + lt_prog_compiler_wl_FC='-Wl,' + lt_prog_compiler_pic_FC='--shared' + lt_prog_compiler_static_FC='--static' + ;; + pgcc* | pgf77* | pgf90* | pgf95*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + lt_prog_compiler_wl_FC='-Wl,' + lt_prog_compiler_pic_FC='-fpic' + lt_prog_compiler_static_FC='-Bstatic' + ;; + ccc*) + lt_prog_compiler_wl_FC='-Wl,' + # All Alpha code is PIC. + lt_prog_compiler_static_FC='-non_shared' + ;; + xl*) + # IBM XL C 8.0/Fortran 10.1 on PPC + lt_prog_compiler_wl_FC='-Wl,' + lt_prog_compiler_pic_FC='-qpic' + lt_prog_compiler_static_FC='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C 5.9 + lt_prog_compiler_pic_FC='-KPIC' + lt_prog_compiler_static_FC='-Bstatic' + lt_prog_compiler_wl_FC='-Wl,' + ;; + *Sun\ F*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + lt_prog_compiler_pic_FC='-KPIC' + lt_prog_compiler_static_FC='-Bstatic' + lt_prog_compiler_wl_FC='' + ;; + esac + ;; + esac + ;; + + newsos6) + lt_prog_compiler_pic_FC='-KPIC' + lt_prog_compiler_static_FC='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic_FC='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + lt_prog_compiler_wl_FC='-Wl,' + # All OSF/1 code is PIC. + lt_prog_compiler_static_FC='-non_shared' + ;; + + rdos*) + lt_prog_compiler_static_FC='-non_shared' + ;; + + solaris*) + lt_prog_compiler_pic_FC='-KPIC' + lt_prog_compiler_static_FC='-Bstatic' + case $cc_basename in + f77* | f90* | f95*) + lt_prog_compiler_wl_FC='-Qoption ld ';; + *) + lt_prog_compiler_wl_FC='-Wl,';; + esac + ;; + + sunos4*) + lt_prog_compiler_wl_FC='-Qoption ld ' + lt_prog_compiler_pic_FC='-PIC' + lt_prog_compiler_static_FC='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + lt_prog_compiler_wl_FC='-Wl,' + lt_prog_compiler_pic_FC='-KPIC' + lt_prog_compiler_static_FC='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + lt_prog_compiler_pic_FC='-Kconform_pic' + lt_prog_compiler_static_FC='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + lt_prog_compiler_wl_FC='-Wl,' + lt_prog_compiler_pic_FC='-KPIC' + lt_prog_compiler_static_FC='-Bstatic' + ;; + + unicos*) + lt_prog_compiler_wl_FC='-Wl,' + lt_prog_compiler_can_build_shared_FC=no + ;; + + uts4*) + lt_prog_compiler_pic_FC='-pic' + lt_prog_compiler_static_FC='-Bstatic' + ;; + + *) + lt_prog_compiler_can_build_shared_FC=no + ;; + esac + fi + +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic_FC= + ;; + *) + lt_prog_compiler_pic_FC="$lt_prog_compiler_pic_FC" + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic_FC" >&5 +$as_echo "$lt_prog_compiler_pic_FC" >&6; } + # -# See if the install rule accepts the -v flag +# Check to make sure the PIC flag actually works. # -$INSTALL -v License.txt config > config/e.out 2>&1 -dd=$? -INSTALL_VERBOSE= -if test "$dd" = "0" ; then - INSTALL_VERBOSE="-v" +if test -n "$lt_prog_compiler_pic_FC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_FC works" >&5 +$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_FC works... " >&6; } +if test "${lt_cv_prog_compiler_pic_works_FC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_works_FC=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic_FC" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:18309: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:18313: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_pic_works_FC=yes + fi + fi + $RM conftest* + fi -if test -e "config/License.txt" ; then - rm -f config/License.txt +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_FC" >&5 +$as_echo "$lt_cv_prog_compiler_pic_works_FC" >&6; } + +if test x"$lt_cv_prog_compiler_pic_works_FC" = xyes; then + case $lt_prog_compiler_pic_FC in + "" | " "*) ;; + *) lt_prog_compiler_pic_FC=" $lt_prog_compiler_pic_FC" ;; + esac +else + lt_prog_compiler_pic_FC= + lt_prog_compiler_can_build_shared_FC=no fi -if test -e config/e.out ; then - rm -f e.out + +fi + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl_FC eval lt_tmp_static_flag=\"$lt_prog_compiler_static_FC\" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } +if test "${lt_cv_prog_compiler_static_works_FC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_static_works_FC=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_static_works_FC=yes + fi + else + lt_cv_prog_compiler_static_works_FC=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_FC" >&5 +$as_echo "$lt_cv_prog_compiler_static_works_FC" >&6; } + +if test x"$lt_cv_prog_compiler_static_works_FC" = xyes; then + : +else + lt_prog_compiler_static_FC= fi - ac_config_files="$ac_config_files Makefile Cantera/Makefile Cantera/src/Makefile Cantera/src/base/Makefile Cantera/src/zeroD/Makefile Cantera/src/oneD/Makefile Cantera/src/converters/Makefile Cantera/src/transport/Makefile Cantera/src/thermo/Makefile Cantera/src/kinetics/Makefile Cantera/src/numerics/Makefile Cantera/src/spectra/Makefile Cantera/src/equil/Makefile Cantera/clib/src/Makefile Cantera/fortran/src/Makefile Cantera/fortran/f77demos/f77demos.mak Cantera/fortran/f77demos/Makefile Cantera/matlab/Makefile Cantera/matlab/setup_matlab.py Cantera/python/Makefile Cantera/python/setup.py Cantera/cxx/Makefile Cantera/cxx/src/Makefile Cantera/cxx/demos/Makefile Cantera/cxx/demos/combustor/Makefile Cantera/cxx/demos/combustor/Makefile.install Cantera/cxx/demos/flamespeed/Makefile Cantera/cxx/demos/flamespeed/Makefile.install Cantera/cxx/demos/kinetics1/Makefile Cantera/cxx/demos/kinetics1/Makefile.install Cantera/cxx/demos/NASA_coeffs/Makefile Cantera/cxx/demos/NASA_coeffs/Makefile.install Cantera/cxx/demos/rankine/Makefile Cantera/cxx/demos/rankine/Makefile.install Cantera/cxx/include/Cantera.mak Cantera/cxx/include/Cantera_bt.mak Cantera/user/Makefile Cantera/python/src/Makefile Cantera/python/examples/Makefile Cantera/python/examples/equilibrium/Makefile Cantera/python/examples/equilibrium/adiabatic_flame/Makefile Cantera/python/examples/equilibrium/multiphase_plasma/Makefile Cantera/python/examples/equilibrium/simple_test/Makefile Cantera/python/examples/equilibrium/stoich_flame/Makefile Cantera/python/examples/gasdynamics/isentropic/Makefile Cantera/python/examples/gasdynamics/soundSpeed/Makefile Cantera/python/examples/flames/adiabatic_flame/Makefile Cantera/python/examples/flames/flame1/Makefile Cantera/python/examples/flames/flame2/Makefile Cantera/python/examples/flames/flame_fixed_T/Makefile Cantera/python/examples/flames/free_h2_air/Makefile Cantera/python/examples/flames/npflame1/Makefile Cantera/python/examples/flames/stflame1/Makefile Cantera/python/examples/fuel_cells/Makefile Cantera/python/examples/liquid_vapor/critProperties/Makefile Cantera/python/examples/liquid_vapor/rankine/Makefile Cantera/python/examples/kinetics/Makefile Cantera/python/examples/misc/Makefile Cantera/python/examples/reactors/combustor_sim/Makefile Cantera/python/examples/reactors/functors_sim/Makefile Cantera/python/examples/reactors/mix1_sim/Makefile Cantera/python/examples/reactors/mix2_sim/Makefile Cantera/python/examples/reactors/piston_sim/Makefile Cantera/python/examples/reactors/reactor1_sim/Makefile Cantera/python/examples/reactors/reactor2_sim/Makefile Cantera/python/examples/reactors/sensitivity_sim/Makefile Cantera/python/examples/reactors/surf_pfr_sim/Makefile Cantera/python/examples/surface_chemistry/diamond_cvd/Makefile Cantera/python/examples/surface_chemistry/catcomb_stagflow/Makefile Cantera/python/examples/transport/Makefile Cantera/python/examples/flames/Makefile Cantera/python/examples/gasdynamics/Makefile Cantera/python/examples/liquid_vapor/Makefile Cantera/python/examples/reactors/Makefile Cantera/python/examples/surface_chemistry/Makefile ext/lapack/Makefile ext/blas/Makefile ext/cvode/Makefile ext/math/Makefile ext/recipes/Makefile ext/tpx/Makefile ext/Makefile ext/f2c_libs/Makefile ext/f2c_blas/Makefile ext/f2c_lapack/Makefile ext/f2c_math/Makefile examples/Makefile examples/cxx/Makefile tools/Makefile tools/doc/Cantera.cfg tools/doc/Makefile tools/src/Makefile tools/src/sample.mak tools/src/finish_install.py tools/src/package4mac tools/templates/f77/demo.mak tools/templates/f90/demo.mak tools/templates/cxx/demo.mak tools/testtools/Makefile data/inputs/Makefile data/inputs/mkxml test_problems/Makefile test_problems/cxx_ex/Makefile test_problems/silane_equil/Makefile test_problems/surfkin/Makefile test_problems/spectroscopy/Makefile test_problems/surfSolverTest/Makefile test_problems/diamondSurf/Makefile test_problems/diamondSurf_dupl/Makefile test_problems/ChemEquil_gri_matrix/Makefile test_problems/ChemEquil_gri_pairs/Makefile test_problems/ChemEquil_ionizedGas/Makefile test_problems/ChemEquil_red1/Makefile test_problems/CpJump/Makefile test_problems/mixGasTransport/Makefile test_problems/multiGasTransport/Makefile test_problems/printUtilUnitTest/Makefile test_problems/fracCoeff/Makefile test_problems/negATest/Makefile test_problems/NASA9poly_test/Makefile test_problems/ck2cti_test/Makefile test_problems/ck2cti_test/runtest test_problems/nasa9_reader/Makefile test_problems/nasa9_reader/runtest test_problems/min_python/Makefile test_problems/min_python/minDiamond/Makefile test_problems/min_python/negATest/Makefile test_problems/pureFluidTest/Makefile test_problems/rankine_democxx/Makefile test_problems/python/Makefile test_problems/cathermo/Makefile test_problems/cathermo/issp/Makefile test_problems/cathermo/ims/Makefile test_problems/cathermo/stoichSubSSTP/Makefile test_problems/cathermo/testIAPWS/Makefile test_problems/cathermo/testIAPWSPres/Makefile test_problems/cathermo/testIAPWSTripP/Makefile test_problems/cathermo/testWaterPDSS/Makefile test_problems/cathermo/testWaterTP/Makefile test_problems/cathermo/HMW_test_1/Makefile test_problems/cathermo/HMW_test_3/Makefile test_problems/cathermo/HMW_graph_GvT/Makefile test_problems/cathermo/HMW_graph_GvI/Makefile test_problems/cathermo/HMW_graph_HvT/Makefile test_problems/cathermo/HMW_graph_CpvT/Makefile test_problems/cathermo/HMW_graph_VvT/Makefile test_problems/cathermo/DH_graph_1/Makefile test_problems/cathermo/DH_graph_acommon/Makefile test_problems/cathermo/DH_graph_NM/Makefile test_problems/cathermo/DH_graph_Pitzer/Makefile test_problems/cathermo/DH_graph_bdotak/Makefile test_problems/cathermo/HMW_dupl_test/Makefile test_problems/cathermo/VPissp/Makefile test_problems/cathermo/wtWater/Makefile test_problems/VCSnonideal/Makefile test_problems/VPsilane_test/Makefile test_problems/VPsilane_test/runtest test_problems/VCSnonideal/NaCl_equil/Makefile bin/install_tsc" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if test "${lt_cv_prog_compiler_c_o_FC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o_FC=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:18408: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:18412: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_FC=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_FC" >&5 +$as_echo "$lt_cv_prog_compiler_c_o_FC" >&6; } + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if test "${lt_cv_prog_compiler_c_o_FC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o_FC=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:18460: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:18464: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_FC=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_FC" >&5 +$as_echo "$lt_cv_prog_compiler_c_o_FC" >&6; } + + + + +hard_links="nottested" +if test "$lt_cv_prog_compiler_c_o_FC" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 +$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 +$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi +else + need_locks=no +fi + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= + allow_undefined_flag_FC= + always_export_symbols_FC=no + archive_cmds_FC= + archive_expsym_cmds_FC= + compiler_needs_object_FC=no + enable_shared_with_static_runtimes_FC=no + export_dynamic_flag_spec_FC= + export_symbols_cmds_FC='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + hardcode_automatic_FC=no + hardcode_direct_FC=no + hardcode_direct_absolute_FC=no + hardcode_libdir_flag_spec_FC= + hardcode_libdir_flag_spec_ld_FC= + hardcode_libdir_separator_FC= + hardcode_minus_L_FC=no + hardcode_shlibpath_var_FC=unsupported + inherit_rpath_FC=no + link_all_deplibs_FC=unknown + module_cmds_FC= + module_expsym_cmds_FC= + old_archive_from_new_cmds_FC= + old_archive_from_expsyms_cmds_FC= + thread_safe_flag_spec_FC= + whole_archive_flag_spec_FC= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + include_expsyms_FC= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + exclude_expsyms_FC='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + linux* | k*bsd*-gnu) + link_all_deplibs_FC=no + ;; + esac + + ld_shlibs_FC=yes + if test "$with_gnu_ld" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec_FC='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec_FC='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec_FC="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec_FC= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[3-9]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + ld_shlibs_FC=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.9.1, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to modify your PATH +*** so that a non-GNU linker is found, and then restart. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_FC='' + ;; + m68k) + archive_cmds_FC='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec_FC='-L$libdir' + hardcode_minus_L_FC=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + allow_undefined_flag_FC=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds_FC='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + ld_shlibs_FC=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, FC) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec_FC='-L$libdir' + allow_undefined_flag_FC=unsupported + always_export_symbols_FC=no + enable_shared_with_static_runtimes_FC=yes + export_symbols_cmds_FC='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + archive_expsym_cmds_FC='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs_FC=no + fi + ;; + + interix[3-9]*) + hardcode_direct_FC=no + hardcode_shlibpath_var_FC=no + hardcode_libdir_flag_spec_FC='${wl}-rpath,$libdir' + export_dynamic_flag_spec_FC='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + archive_cmds_FC='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds_FC='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag= + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + whole_archive_flag_spec_FC='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers + whole_archive_flag_spec_FC='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + whole_archive_flag_spec_FC= + tmp_sharedflag='--shared' ;; + xl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + whole_archive_flag_spec_FC='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object_FC=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + archive_cmds_FC='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds_FC='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + whole_archive_flag_spec_FC='--whole-archive$convenience --no-whole-archive' + hardcode_libdir_flag_spec_FC= + hardcode_libdir_flag_spec_ld_FC='-rpath $libdir' + archive_cmds_FC='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds_FC='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + ld_shlibs_FC=no + fi + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds_FC='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + ld_shlibs_FC=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs_FC=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) + ld_shlibs_FC=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + hardcode_libdir_flag_spec_FC='${wl}-rpath ${wl}$libdir' + archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs_FC=no + fi + ;; + esac + ;; + + sunos4*) + archive_cmds_FC='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + hardcode_direct_FC=yes + hardcode_shlibpath_var_FC=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs_FC=no + fi + ;; + esac + + if test "$ld_shlibs_FC" = no; then + runpath_var= + hardcode_libdir_flag_spec_FC= + export_dynamic_flag_spec_FC= + whole_archive_flag_spec_FC= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + allow_undefined_flag_FC=unsupported + always_export_symbols_FC=yes + archive_expsym_cmds_FC='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + hardcode_minus_L_FC=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct_FC=unsupported + fi + ;; + + aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + export_symbols_cmds_FC='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds_FC='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + archive_cmds_FC='' + hardcode_direct_FC=yes + hardcode_direct_absolute_FC=yes + hardcode_libdir_separator_FC=':' + link_all_deplibs_FC=yes + file_list_spec_FC='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct_FC=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + hardcode_minus_L_FC=yes + hardcode_libdir_flag_spec_FC='-L$libdir' + hardcode_libdir_separator_FC= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + link_all_deplibs_FC=no + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + export_dynamic_flag_spec_FC='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + always_export_symbols_FC=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + allow_undefined_flag_FC='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + cat > conftest.$ac_ext <<_ACEOF + program main + + end +_ACEOF +if ac_fn_fc_try_link "$LINENO"; then : + +lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\(.*\)$/\1/ + p + } + }' +aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +# Check for a 64-bit object if we didn't find anything. +if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec_FC='${wl}-blibpath:$libdir:'"$aix_libpath" + archive_expsym_cmds_FC='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec_FC='${wl}-R $libdir:/usr/lib:/lib' + allow_undefined_flag_FC="-z nodefs" + archive_expsym_cmds_FC="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + cat > conftest.$ac_ext <<_ACEOF + program main + + end +_ACEOF +if ac_fn_fc_try_link "$LINENO"; then : + +lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\(.*\)$/\1/ + p + } + }' +aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +# Check for a 64-bit object if we didn't find anything. +if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec_FC='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + no_undefined_flag_FC=' ${wl}-bernotok' + allow_undefined_flag_FC=' ${wl}-berok' + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec_FC='$convenience' + archive_cmds_need_lc_FC=yes + # This is similar to how AIX traditionally builds its shared libraries. + archive_expsym_cmds_FC="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_FC='' + ;; + m68k) + archive_cmds_FC='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec_FC='-L$libdir' + hardcode_minus_L_FC=yes + ;; + esac + ;; + + bsdi[45]*) + export_dynamic_flag_spec_FC=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + hardcode_libdir_flag_spec_FC=' ' + allow_undefined_flag_FC=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds_FC='$CC -o $lib $libobjs $compiler_flags `$ECHO "X$deplibs" | $Xsed -e '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + old_archive_from_new_cmds_FC='true' + # FIXME: Should let the user specify the lib program. + old_archive_cmds_FC='lib -OUT:$oldlib$oldobjs$old_deplibs' + fix_srcfile_path_FC='`cygpath -w "$srcfile"`' + enable_shared_with_static_runtimes_FC=yes + ;; + + darwin* | rhapsody*) + + + archive_cmds_need_lc_FC=no + hardcode_direct_FC=no + hardcode_automatic_FC=yes + hardcode_shlibpath_var_FC=unsupported + whole_archive_flag_spec_FC='' + link_all_deplibs_FC=yes + allow_undefined_flag_FC="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=echo + archive_cmds_FC="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + module_cmds_FC="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + archive_expsym_cmds_FC="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + module_expsym_cmds_FC="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + + else + ld_shlibs_FC=no + fi + + ;; + + dgux*) + archive_cmds_FC='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec_FC='-L$libdir' + hardcode_shlibpath_var_FC=no + ;; + + freebsd1*) + ld_shlibs_FC=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + archive_cmds_FC='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + hardcode_libdir_flag_spec_FC='-R$libdir' + hardcode_direct_FC=yes + hardcode_shlibpath_var_FC=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2*) + archive_cmds_FC='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct_FC=yes + hardcode_minus_L_FC=yes + hardcode_shlibpath_var_FC=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + archive_cmds_FC='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec_FC='-R$libdir' + hardcode_direct_FC=yes + hardcode_shlibpath_var_FC=no + ;; + + hpux9*) + if test "$GCC" = yes; then + archive_cmds_FC='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + archive_cmds_FC='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + hardcode_libdir_flag_spec_FC='${wl}+b ${wl}$libdir' + hardcode_libdir_separator_FC=: + hardcode_direct_FC=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L_FC=yes + export_dynamic_flag_spec_FC='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes -a "$with_gnu_ld" = no; then + archive_cmds_FC='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds_FC='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec_FC='${wl}+b ${wl}$libdir' + hardcode_libdir_flag_spec_ld_FC='+b $libdir' + hardcode_libdir_separator_FC=: + hardcode_direct_FC=yes + hardcode_direct_absolute_FC=yes + export_dynamic_flag_spec_FC='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L_FC=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes -a "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + archive_cmds_FC='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds_FC='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds_FC='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + archive_cmds_FC='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds_FC='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds_FC='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec_FC='${wl}+b ${wl}$libdir' + hardcode_libdir_separator_FC=: + + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct_FC=no + hardcode_shlibpath_var_FC=no + ;; + *) + hardcode_direct_FC=yes + hardcode_direct_absolute_FC=yes + export_dynamic_flag_spec_FC='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L_FC=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + cat > conftest.$ac_ext <<_ACEOF +int foo(void) {} +_ACEOF +if ac_fn_fc_try_link "$LINENO"; then : + archive_expsym_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" + else + archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + archive_cmds_need_lc_FC='no' + hardcode_libdir_flag_spec_FC='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator_FC=: + inherit_rpath_FC=yes + link_all_deplibs_FC=yes + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds_FC='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + archive_cmds_FC='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + hardcode_libdir_flag_spec_FC='-R$libdir' + hardcode_direct_FC=yes + hardcode_shlibpath_var_FC=no + ;; + + newsos6) + archive_cmds_FC='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct_FC=yes + hardcode_libdir_flag_spec_FC='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator_FC=: + hardcode_shlibpath_var_FC=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + hardcode_direct_FC=yes + hardcode_shlibpath_var_FC=no + hardcode_direct_absolute_FC=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + archive_cmds_FC='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_FC='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + hardcode_libdir_flag_spec_FC='${wl}-rpath,$libdir' + export_dynamic_flag_spec_FC='${wl}-E' + else + case $host_os in + openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) + archive_cmds_FC='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec_FC='-R$libdir' + ;; + *) + archive_cmds_FC='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec_FC='${wl}-rpath,$libdir' + ;; + esac + fi + else + ld_shlibs_FC=no + fi + ;; + + os2*) + hardcode_libdir_flag_spec_FC='-L$libdir' + hardcode_minus_L_FC=yes + allow_undefined_flag_FC=unsupported + archive_cmds_FC='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$ECHO DATA >> $output_objdir/$libname.def~$ECHO " SINGLE NONSHARED" >> $output_objdir/$libname.def~$ECHO EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + old_archive_from_new_cmds_FC='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + allow_undefined_flag_FC=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds_FC='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + allow_undefined_flag_FC=' -expect_unresolved \*' + archive_cmds_FC='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + fi + archive_cmds_need_lc_FC='no' + hardcode_libdir_flag_spec_FC='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator_FC=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + allow_undefined_flag_FC=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds_FC='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + hardcode_libdir_flag_spec_FC='${wl}-rpath ${wl}$libdir' + else + allow_undefined_flag_FC=' -expect_unresolved \*' + archive_cmds_FC='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds_FC='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + hardcode_libdir_flag_spec_FC='-rpath $libdir' + fi + archive_cmds_need_lc_FC='no' + hardcode_libdir_separator_FC=: + ;; + + solaris*) + no_undefined_flag_FC=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + archive_cmds_FC='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_FC='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + archive_cmds_FC='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + archive_expsym_cmds_FC='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + archive_cmds_FC='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_FC='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + hardcode_libdir_flag_spec_FC='-R$libdir' + hardcode_shlibpath_var_FC=no + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + whole_archive_flag_spec_FC='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + whole_archive_flag_spec_FC='-z allextract$convenience -z defaultextract' + fi + ;; + esac + link_all_deplibs_FC=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + archive_cmds_FC='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds_FC='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + hardcode_libdir_flag_spec_FC='-L$libdir' + hardcode_direct_FC=yes + hardcode_minus_L_FC=yes + hardcode_shlibpath_var_FC=no + ;; + + sysv4) + case $host_vendor in + sni) + archive_cmds_FC='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct_FC=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + archive_cmds_FC='$LD -G -o $lib $libobjs $deplibs $linker_flags' + reload_cmds_FC='$CC -r -o $output$reload_objs' + hardcode_direct_FC=no + ;; + motorola) + archive_cmds_FC='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct_FC=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + hardcode_shlibpath_var_FC=no + ;; + + sysv4.3*) + archive_cmds_FC='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var_FC=no + export_dynamic_flag_spec_FC='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + archive_cmds_FC='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var_FC=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + ld_shlibs_FC=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag_FC='${wl}-z,text' + archive_cmds_need_lc_FC=no + hardcode_shlibpath_var_FC=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds_FC='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_FC='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds_FC='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_FC='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + no_undefined_flag_FC='${wl}-z,text' + allow_undefined_flag_FC='${wl}-z,nodefs' + archive_cmds_need_lc_FC=no + hardcode_shlibpath_var_FC=no + hardcode_libdir_flag_spec_FC='${wl}-R,$libdir' + hardcode_libdir_separator_FC=':' + link_all_deplibs_FC=yes + export_dynamic_flag_spec_FC='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds_FC='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_FC='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds_FC='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_FC='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + archive_cmds_FC='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec_FC='-L$libdir' + hardcode_shlibpath_var_FC=no + ;; + + *) + ld_shlibs_FC=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + export_dynamic_flag_spec_FC='${wl}-Blargedynsym' + ;; + esac + fi + fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_FC" >&5 +$as_echo "$ld_shlibs_FC" >&6; } +test "$ld_shlibs_FC" = no && can_build_shared=no + +with_gnu_ld_FC=$with_gnu_ld + + + + + + +# +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc_FC" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc_FC=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $archive_cmds_FC in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 +$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$lt_prog_compiler_wl_FC + pic_flag=$lt_prog_compiler_pic_FC + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag_FC + allow_undefined_flag_FC= + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_FC 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds_FC 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + then + archive_cmds_need_lc_FC=no + else + archive_cmds_need_lc_FC=yes + fi + allow_undefined_flag_FC=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc_FC" >&5 +$as_echo "$archive_cmds_need_lc_FC" >&6; } + ;; + esac + fi + ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 +$as_echo_n "checking dynamic linker characteristics... " >&6; } + +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[4-9]*) + version_type=linux + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[01] | aix4.[01].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[45]*) + version_type=linux + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$host_os in + yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` + if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then + # It is most probably a Windows format PATH printed by + # mingw gcc, but we are running on Cygwin. Gcc prints its search + # path with ; separators, and with drive letters. We can handle the + # drive letters (cygwin fileutils understands them), so leave them, + # especially as we might pass files found there to a mingw objdump, + # which wouldn't understand a cygwinified path. Ahh. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + esac + ;; + + *) + library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + ;; + esac + dynamic_linker='Win32 ld.exe' + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd1*) + dynamic_linker=no + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[123]*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[01]* | freebsdelf3.[01]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ + freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555. + postinstall_cmds='chmod 555 $lib' + ;; + +interix[3-9]*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be Linux ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + # Some binutils ld are patched to set DT_RUNPATH + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_FC\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_FC\"" + cat > conftest.$ac_ext <<_ACEOF + program main + + end +_ACEOF +if ac_fn_fc_try_link "$LINENO"; then : + if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + shlibpath_overrides_runpath=yes +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[89] | openbsd2.[89].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 +$as_echo "$dynamic_linker" >&6; } +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 +$as_echo_n "checking how to hardcode library paths into programs... " >&6; } +hardcode_action_FC= +if test -n "$hardcode_libdir_flag_spec_FC" || + test -n "$runpath_var_FC" || + test "X$hardcode_automatic_FC" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$hardcode_direct_FC" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, FC)" != no && + test "$hardcode_minus_L_FC" != no; then + # Linking always hardcodes the temporary library directory. + hardcode_action_FC=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action_FC=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action_FC=unsupported +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_FC" >&5 +$as_echo "$hardcode_action_FC" >&6; } + +if test "$hardcode_action_FC" = relink || + test "$inherit_rpath_FC" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi + + + + + + + + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC="$lt_save_CC" +fi # test "$_lt_disable_FC" != yes + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + + + + + + + + ac_config_commands="$ac_config_commands libtool" + + + + +# Only expand once: + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 +$as_echo_n "checking whether build environment is sane... " >&6; } +# Just in case +sleep 1 +echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[\\\"\#\$\&\'\`$am_lf]*) + as_fn_error "unsafe absolute working directory name" "$LINENO" 5;; +esac +case $srcdir in + *[\\\"\#\$\&\'\`$am_lf\ \ ]*) + as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; +esac + +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + rm -f conftest.file + if test "$*" != "X $srcdir/configure conftest.file" \ + && test "$*" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + as_fn_error "ls -t appears to fail. Make sure there is not a broken +alias in your environment" "$LINENO" 5 + fi + + test "$2" = conftest.file + ) +then + # Ok. + : +else + as_fn_error "newly created file is older than distributed files! +Check your system clock" "$LINENO" 5 +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +# ---------------- +# Doxygen support +# ---------------- + +# DX_DOXYGEN_FEATURE(ON) +# DX_HTML_FEATURE(ON) +# DX_CHM_FEATURE(OFF) +# DX_CHI_FEATURE(OFF) + +# DX_MAN_FEATURE(OFF) +# DX_RTF_FEATURE(OFF) +# DX_XML_FEATURE(OFF) +# DX_PDF_FEATURE(ON) +# DX_PS_FEATURE(OFF) +# DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) + +# Generate Output Files +ac_config_files="$ac_config_files Makefile Cantera/Makefile test_problems/Makefile examples/Makefile doxygen/Makefile" + +cat >confcache <<\_ACEOF +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +_ACEOF + +# The following way of writing the cache mishandles newlines in values, +# but we know of no workaround that is simple, portable, and efficient. +# So, we kill variables containing newlines. +# Ultrix sh set writes to stderr and can't be redirected directly, +# and sets the high bit in the cache file unless we assign to the vars. +( + for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + # `set' does not quote correctly, so add quotes: double-quote + # substitution turns \\\\ into \\, and sed turns \\ into \. + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" + ;; #( + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) | + sed ' + /^ac_cv_env_/b end + t clear + :clear + s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ + t end + s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ + :end' >>confcache +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + test "x$cache_file" != "x/dev/null" && + { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 +$as_echo "$as_me: updating cache $cache_file" >&6;} + cat confcache >$cache_file + else + { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 +$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi +fi +rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -# VPATH may cause trouble with some makes, so we remove $(srcdir), -# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and -# trailing colons and then remove the whole line if VPATH becomes empty -# (actually we leave an empty line to preserve line numbers). -if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=/{ -s/:*\$(srcdir):*/:/; -s/:*\${srcdir}:*/:/; -s/:*@srcdir@:*/:/; -s/^\([^=]*=[ ]*\):*/\1/; -s/:*$//; -s/^[^=]*=[ ]*$//; -}' -fi - DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. - ac_i=`echo "$ac_i" | - sed 's/\$U\././;s/\.o$//;s/\.obj$//'` - # 2. Add them. - ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext" - ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo' + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' + ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. + as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" + as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs + if test -n "$EXEEXT"; then + am__EXEEXT_TRUE= + am__EXEEXT_FALSE='#' +else + am__EXEEXT_TRUE='#' + am__EXEEXT_FALSE= +fi + +if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then + as_fn_error "conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + as_fn_error "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then + as_fn_error "conditional \"am__fastdepCXX\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then + as_fn_error "conditional \"am__fastdepCXX\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi : ${CONFIG_STATUS=./config.status} +ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 -echo "$as_me: creating $CONFIG_STATUS" >&6;} -cat >$CONFIG_STATUS <<_ACEOF +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 +$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +as_write_fail=0 +cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. @@ -10895,81 +20567,252 @@ cat >$CONFIG_STATUS <<_ACEOF debug=false ac_cs_recheck=false ac_cs_silent=false + SHELL=\${CONFIG_SHELL-$SHELL} -_ACEOF +export SHELL +_ASEOF +cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## -cat >>$CONFIG_STATUS <<\_ACEOF -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' -elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then - set -o posix -fi -DUALCASE=1; export DUALCASE # for MKS sh - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - as_unset=unset + setopt NO_GLOB_SUBST else - as_unset=false + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac fi -# Work around bugs in pre-3.0 UWIN ksh. -$as_unset ENV MAIL MAILPATH +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - $as_unset $as_var - fi -done +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1; then +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error ERROR [LINENO LOG_FD] +# --------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with status $?, using 1 if that was 0. +as_fn_error () +{ + as_status=$?; test $as_status -eq 0 && as_status=1 + if test "$3"; then + as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + fi + $as_echo "$as_me: error: $1" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi -if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi -# Name of the executable. -as_me=`$as_basename "$0" || +as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)$' \| \ - . : '\(.\)' 2>/dev/null || -echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } - /^X\/\(\/\/\)$/{ s//\1/; q; } - /^X\/\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` - -# PATH needs CR, and LINENO needs CR and PATH. # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' @@ -10977,148 +20820,123 @@ as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" || { - # Find who we are. Look in the path if we contain no path at all - # relative or not. - case $0 in - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done - - ;; - esac - # We did not find ourselves, most probably we were run as `sh COMMAND' - # in which case we are not to be found in the path. - if test "x$as_myself" = x; then - as_myself=$0 - fi - if test ! -f "$as_myself"; then - { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5 -echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;} - { (exit 1); exit 1; }; } - fi - case $CONFIG_SHELL in - '') - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for as_base in sh bash ksh sh5; do - case $as_dir in - /*) - if ("$as_dir/$as_base" -c ' - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then - $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } - $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } - CONFIG_SHELL=$as_dir/$as_base - export CONFIG_SHELL - exec "$CONFIG_SHELL" "$0" ${1+"$@"} - fi;; - esac - done -done -;; - esac - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line before each line; the second 'sed' does the real - # work. The second script uses 'N' to pair each line-number line - # with the numbered line, and appends trailing '-' during - # substitution so that $LINENO is not a special case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) - sed '=' <$as_myself | - sed ' - N - s,$,-, - : loop - s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, - t loop - s,-$,, - s,^['$as_cr_digits']*\n,, - ' >$as_me.lineno && - chmod +x $as_me.lineno || - { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5 -echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;} - { (exit 1); exit 1; }; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensible to this). - . ./$as_me.lineno - # Exit status is that of the last command. - exit -} - - -case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in - *c*,-n*) ECHO_N= ECHO_C=' -' ECHO_T=' ' ;; - *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; - *) ECHO_N= ECHO_C='\c' ECHO_T= ;; +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; esac -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - rm -f conf$$ conf$$.exe conf$$.file -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - # We could just check for DJGPP; but this test a) works b) is more generic - # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). - if test -f conf$$.exe; then - # Don't use ln at all; we don't have any links - as_ln_s='cp -p' - else +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -p' fi -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln else as_ln_s='cp -p' fi -rm -f conf$$ conf$$.exe conf$$.file +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + + +} # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then - as_mkdir_p=: + as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi -as_executable_p="test -f" +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in #( + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" @@ -11127,31 +20945,20 @@ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" -# IFS -# We need space, tab and new line, in precisely that order. -as_nl=' -' -IFS=" $as_nl" - -# CDPATH. -$as_unset CDPATH - exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +_ASEOF +test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 -# Open the log real soon, to keep \$[0] and so on meaningful, and to +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. Logging --version etc. is OK. -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX -} >&5 -cat >&5 <<_CSEOF - -This file was extended by Cantera $as_me 1.7.0, which was -generated by GNU Autoconf 2.59. Invocation command line was +# values after options handling. +ac_log=" +This file was extended by cantera $as_me 1.8.0, which was +generated by GNU Autoconf 2.65. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS @@ -11159,45 +20966,47 @@ generated by GNU Autoconf 2.59. Invocation command line was CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ -_CSEOF -echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5 -echo >&5 +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + _ACEOF +case $ac_config_files in *" +"*) set x $ac_config_files; shift; ac_config_files=$*;; +esac + +case $ac_config_headers in *" +"*) set x $ac_config_headers; shift; ac_config_headers=$*;; +esac + + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. -if test -n "$ac_config_files"; then - echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS -fi +config_files="$ac_config_files" +config_headers="$ac_config_headers" +config_commands="$ac_config_commands" -if test -n "$ac_config_headers"; then - echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS -fi - -if test -n "$ac_config_links"; then - echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS -fi - -if test -n "$ac_config_commands"; then - echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS -fi - -cat >>$CONFIG_STATUS <<\_ACEOF +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ -\`$as_me' instantiates files from templates according to the -current configuration. +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. -Usage: $0 [OPTIONS] [FILE]... +Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit - -V, --version print version number, then exit - -q, --quiet do not print progress messages + -V, --version print version number and configuration settings, then exit + --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE Configuration files: $config_files @@ -11205,84 +21014,89 @@ $config_files Configuration headers: $config_headers -Report bugs to ." +Configuration commands: +$config_commands + +Report bugs to ." + _ACEOF - -cat >>$CONFIG_STATUS <<_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -Cantera config.status 1.7.0 -configured by $0, generated by GNU Autoconf 2.59, - with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" +cantera config.status 1.8.0 +configured by $0, generated by GNU Autoconf 2.65, + with options \\"\$ac_cs_config\\" -Copyright (C) 2003 Free Software Foundation, Inc. +Copyright (C) 2009 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." -srcdir=$srcdir -INSTALL="$INSTALL" + +ac_pwd='$ac_pwd' +srcdir='$srcdir' +INSTALL='$INSTALL' +MKDIR_P='$MKDIR_P' +AWK='$AWK' +test -n "\$AWK" || AWK=awk _ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -# If no file are specified by the user, then we need to provide default -# value. By we need to know if files were specified by the user. +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=*) - ac_option=`expr "x$1" : 'x\([^=]*\)='` - ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; - -*) + *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; - *) # This is not an option, so the user has probably given explicit - # arguments. - ac_option=$1 - ac_need_defaults=false;; esac case $ac_option in # Handling of the options. -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; - --version | --vers* | -V ) - echo "$ac_cs_version"; exit 0 ;; - --he | --h) - # Conflict between --help and --header - { { echo "$as_me:$LINENO: error: ambiguous option: $1 -Try \`$0 --help' for more information." >&5 -echo "$as_me: error: ambiguous option: $1 -Try \`$0 --help' for more information." >&2;} - { (exit 1); exit 1; }; };; - --help | --hel | -h ) - echo "$ac_cs_usage"; exit 0 ;; - --debug | --d* | -d ) + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift - CONFIG_FILES="$CONFIG_FILES $ac_optarg" + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift - CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + as_fn_error "ambiguous option: \`$1' +Try \`$0 --help' for more information.";; + --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. - -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&5 -echo "$as_me: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&2;} - { (exit 1); exit 1; }; } ;; + -*) as_fn_error "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; - *) ac_config_targets="$ac_config_targets $1" ;; + *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; esac shift @@ -11296,189 +21110,575 @@ if $ac_cs_silent; then fi _ACEOF -cat >>$CONFIG_STATUS <<_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then - echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 - exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + shift + \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 + CONFIG_SHELL='$SHELL' + export CONFIG_SHELL + exec "\$@" fi _ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX + $as_echo "$ac_log" +} >&5 + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# +# INIT-COMMANDS +# +AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" + + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +macro_version='`$ECHO "X$macro_version" | $Xsed -e "$delay_single_quote_subst"`' +macro_revision='`$ECHO "X$macro_revision" | $Xsed -e "$delay_single_quote_subst"`' +enable_shared='`$ECHO "X$enable_shared" | $Xsed -e "$delay_single_quote_subst"`' +enable_static='`$ECHO "X$enable_static" | $Xsed -e "$delay_single_quote_subst"`' +pic_mode='`$ECHO "X$pic_mode" | $Xsed -e "$delay_single_quote_subst"`' +enable_fast_install='`$ECHO "X$enable_fast_install" | $Xsed -e "$delay_single_quote_subst"`' +host_alias='`$ECHO "X$host_alias" | $Xsed -e "$delay_single_quote_subst"`' +host='`$ECHO "X$host" | $Xsed -e "$delay_single_quote_subst"`' +host_os='`$ECHO "X$host_os" | $Xsed -e "$delay_single_quote_subst"`' +build_alias='`$ECHO "X$build_alias" | $Xsed -e "$delay_single_quote_subst"`' +build='`$ECHO "X$build" | $Xsed -e "$delay_single_quote_subst"`' +build_os='`$ECHO "X$build_os" | $Xsed -e "$delay_single_quote_subst"`' +SED='`$ECHO "X$SED" | $Xsed -e "$delay_single_quote_subst"`' +Xsed='`$ECHO "X$Xsed" | $Xsed -e "$delay_single_quote_subst"`' +GREP='`$ECHO "X$GREP" | $Xsed -e "$delay_single_quote_subst"`' +EGREP='`$ECHO "X$EGREP" | $Xsed -e "$delay_single_quote_subst"`' +FGREP='`$ECHO "X$FGREP" | $Xsed -e "$delay_single_quote_subst"`' +LD='`$ECHO "X$LD" | $Xsed -e "$delay_single_quote_subst"`' +NM='`$ECHO "X$NM" | $Xsed -e "$delay_single_quote_subst"`' +LN_S='`$ECHO "X$LN_S" | $Xsed -e "$delay_single_quote_subst"`' +max_cmd_len='`$ECHO "X$max_cmd_len" | $Xsed -e "$delay_single_quote_subst"`' +ac_objext='`$ECHO "X$ac_objext" | $Xsed -e "$delay_single_quote_subst"`' +exeext='`$ECHO "X$exeext" | $Xsed -e "$delay_single_quote_subst"`' +lt_unset='`$ECHO "X$lt_unset" | $Xsed -e "$delay_single_quote_subst"`' +lt_SP2NL='`$ECHO "X$lt_SP2NL" | $Xsed -e "$delay_single_quote_subst"`' +lt_NL2SP='`$ECHO "X$lt_NL2SP" | $Xsed -e "$delay_single_quote_subst"`' +reload_flag='`$ECHO "X$reload_flag" | $Xsed -e "$delay_single_quote_subst"`' +reload_cmds='`$ECHO "X$reload_cmds" | $Xsed -e "$delay_single_quote_subst"`' +OBJDUMP='`$ECHO "X$OBJDUMP" | $Xsed -e "$delay_single_quote_subst"`' +deplibs_check_method='`$ECHO "X$deplibs_check_method" | $Xsed -e "$delay_single_quote_subst"`' +file_magic_cmd='`$ECHO "X$file_magic_cmd" | $Xsed -e "$delay_single_quote_subst"`' +AR='`$ECHO "X$AR" | $Xsed -e "$delay_single_quote_subst"`' +AR_FLAGS='`$ECHO "X$AR_FLAGS" | $Xsed -e "$delay_single_quote_subst"`' +STRIP='`$ECHO "X$STRIP" | $Xsed -e "$delay_single_quote_subst"`' +RANLIB='`$ECHO "X$RANLIB" | $Xsed -e "$delay_single_quote_subst"`' +old_postinstall_cmds='`$ECHO "X$old_postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' +old_postuninstall_cmds='`$ECHO "X$old_postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' +old_archive_cmds='`$ECHO "X$old_archive_cmds" | $Xsed -e "$delay_single_quote_subst"`' +CC='`$ECHO "X$CC" | $Xsed -e "$delay_single_quote_subst"`' +CFLAGS='`$ECHO "X$CFLAGS" | $Xsed -e "$delay_single_quote_subst"`' +compiler='`$ECHO "X$compiler" | $Xsed -e "$delay_single_quote_subst"`' +GCC='`$ECHO "X$GCC" | $Xsed -e "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_pipe='`$ECHO "X$lt_cv_sys_global_symbol_pipe" | $Xsed -e "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_cdecl='`$ECHO "X$lt_cv_sys_global_symbol_to_cdecl" | $Xsed -e "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address" | $Xsed -e "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`' +objdir='`$ECHO "X$objdir" | $Xsed -e "$delay_single_quote_subst"`' +SHELL='`$ECHO "X$SHELL" | $Xsed -e "$delay_single_quote_subst"`' +ECHO='`$ECHO "X$ECHO" | $Xsed -e "$delay_single_quote_subst"`' +MAGIC_CMD='`$ECHO "X$MAGIC_CMD" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag='`$ECHO "X$lt_prog_compiler_no_builtin_flag" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_wl='`$ECHO "X$lt_prog_compiler_wl" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_pic='`$ECHO "X$lt_prog_compiler_pic" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_static='`$ECHO "X$lt_prog_compiler_static" | $Xsed -e "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o='`$ECHO "X$lt_cv_prog_compiler_c_o" | $Xsed -e "$delay_single_quote_subst"`' +need_locks='`$ECHO "X$need_locks" | $Xsed -e "$delay_single_quote_subst"`' +DSYMUTIL='`$ECHO "X$DSYMUTIL" | $Xsed -e "$delay_single_quote_subst"`' +NMEDIT='`$ECHO "X$NMEDIT" | $Xsed -e "$delay_single_quote_subst"`' +LIPO='`$ECHO "X$LIPO" | $Xsed -e "$delay_single_quote_subst"`' +OTOOL='`$ECHO "X$OTOOL" | $Xsed -e "$delay_single_quote_subst"`' +OTOOL64='`$ECHO "X$OTOOL64" | $Xsed -e "$delay_single_quote_subst"`' +libext='`$ECHO "X$libext" | $Xsed -e "$delay_single_quote_subst"`' +shrext_cmds='`$ECHO "X$shrext_cmds" | $Xsed -e "$delay_single_quote_subst"`' +extract_expsyms_cmds='`$ECHO "X$extract_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`' +archive_cmds_need_lc='`$ECHO "X$archive_cmds_need_lc" | $Xsed -e "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes='`$ECHO "X$enable_shared_with_static_runtimes" | $Xsed -e "$delay_single_quote_subst"`' +export_dynamic_flag_spec='`$ECHO "X$export_dynamic_flag_spec" | $Xsed -e "$delay_single_quote_subst"`' +whole_archive_flag_spec='`$ECHO "X$whole_archive_flag_spec" | $Xsed -e "$delay_single_quote_subst"`' +compiler_needs_object='`$ECHO "X$compiler_needs_object" | $Xsed -e "$delay_single_quote_subst"`' +old_archive_from_new_cmds='`$ECHO "X$old_archive_from_new_cmds" | $Xsed -e "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds='`$ECHO "X$old_archive_from_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`' +archive_cmds='`$ECHO "X$archive_cmds" | $Xsed -e "$delay_single_quote_subst"`' +archive_expsym_cmds='`$ECHO "X$archive_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`' +module_cmds='`$ECHO "X$module_cmds" | $Xsed -e "$delay_single_quote_subst"`' +module_expsym_cmds='`$ECHO "X$module_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`' +with_gnu_ld='`$ECHO "X$with_gnu_ld" | $Xsed -e "$delay_single_quote_subst"`' +allow_undefined_flag='`$ECHO "X$allow_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`' +no_undefined_flag='`$ECHO "X$no_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec='`$ECHO "X$hardcode_libdir_flag_spec" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec_ld='`$ECHO "X$hardcode_libdir_flag_spec_ld" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_libdir_separator='`$ECHO "X$hardcode_libdir_separator" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_direct='`$ECHO "X$hardcode_direct" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_direct_absolute='`$ECHO "X$hardcode_direct_absolute" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_minus_L='`$ECHO "X$hardcode_minus_L" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_shlibpath_var='`$ECHO "X$hardcode_shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_automatic='`$ECHO "X$hardcode_automatic" | $Xsed -e "$delay_single_quote_subst"`' +inherit_rpath='`$ECHO "X$inherit_rpath" | $Xsed -e "$delay_single_quote_subst"`' +link_all_deplibs='`$ECHO "X$link_all_deplibs" | $Xsed -e "$delay_single_quote_subst"`' +fix_srcfile_path='`$ECHO "X$fix_srcfile_path" | $Xsed -e "$delay_single_quote_subst"`' +always_export_symbols='`$ECHO "X$always_export_symbols" | $Xsed -e "$delay_single_quote_subst"`' +export_symbols_cmds='`$ECHO "X$export_symbols_cmds" | $Xsed -e "$delay_single_quote_subst"`' +exclude_expsyms='`$ECHO "X$exclude_expsyms" | $Xsed -e "$delay_single_quote_subst"`' +include_expsyms='`$ECHO "X$include_expsyms" | $Xsed -e "$delay_single_quote_subst"`' +prelink_cmds='`$ECHO "X$prelink_cmds" | $Xsed -e "$delay_single_quote_subst"`' +file_list_spec='`$ECHO "X$file_list_spec" | $Xsed -e "$delay_single_quote_subst"`' +variables_saved_for_relink='`$ECHO "X$variables_saved_for_relink" | $Xsed -e "$delay_single_quote_subst"`' +need_lib_prefix='`$ECHO "X$need_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`' +need_version='`$ECHO "X$need_version" | $Xsed -e "$delay_single_quote_subst"`' +version_type='`$ECHO "X$version_type" | $Xsed -e "$delay_single_quote_subst"`' +runpath_var='`$ECHO "X$runpath_var" | $Xsed -e "$delay_single_quote_subst"`' +shlibpath_var='`$ECHO "X$shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`' +shlibpath_overrides_runpath='`$ECHO "X$shlibpath_overrides_runpath" | $Xsed -e "$delay_single_quote_subst"`' +libname_spec='`$ECHO "X$libname_spec" | $Xsed -e "$delay_single_quote_subst"`' +library_names_spec='`$ECHO "X$library_names_spec" | $Xsed -e "$delay_single_quote_subst"`' +soname_spec='`$ECHO "X$soname_spec" | $Xsed -e "$delay_single_quote_subst"`' +postinstall_cmds='`$ECHO "X$postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' +postuninstall_cmds='`$ECHO "X$postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' +finish_cmds='`$ECHO "X$finish_cmds" | $Xsed -e "$delay_single_quote_subst"`' +finish_eval='`$ECHO "X$finish_eval" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_into_libs='`$ECHO "X$hardcode_into_libs" | $Xsed -e "$delay_single_quote_subst"`' +sys_lib_search_path_spec='`$ECHO "X$sys_lib_search_path_spec" | $Xsed -e "$delay_single_quote_subst"`' +sys_lib_dlsearch_path_spec='`$ECHO "X$sys_lib_dlsearch_path_spec" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_action='`$ECHO "X$hardcode_action" | $Xsed -e "$delay_single_quote_subst"`' +enable_dlopen='`$ECHO "X$enable_dlopen" | $Xsed -e "$delay_single_quote_subst"`' +enable_dlopen_self='`$ECHO "X$enable_dlopen_self" | $Xsed -e "$delay_single_quote_subst"`' +enable_dlopen_self_static='`$ECHO "X$enable_dlopen_self_static" | $Xsed -e "$delay_single_quote_subst"`' +old_striplib='`$ECHO "X$old_striplib" | $Xsed -e "$delay_single_quote_subst"`' +striplib='`$ECHO "X$striplib" | $Xsed -e "$delay_single_quote_subst"`' +compiler_lib_search_dirs='`$ECHO "X$compiler_lib_search_dirs" | $Xsed -e "$delay_single_quote_subst"`' +predep_objects='`$ECHO "X$predep_objects" | $Xsed -e "$delay_single_quote_subst"`' +postdep_objects='`$ECHO "X$postdep_objects" | $Xsed -e "$delay_single_quote_subst"`' +predeps='`$ECHO "X$predeps" | $Xsed -e "$delay_single_quote_subst"`' +postdeps='`$ECHO "X$postdeps" | $Xsed -e "$delay_single_quote_subst"`' +compiler_lib_search_path='`$ECHO "X$compiler_lib_search_path" | $Xsed -e "$delay_single_quote_subst"`' +LD_CXX='`$ECHO "X$LD_CXX" | $Xsed -e "$delay_single_quote_subst"`' +LD_F77='`$ECHO "X$LD_F77" | $Xsed -e "$delay_single_quote_subst"`' +LD_FC='`$ECHO "X$LD_FC" | $Xsed -e "$delay_single_quote_subst"`' +old_archive_cmds_CXX='`$ECHO "X$old_archive_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' +old_archive_cmds_F77='`$ECHO "X$old_archive_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' +old_archive_cmds_FC='`$ECHO "X$old_archive_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' +compiler_CXX='`$ECHO "X$compiler_CXX" | $Xsed -e "$delay_single_quote_subst"`' +compiler_F77='`$ECHO "X$compiler_F77" | $Xsed -e "$delay_single_quote_subst"`' +compiler_FC='`$ECHO "X$compiler_FC" | $Xsed -e "$delay_single_quote_subst"`' +GCC_CXX='`$ECHO "X$GCC_CXX" | $Xsed -e "$delay_single_quote_subst"`' +GCC_F77='`$ECHO "X$GCC_F77" | $Xsed -e "$delay_single_quote_subst"`' +GCC_FC='`$ECHO "X$GCC_FC" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "X$lt_prog_compiler_no_builtin_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag_F77='`$ECHO "X$lt_prog_compiler_no_builtin_flag_F77" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag_FC='`$ECHO "X$lt_prog_compiler_no_builtin_flag_FC" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_wl_CXX='`$ECHO "X$lt_prog_compiler_wl_CXX" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_wl_F77='`$ECHO "X$lt_prog_compiler_wl_F77" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_wl_FC='`$ECHO "X$lt_prog_compiler_wl_FC" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_pic_CXX='`$ECHO "X$lt_prog_compiler_pic_CXX" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_pic_F77='`$ECHO "X$lt_prog_compiler_pic_F77" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_pic_FC='`$ECHO "X$lt_prog_compiler_pic_FC" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_static_CXX='`$ECHO "X$lt_prog_compiler_static_CXX" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_static_F77='`$ECHO "X$lt_prog_compiler_static_F77" | $Xsed -e "$delay_single_quote_subst"`' +lt_prog_compiler_static_FC='`$ECHO "X$lt_prog_compiler_static_FC" | $Xsed -e "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o_CXX='`$ECHO "X$lt_cv_prog_compiler_c_o_CXX" | $Xsed -e "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o_F77='`$ECHO "X$lt_cv_prog_compiler_c_o_F77" | $Xsed -e "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o_FC='`$ECHO "X$lt_cv_prog_compiler_c_o_FC" | $Xsed -e "$delay_single_quote_subst"`' +archive_cmds_need_lc_CXX='`$ECHO "X$archive_cmds_need_lc_CXX" | $Xsed -e "$delay_single_quote_subst"`' +archive_cmds_need_lc_F77='`$ECHO "X$archive_cmds_need_lc_F77" | $Xsed -e "$delay_single_quote_subst"`' +archive_cmds_need_lc_FC='`$ECHO "X$archive_cmds_need_lc_FC" | $Xsed -e "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes_CXX='`$ECHO "X$enable_shared_with_static_runtimes_CXX" | $Xsed -e "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes_F77='`$ECHO "X$enable_shared_with_static_runtimes_F77" | $Xsed -e "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes_FC='`$ECHO "X$enable_shared_with_static_runtimes_FC" | $Xsed -e "$delay_single_quote_subst"`' +export_dynamic_flag_spec_CXX='`$ECHO "X$export_dynamic_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`' +export_dynamic_flag_spec_F77='`$ECHO "X$export_dynamic_flag_spec_F77" | $Xsed -e "$delay_single_quote_subst"`' +export_dynamic_flag_spec_FC='`$ECHO "X$export_dynamic_flag_spec_FC" | $Xsed -e "$delay_single_quote_subst"`' +whole_archive_flag_spec_CXX='`$ECHO "X$whole_archive_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`' +whole_archive_flag_spec_F77='`$ECHO "X$whole_archive_flag_spec_F77" | $Xsed -e "$delay_single_quote_subst"`' +whole_archive_flag_spec_FC='`$ECHO "X$whole_archive_flag_spec_FC" | $Xsed -e "$delay_single_quote_subst"`' +compiler_needs_object_CXX='`$ECHO "X$compiler_needs_object_CXX" | $Xsed -e "$delay_single_quote_subst"`' +compiler_needs_object_F77='`$ECHO "X$compiler_needs_object_F77" | $Xsed -e "$delay_single_quote_subst"`' +compiler_needs_object_FC='`$ECHO "X$compiler_needs_object_FC" | $Xsed -e "$delay_single_quote_subst"`' +old_archive_from_new_cmds_CXX='`$ECHO "X$old_archive_from_new_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' +old_archive_from_new_cmds_F77='`$ECHO "X$old_archive_from_new_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' +old_archive_from_new_cmds_FC='`$ECHO "X$old_archive_from_new_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds_CXX='`$ECHO "X$old_archive_from_expsyms_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds_F77='`$ECHO "X$old_archive_from_expsyms_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds_FC='`$ECHO "X$old_archive_from_expsyms_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' +archive_cmds_CXX='`$ECHO "X$archive_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' +archive_cmds_F77='`$ECHO "X$archive_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' +archive_cmds_FC='`$ECHO "X$archive_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' +archive_expsym_cmds_CXX='`$ECHO "X$archive_expsym_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' +archive_expsym_cmds_F77='`$ECHO "X$archive_expsym_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' +archive_expsym_cmds_FC='`$ECHO "X$archive_expsym_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' +module_cmds_CXX='`$ECHO "X$module_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' +module_cmds_F77='`$ECHO "X$module_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' +module_cmds_FC='`$ECHO "X$module_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' +module_expsym_cmds_CXX='`$ECHO "X$module_expsym_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' +module_expsym_cmds_F77='`$ECHO "X$module_expsym_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' +module_expsym_cmds_FC='`$ECHO "X$module_expsym_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' +with_gnu_ld_CXX='`$ECHO "X$with_gnu_ld_CXX" | $Xsed -e "$delay_single_quote_subst"`' +with_gnu_ld_F77='`$ECHO "X$with_gnu_ld_F77" | $Xsed -e "$delay_single_quote_subst"`' +with_gnu_ld_FC='`$ECHO "X$with_gnu_ld_FC" | $Xsed -e "$delay_single_quote_subst"`' +allow_undefined_flag_CXX='`$ECHO "X$allow_undefined_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`' +allow_undefined_flag_F77='`$ECHO "X$allow_undefined_flag_F77" | $Xsed -e "$delay_single_quote_subst"`' +allow_undefined_flag_FC='`$ECHO "X$allow_undefined_flag_FC" | $Xsed -e "$delay_single_quote_subst"`' +no_undefined_flag_CXX='`$ECHO "X$no_undefined_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`' +no_undefined_flag_F77='`$ECHO "X$no_undefined_flag_F77" | $Xsed -e "$delay_single_quote_subst"`' +no_undefined_flag_FC='`$ECHO "X$no_undefined_flag_FC" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec_CXX='`$ECHO "X$hardcode_libdir_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec_F77='`$ECHO "X$hardcode_libdir_flag_spec_F77" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec_FC='`$ECHO "X$hardcode_libdir_flag_spec_FC" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec_ld_CXX='`$ECHO "X$hardcode_libdir_flag_spec_ld_CXX" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec_ld_F77='`$ECHO "X$hardcode_libdir_flag_spec_ld_F77" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec_ld_FC='`$ECHO "X$hardcode_libdir_flag_spec_ld_FC" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_libdir_separator_CXX='`$ECHO "X$hardcode_libdir_separator_CXX" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_libdir_separator_F77='`$ECHO "X$hardcode_libdir_separator_F77" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_libdir_separator_FC='`$ECHO "X$hardcode_libdir_separator_FC" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_direct_CXX='`$ECHO "X$hardcode_direct_CXX" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_direct_F77='`$ECHO "X$hardcode_direct_F77" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_direct_FC='`$ECHO "X$hardcode_direct_FC" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_direct_absolute_CXX='`$ECHO "X$hardcode_direct_absolute_CXX" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_direct_absolute_F77='`$ECHO "X$hardcode_direct_absolute_F77" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_direct_absolute_FC='`$ECHO "X$hardcode_direct_absolute_FC" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_minus_L_CXX='`$ECHO "X$hardcode_minus_L_CXX" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_minus_L_F77='`$ECHO "X$hardcode_minus_L_F77" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_minus_L_FC='`$ECHO "X$hardcode_minus_L_FC" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_shlibpath_var_CXX='`$ECHO "X$hardcode_shlibpath_var_CXX" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_shlibpath_var_F77='`$ECHO "X$hardcode_shlibpath_var_F77" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_shlibpath_var_FC='`$ECHO "X$hardcode_shlibpath_var_FC" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_automatic_CXX='`$ECHO "X$hardcode_automatic_CXX" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_automatic_F77='`$ECHO "X$hardcode_automatic_F77" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_automatic_FC='`$ECHO "X$hardcode_automatic_FC" | $Xsed -e "$delay_single_quote_subst"`' +inherit_rpath_CXX='`$ECHO "X$inherit_rpath_CXX" | $Xsed -e "$delay_single_quote_subst"`' +inherit_rpath_F77='`$ECHO "X$inherit_rpath_F77" | $Xsed -e "$delay_single_quote_subst"`' +inherit_rpath_FC='`$ECHO "X$inherit_rpath_FC" | $Xsed -e "$delay_single_quote_subst"`' +link_all_deplibs_CXX='`$ECHO "X$link_all_deplibs_CXX" | $Xsed -e "$delay_single_quote_subst"`' +link_all_deplibs_F77='`$ECHO "X$link_all_deplibs_F77" | $Xsed -e "$delay_single_quote_subst"`' +link_all_deplibs_FC='`$ECHO "X$link_all_deplibs_FC" | $Xsed -e "$delay_single_quote_subst"`' +fix_srcfile_path_CXX='`$ECHO "X$fix_srcfile_path_CXX" | $Xsed -e "$delay_single_quote_subst"`' +fix_srcfile_path_F77='`$ECHO "X$fix_srcfile_path_F77" | $Xsed -e "$delay_single_quote_subst"`' +fix_srcfile_path_FC='`$ECHO "X$fix_srcfile_path_FC" | $Xsed -e "$delay_single_quote_subst"`' +always_export_symbols_CXX='`$ECHO "X$always_export_symbols_CXX" | $Xsed -e "$delay_single_quote_subst"`' +always_export_symbols_F77='`$ECHO "X$always_export_symbols_F77" | $Xsed -e "$delay_single_quote_subst"`' +always_export_symbols_FC='`$ECHO "X$always_export_symbols_FC" | $Xsed -e "$delay_single_quote_subst"`' +export_symbols_cmds_CXX='`$ECHO "X$export_symbols_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' +export_symbols_cmds_F77='`$ECHO "X$export_symbols_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' +export_symbols_cmds_FC='`$ECHO "X$export_symbols_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' +exclude_expsyms_CXX='`$ECHO "X$exclude_expsyms_CXX" | $Xsed -e "$delay_single_quote_subst"`' +exclude_expsyms_F77='`$ECHO "X$exclude_expsyms_F77" | $Xsed -e "$delay_single_quote_subst"`' +exclude_expsyms_FC='`$ECHO "X$exclude_expsyms_FC" | $Xsed -e "$delay_single_quote_subst"`' +include_expsyms_CXX='`$ECHO "X$include_expsyms_CXX" | $Xsed -e "$delay_single_quote_subst"`' +include_expsyms_F77='`$ECHO "X$include_expsyms_F77" | $Xsed -e "$delay_single_quote_subst"`' +include_expsyms_FC='`$ECHO "X$include_expsyms_FC" | $Xsed -e "$delay_single_quote_subst"`' +prelink_cmds_CXX='`$ECHO "X$prelink_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' +prelink_cmds_F77='`$ECHO "X$prelink_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' +prelink_cmds_FC='`$ECHO "X$prelink_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' +file_list_spec_CXX='`$ECHO "X$file_list_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`' +file_list_spec_F77='`$ECHO "X$file_list_spec_F77" | $Xsed -e "$delay_single_quote_subst"`' +file_list_spec_FC='`$ECHO "X$file_list_spec_FC" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_action_CXX='`$ECHO "X$hardcode_action_CXX" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_action_F77='`$ECHO "X$hardcode_action_F77" | $Xsed -e "$delay_single_quote_subst"`' +hardcode_action_FC='`$ECHO "X$hardcode_action_FC" | $Xsed -e "$delay_single_quote_subst"`' +compiler_lib_search_dirs_CXX='`$ECHO "X$compiler_lib_search_dirs_CXX" | $Xsed -e "$delay_single_quote_subst"`' +compiler_lib_search_dirs_F77='`$ECHO "X$compiler_lib_search_dirs_F77" | $Xsed -e "$delay_single_quote_subst"`' +compiler_lib_search_dirs_FC='`$ECHO "X$compiler_lib_search_dirs_FC" | $Xsed -e "$delay_single_quote_subst"`' +predep_objects_CXX='`$ECHO "X$predep_objects_CXX" | $Xsed -e "$delay_single_quote_subst"`' +predep_objects_F77='`$ECHO "X$predep_objects_F77" | $Xsed -e "$delay_single_quote_subst"`' +predep_objects_FC='`$ECHO "X$predep_objects_FC" | $Xsed -e "$delay_single_quote_subst"`' +postdep_objects_CXX='`$ECHO "X$postdep_objects_CXX" | $Xsed -e "$delay_single_quote_subst"`' +postdep_objects_F77='`$ECHO "X$postdep_objects_F77" | $Xsed -e "$delay_single_quote_subst"`' +postdep_objects_FC='`$ECHO "X$postdep_objects_FC" | $Xsed -e "$delay_single_quote_subst"`' +predeps_CXX='`$ECHO "X$predeps_CXX" | $Xsed -e "$delay_single_quote_subst"`' +predeps_F77='`$ECHO "X$predeps_F77" | $Xsed -e "$delay_single_quote_subst"`' +predeps_FC='`$ECHO "X$predeps_FC" | $Xsed -e "$delay_single_quote_subst"`' +postdeps_CXX='`$ECHO "X$postdeps_CXX" | $Xsed -e "$delay_single_quote_subst"`' +postdeps_F77='`$ECHO "X$postdeps_F77" | $Xsed -e "$delay_single_quote_subst"`' +postdeps_FC='`$ECHO "X$postdeps_FC" | $Xsed -e "$delay_single_quote_subst"`' +compiler_lib_search_path_CXX='`$ECHO "X$compiler_lib_search_path_CXX" | $Xsed -e "$delay_single_quote_subst"`' +compiler_lib_search_path_F77='`$ECHO "X$compiler_lib_search_path_F77" | $Xsed -e "$delay_single_quote_subst"`' +compiler_lib_search_path_FC='`$ECHO "X$compiler_lib_search_path_FC" | $Xsed -e "$delay_single_quote_subst"`' + +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# Quote evaled strings. +for var in SED \ +GREP \ +EGREP \ +FGREP \ +LD \ +NM \ +LN_S \ +lt_SP2NL \ +lt_NL2SP \ +reload_flag \ +OBJDUMP \ +deplibs_check_method \ +file_magic_cmd \ +AR \ +AR_FLAGS \ +STRIP \ +RANLIB \ +CC \ +CFLAGS \ +compiler \ +lt_cv_sys_global_symbol_pipe \ +lt_cv_sys_global_symbol_to_cdecl \ +lt_cv_sys_global_symbol_to_c_name_address \ +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ +SHELL \ +ECHO \ +lt_prog_compiler_no_builtin_flag \ +lt_prog_compiler_wl \ +lt_prog_compiler_pic \ +lt_prog_compiler_static \ +lt_cv_prog_compiler_c_o \ +need_locks \ +DSYMUTIL \ +NMEDIT \ +LIPO \ +OTOOL \ +OTOOL64 \ +shrext_cmds \ +export_dynamic_flag_spec \ +whole_archive_flag_spec \ +compiler_needs_object \ +with_gnu_ld \ +allow_undefined_flag \ +no_undefined_flag \ +hardcode_libdir_flag_spec \ +hardcode_libdir_flag_spec_ld \ +hardcode_libdir_separator \ +fix_srcfile_path \ +exclude_expsyms \ +include_expsyms \ +file_list_spec \ +variables_saved_for_relink \ +libname_spec \ +library_names_spec \ +soname_spec \ +finish_eval \ +old_striplib \ +striplib \ +compiler_lib_search_dirs \ +predep_objects \ +postdep_objects \ +predeps \ +postdeps \ +compiler_lib_search_path \ +LD_CXX \ +LD_F77 \ +LD_FC \ +compiler_CXX \ +compiler_F77 \ +compiler_FC \ +lt_prog_compiler_no_builtin_flag_CXX \ +lt_prog_compiler_no_builtin_flag_F77 \ +lt_prog_compiler_no_builtin_flag_FC \ +lt_prog_compiler_wl_CXX \ +lt_prog_compiler_wl_F77 \ +lt_prog_compiler_wl_FC \ +lt_prog_compiler_pic_CXX \ +lt_prog_compiler_pic_F77 \ +lt_prog_compiler_pic_FC \ +lt_prog_compiler_static_CXX \ +lt_prog_compiler_static_F77 \ +lt_prog_compiler_static_FC \ +lt_cv_prog_compiler_c_o_CXX \ +lt_cv_prog_compiler_c_o_F77 \ +lt_cv_prog_compiler_c_o_FC \ +export_dynamic_flag_spec_CXX \ +export_dynamic_flag_spec_F77 \ +export_dynamic_flag_spec_FC \ +whole_archive_flag_spec_CXX \ +whole_archive_flag_spec_F77 \ +whole_archive_flag_spec_FC \ +compiler_needs_object_CXX \ +compiler_needs_object_F77 \ +compiler_needs_object_FC \ +with_gnu_ld_CXX \ +with_gnu_ld_F77 \ +with_gnu_ld_FC \ +allow_undefined_flag_CXX \ +allow_undefined_flag_F77 \ +allow_undefined_flag_FC \ +no_undefined_flag_CXX \ +no_undefined_flag_F77 \ +no_undefined_flag_FC \ +hardcode_libdir_flag_spec_CXX \ +hardcode_libdir_flag_spec_F77 \ +hardcode_libdir_flag_spec_FC \ +hardcode_libdir_flag_spec_ld_CXX \ +hardcode_libdir_flag_spec_ld_F77 \ +hardcode_libdir_flag_spec_ld_FC \ +hardcode_libdir_separator_CXX \ +hardcode_libdir_separator_F77 \ +hardcode_libdir_separator_FC \ +fix_srcfile_path_CXX \ +fix_srcfile_path_F77 \ +fix_srcfile_path_FC \ +exclude_expsyms_CXX \ +exclude_expsyms_F77 \ +exclude_expsyms_FC \ +include_expsyms_CXX \ +include_expsyms_F77 \ +include_expsyms_FC \ +file_list_spec_CXX \ +file_list_spec_F77 \ +file_list_spec_FC \ +compiler_lib_search_dirs_CXX \ +compiler_lib_search_dirs_F77 \ +compiler_lib_search_dirs_FC \ +predep_objects_CXX \ +predep_objects_F77 \ +predep_objects_FC \ +postdep_objects_CXX \ +postdep_objects_F77 \ +postdep_objects_FC \ +predeps_CXX \ +predeps_F77 \ +predeps_FC \ +postdeps_CXX \ +postdeps_F77 \ +postdeps_FC \ +compiler_lib_search_path_CXX \ +compiler_lib_search_path_F77 \ +compiler_lib_search_path_FC; do + case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in reload_cmds \ +old_postinstall_cmds \ +old_postuninstall_cmds \ +old_archive_cmds \ +extract_expsyms_cmds \ +old_archive_from_new_cmds \ +old_archive_from_expsyms_cmds \ +archive_cmds \ +archive_expsym_cmds \ +module_cmds \ +module_expsym_cmds \ +export_symbols_cmds \ +prelink_cmds \ +postinstall_cmds \ +postuninstall_cmds \ +finish_cmds \ +sys_lib_search_path_spec \ +sys_lib_dlsearch_path_spec \ +old_archive_cmds_CXX \ +old_archive_cmds_F77 \ +old_archive_cmds_FC \ +old_archive_from_new_cmds_CXX \ +old_archive_from_new_cmds_F77 \ +old_archive_from_new_cmds_FC \ +old_archive_from_expsyms_cmds_CXX \ +old_archive_from_expsyms_cmds_F77 \ +old_archive_from_expsyms_cmds_FC \ +archive_cmds_CXX \ +archive_cmds_F77 \ +archive_cmds_FC \ +archive_expsym_cmds_CXX \ +archive_expsym_cmds_F77 \ +archive_expsym_cmds_FC \ +module_cmds_CXX \ +module_cmds_F77 \ +module_cmds_FC \ +module_expsym_cmds_CXX \ +module_expsym_cmds_F77 \ +module_expsym_cmds_FC \ +export_symbols_cmds_CXX \ +export_symbols_cmds_F77 \ +export_symbols_cmds_FC \ +prelink_cmds_CXX \ +prelink_cmds_F77 \ +prelink_cmds_FC; do + case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Fix-up fallback echo if it was mangled by the above quoting rules. +case \$lt_ECHO in +*'\\\$0 --fallback-echo"') lt_ECHO=\`\$ECHO "X\$lt_ECHO" | \$Xsed -e 's/\\\\\\\\\\\\\\\$0 --fallback-echo"\$/\$0 --fallback-echo"/'\` + ;; +esac + +ac_aux_dir='$ac_aux_dir' +xsi_shell='$xsi_shell' +lt_shell_append='$lt_shell_append' + +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + + + PACKAGE='$PACKAGE' + VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' + RM='$RM' + ofile='$ofile' -cat >>$CONFIG_STATUS <<\_ACEOF + + + + + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + +# Handling of arguments. for ac_config_target in $ac_config_targets do - case "$ac_config_target" in - # Handling of arguments. - "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "Cantera/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/Makefile" ;; - "Cantera/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/Makefile" ;; - "Cantera/src/base/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/base/Makefile" ;; - "Cantera/src/zeroD/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/zeroD/Makefile" ;; - "Cantera/src/oneD/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/oneD/Makefile" ;; - "Cantera/src/converters/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/converters/Makefile" ;; - "Cantera/src/transport/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/transport/Makefile" ;; - "Cantera/src/thermo/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/thermo/Makefile" ;; - "Cantera/src/kinetics/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/kinetics/Makefile" ;; - "Cantera/src/numerics/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/numerics/Makefile" ;; - "Cantera/src/spectra/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/spectra/Makefile" ;; - "Cantera/src/equil/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/src/equil/Makefile" ;; - "Cantera/clib/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/clib/src/Makefile" ;; - "Cantera/fortran/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/fortran/src/Makefile" ;; - "Cantera/fortran/f77demos/f77demos.mak" ) CONFIG_FILES="$CONFIG_FILES Cantera/fortran/f77demos/f77demos.mak" ;; - "Cantera/fortran/f77demos/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/fortran/f77demos/Makefile" ;; - "Cantera/matlab/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/matlab/Makefile" ;; - "Cantera/matlab/setup_matlab.py" ) CONFIG_FILES="$CONFIG_FILES Cantera/matlab/setup_matlab.py" ;; - "Cantera/python/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/Makefile" ;; - "Cantera/python/setup.py" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/setup.py" ;; - "Cantera/cxx/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/Makefile" ;; - "Cantera/cxx/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/src/Makefile" ;; - "Cantera/cxx/demos/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/Makefile" ;; - "Cantera/cxx/demos/combustor/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/combustor/Makefile" ;; - "Cantera/cxx/demos/combustor/Makefile.install" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/combustor/Makefile.install" ;; - "Cantera/cxx/demos/flamespeed/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/flamespeed/Makefile" ;; - "Cantera/cxx/demos/flamespeed/Makefile.install" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/flamespeed/Makefile.install" ;; - "Cantera/cxx/demos/kinetics1/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/kinetics1/Makefile" ;; - "Cantera/cxx/demos/kinetics1/Makefile.install" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/kinetics1/Makefile.install" ;; - "Cantera/cxx/demos/NASA_coeffs/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/NASA_coeffs/Makefile" ;; - "Cantera/cxx/demos/NASA_coeffs/Makefile.install" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/NASA_coeffs/Makefile.install" ;; - "Cantera/cxx/demos/rankine/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/rankine/Makefile" ;; - "Cantera/cxx/demos/rankine/Makefile.install" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/demos/rankine/Makefile.install" ;; - "Cantera/cxx/include/Cantera.mak" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/include/Cantera.mak" ;; - "Cantera/cxx/include/Cantera_bt.mak" ) CONFIG_FILES="$CONFIG_FILES Cantera/cxx/include/Cantera_bt.mak" ;; - "Cantera/user/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/user/Makefile" ;; - "Cantera/python/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/src/Makefile" ;; - "Cantera/python/examples/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/Makefile" ;; - "Cantera/python/examples/equilibrium/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/equilibrium/Makefile" ;; - "Cantera/python/examples/equilibrium/adiabatic_flame/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/equilibrium/adiabatic_flame/Makefile" ;; - "Cantera/python/examples/equilibrium/multiphase_plasma/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/equilibrium/multiphase_plasma/Makefile" ;; - "Cantera/python/examples/equilibrium/simple_test/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/equilibrium/simple_test/Makefile" ;; - "Cantera/python/examples/equilibrium/stoich_flame/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/equilibrium/stoich_flame/Makefile" ;; - "Cantera/python/examples/gasdynamics/isentropic/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/gasdynamics/isentropic/Makefile" ;; - "Cantera/python/examples/gasdynamics/soundSpeed/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/gasdynamics/soundSpeed/Makefile" ;; - "Cantera/python/examples/flames/adiabatic_flame/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/flames/adiabatic_flame/Makefile" ;; - "Cantera/python/examples/flames/flame1/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/flames/flame1/Makefile" ;; - "Cantera/python/examples/flames/flame2/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/flames/flame2/Makefile" ;; - "Cantera/python/examples/flames/flame_fixed_T/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/flames/flame_fixed_T/Makefile" ;; - "Cantera/python/examples/flames/free_h2_air/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/flames/free_h2_air/Makefile" ;; - "Cantera/python/examples/flames/npflame1/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/flames/npflame1/Makefile" ;; - "Cantera/python/examples/flames/stflame1/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/flames/stflame1/Makefile" ;; - "Cantera/python/examples/fuel_cells/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/fuel_cells/Makefile" ;; - "Cantera/python/examples/liquid_vapor/critProperties/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/liquid_vapor/critProperties/Makefile" ;; - "Cantera/python/examples/liquid_vapor/rankine/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/liquid_vapor/rankine/Makefile" ;; - "Cantera/python/examples/kinetics/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/kinetics/Makefile" ;; - "Cantera/python/examples/misc/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/misc/Makefile" ;; - "Cantera/python/examples/reactors/combustor_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/combustor_sim/Makefile" ;; - "Cantera/python/examples/reactors/functors_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/functors_sim/Makefile" ;; - "Cantera/python/examples/reactors/mix1_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/mix1_sim/Makefile" ;; - "Cantera/python/examples/reactors/mix2_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/mix2_sim/Makefile" ;; - "Cantera/python/examples/reactors/piston_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/piston_sim/Makefile" ;; - "Cantera/python/examples/reactors/reactor1_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/reactor1_sim/Makefile" ;; - "Cantera/python/examples/reactors/reactor2_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/reactor2_sim/Makefile" ;; - "Cantera/python/examples/reactors/sensitivity_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/sensitivity_sim/Makefile" ;; - "Cantera/python/examples/reactors/surf_pfr_sim/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/surf_pfr_sim/Makefile" ;; - "Cantera/python/examples/surface_chemistry/diamond_cvd/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/surface_chemistry/diamond_cvd/Makefile" ;; - "Cantera/python/examples/surface_chemistry/catcomb_stagflow/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/surface_chemistry/catcomb_stagflow/Makefile" ;; - "Cantera/python/examples/transport/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/transport/Makefile" ;; - "Cantera/python/examples/flames/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/flames/Makefile" ;; - "Cantera/python/examples/gasdynamics/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/gasdynamics/Makefile" ;; - "Cantera/python/examples/liquid_vapor/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/liquid_vapor/Makefile" ;; - "Cantera/python/examples/reactors/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/reactors/Makefile" ;; - "Cantera/python/examples/surface_chemistry/Makefile" ) CONFIG_FILES="$CONFIG_FILES Cantera/python/examples/surface_chemistry/Makefile" ;; - "ext/lapack/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/lapack/Makefile" ;; - "ext/blas/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/blas/Makefile" ;; - "ext/cvode/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/cvode/Makefile" ;; - "ext/math/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/math/Makefile" ;; - "ext/recipes/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/recipes/Makefile" ;; - "ext/tpx/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/tpx/Makefile" ;; - "ext/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/Makefile" ;; - "ext/f2c_libs/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/f2c_libs/Makefile" ;; - "ext/f2c_blas/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/f2c_blas/Makefile" ;; - "ext/f2c_lapack/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/f2c_lapack/Makefile" ;; - "ext/f2c_math/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/f2c_math/Makefile" ;; - "examples/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;; - "examples/cxx/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/cxx/Makefile" ;; - "tools/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; - "tools/doc/Cantera.cfg" ) CONFIG_FILES="$CONFIG_FILES tools/doc/Cantera.cfg" ;; - "tools/doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/doc/Makefile" ;; - "tools/src/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/src/Makefile" ;; - "tools/src/sample.mak" ) CONFIG_FILES="$CONFIG_FILES tools/src/sample.mak" ;; - "tools/src/finish_install.py" ) CONFIG_FILES="$CONFIG_FILES tools/src/finish_install.py" ;; - "tools/src/package4mac" ) CONFIG_FILES="$CONFIG_FILES tools/src/package4mac" ;; - "tools/templates/f77/demo.mak" ) CONFIG_FILES="$CONFIG_FILES tools/templates/f77/demo.mak" ;; - "tools/templates/f90/demo.mak" ) CONFIG_FILES="$CONFIG_FILES tools/templates/f90/demo.mak" ;; - "tools/templates/cxx/demo.mak" ) CONFIG_FILES="$CONFIG_FILES tools/templates/cxx/demo.mak" ;; - "tools/testtools/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/testtools/Makefile" ;; - "data/inputs/Makefile" ) CONFIG_FILES="$CONFIG_FILES data/inputs/Makefile" ;; - "data/inputs/mkxml" ) CONFIG_FILES="$CONFIG_FILES data/inputs/mkxml" ;; - "test_problems/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/Makefile" ;; - "test_problems/cxx_ex/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cxx_ex/Makefile" ;; - "test_problems/silane_equil/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/silane_equil/Makefile" ;; - "test_problems/surfkin/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/surfkin/Makefile" ;; - "test_problems/spectroscopy/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/spectroscopy/Makefile" ;; - "test_problems/surfSolverTest/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/surfSolverTest/Makefile" ;; - "test_problems/diamondSurf/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/diamondSurf/Makefile" ;; - "test_problems/diamondSurf_dupl/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/diamondSurf_dupl/Makefile" ;; - "test_problems/ChemEquil_gri_matrix/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/ChemEquil_gri_matrix/Makefile" ;; - "test_problems/ChemEquil_gri_pairs/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/ChemEquil_gri_pairs/Makefile" ;; - "test_problems/ChemEquil_ionizedGas/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/ChemEquil_ionizedGas/Makefile" ;; - "test_problems/ChemEquil_red1/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/ChemEquil_red1/Makefile" ;; - "test_problems/CpJump/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/CpJump/Makefile" ;; - "test_problems/mixGasTransport/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/mixGasTransport/Makefile" ;; - "test_problems/multiGasTransport/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/multiGasTransport/Makefile" ;; - "test_problems/printUtilUnitTest/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/printUtilUnitTest/Makefile" ;; - "test_problems/fracCoeff/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/fracCoeff/Makefile" ;; - "test_problems/negATest/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/negATest/Makefile" ;; - "test_problems/NASA9poly_test/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/NASA9poly_test/Makefile" ;; - "test_problems/ck2cti_test/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/ck2cti_test/Makefile" ;; - "test_problems/ck2cti_test/runtest" ) CONFIG_FILES="$CONFIG_FILES test_problems/ck2cti_test/runtest" ;; - "test_problems/nasa9_reader/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/nasa9_reader/Makefile" ;; - "test_problems/nasa9_reader/runtest" ) CONFIG_FILES="$CONFIG_FILES test_problems/nasa9_reader/runtest" ;; - "test_problems/min_python/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/min_python/Makefile" ;; - "test_problems/min_python/minDiamond/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/min_python/minDiamond/Makefile" ;; - "test_problems/min_python/negATest/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/min_python/negATest/Makefile" ;; - "test_problems/pureFluidTest/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/pureFluidTest/Makefile" ;; - "test_problems/rankine_democxx/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/rankine_democxx/Makefile" ;; - "test_problems/python/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/python/Makefile" ;; - "test_problems/cathermo/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/Makefile" ;; - "test_problems/cathermo/issp/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/issp/Makefile" ;; - "test_problems/cathermo/ims/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/ims/Makefile" ;; - "test_problems/cathermo/stoichSubSSTP/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/stoichSubSSTP/Makefile" ;; - "test_problems/cathermo/testIAPWS/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/testIAPWS/Makefile" ;; - "test_problems/cathermo/testIAPWSPres/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/testIAPWSPres/Makefile" ;; - "test_problems/cathermo/testIAPWSTripP/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/testIAPWSTripP/Makefile" ;; - "test_problems/cathermo/testWaterPDSS/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/testWaterPDSS/Makefile" ;; - "test_problems/cathermo/testWaterTP/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/testWaterTP/Makefile" ;; - "test_problems/cathermo/HMW_test_1/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/HMW_test_1/Makefile" ;; - "test_problems/cathermo/HMW_test_3/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/HMW_test_3/Makefile" ;; - "test_problems/cathermo/HMW_graph_GvT/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/HMW_graph_GvT/Makefile" ;; - "test_problems/cathermo/HMW_graph_GvI/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/HMW_graph_GvI/Makefile" ;; - "test_problems/cathermo/HMW_graph_HvT/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/HMW_graph_HvT/Makefile" ;; - "test_problems/cathermo/HMW_graph_CpvT/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/HMW_graph_CpvT/Makefile" ;; - "test_problems/cathermo/HMW_graph_VvT/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/HMW_graph_VvT/Makefile" ;; - "test_problems/cathermo/DH_graph_1/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/DH_graph_1/Makefile" ;; - "test_problems/cathermo/DH_graph_acommon/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/DH_graph_acommon/Makefile" ;; - "test_problems/cathermo/DH_graph_NM/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/DH_graph_NM/Makefile" ;; - "test_problems/cathermo/DH_graph_Pitzer/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/DH_graph_Pitzer/Makefile" ;; - "test_problems/cathermo/DH_graph_bdotak/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/DH_graph_bdotak/Makefile" ;; - "test_problems/cathermo/HMW_dupl_test/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/HMW_dupl_test/Makefile" ;; - "test_problems/cathermo/VPissp/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/VPissp/Makefile" ;; - "test_problems/cathermo/wtWater/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/cathermo/wtWater/Makefile" ;; - "test_problems/VCSnonideal/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/VCSnonideal/Makefile" ;; - "test_problems/VPsilane_test/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/VPsilane_test/Makefile" ;; - "test_problems/VPsilane_test/runtest" ) CONFIG_FILES="$CONFIG_FILES test_problems/VPsilane_test/runtest" ;; - "test_problems/VCSnonideal/NaCl_equil/Makefile" ) CONFIG_FILES="$CONFIG_FILES test_problems/VCSnonideal/NaCl_equil/Makefile" ;; - "bin/install_tsc" ) CONFIG_FILES="$CONFIG_FILES bin/install_tsc" ;; - "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; - *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 -echo "$as_me: error: invalid argument: $ac_config_target" >&2;} - { (exit 1); exit 1; }; };; + case $ac_config_target in + "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; + "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "Cantera/Makefile") CONFIG_FILES="$CONFIG_FILES Cantera/Makefile" ;; + "test_problems/Makefile") CONFIG_FILES="$CONFIG_FILES test_problems/Makefile" ;; + "examples/Makefile") CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;; + "doxygen/Makefile") CONFIG_FILES="$CONFIG_FILES doxygen/Makefile" ;; + + *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done + # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely @@ -11486,701 +21686,1792 @@ done if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason to put it here, and in addition, +# simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. -# Create a temporary directory, and hook for its removal unless debugging. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. $debug || { - trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 - trap '{ (exit 1); exit 1; }' 1 2 13 15 + tmp= + trap 'exit_status=$? + { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status +' 0 + trap 'as_fn_exit 1' 1 2 13 15 } - # Create a (secure) tmp directory for tmp files. { - tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` && + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" } || { - tmp=./confstat$$-$RANDOM - (umask 077 && mkdir $tmp) -} || + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 + +# Set up the scripts for CONFIG_FILES section. +# No need to generate them if there are no CONFIG_FILES. +# This happens for instance with `./config.status config.h'. +if test -n "$CONFIG_FILES"; then + + +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\r' +else + ac_cs_awk_cr=$ac_cr +fi + +echo 'BEGIN {' >"$tmp/subs1.awk" && +_ACEOF + + { - echo "$me: cannot create a temporary directory in ." >&2 - { (exit 1); exit 1; } + echo "cat >conf$$subs.awk <<_ACEOF" && + echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && + echo "_ACEOF" +} >conf$$subs.sh || + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` +ac_delim='%!_!# ' +for ac_last_try in false false false false false :; do + . ./conf$$subs.sh || + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + + ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` + if test $ac_delim_n = $ac_delim_num; then + break + elif $ac_last_try; then + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done +rm -f conf$$subs.sh + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +cat >>"\$tmp/subs1.awk" <<\\_ACAWK && +_ACEOF +sed -n ' +h +s/^/S["/; s/!.*/"]=/ +p +g +s/^[^!]*!// +:repl +t repl +s/'"$ac_delim"'$// +t delim +:nl +h +s/\(.\{148\}\)..*/\1/ +t more1 +s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ +p +n +b repl +:more1 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t nl +:delim +h +s/\(.\{148\}\)..*/\1/ +t more2 +s/["\\]/\\&/g; s/^/"/; s/$/"/ +p +b +:more2 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t delim +' >$CONFIG_STATUS || ac_write_fail=1 +rm -f conf$$subs.awk +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +_ACAWK +cat >>"\$tmp/subs1.awk" <<_ACAWK && + for (key in S) S_is_set[key] = 1 + FS = "" + +} +{ + line = $ 0 + nfields = split(line, field, "@") + substed = 0 + len = length(field[1]) + for (i = 2; i < nfields; i++) { + key = field[i] + keylen = length(key) + if (S_is_set[key]) { + value = S[key] + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) + len += length(value) + length(field[++i]) + substed = 1 + } else + len += 1 + keylen + } + + print line } +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +else + cat +fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ + || as_fn_error "could not setup config files machinery" "$LINENO" 5 _ACEOF -cat >>$CONFIG_STATUS <<_ACEOF +# VPATH may cause trouble with some makes, so we remove $(srcdir), +# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and +# trailing colons and then remove the whole line if VPATH becomes empty +# (actually we leave an empty line to preserve line numbers). +if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=/{ +s/:*\$(srcdir):*/:/ +s/:*\${srcdir}:*/:/ +s/:*@srcdir@:*/:/ +s/^\([^=]*=[ ]*\):*/\1/ +s/:*$// +s/^[^=]*=[ ]*$// +}' +fi -# -# CONFIG_FILES section. -# - -# No need to generate the scripts if there are no CONFIG_FILES. -# This happens for instance when ./config.status config.h -if test -n "\$CONFIG_FILES"; then - # Protect against being on the right side of a sed subst in config.status. - sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g; - s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF -s,@SHELL@,$SHELL,;t t -s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t -s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t -s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t -s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t -s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t -s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t -s,@exec_prefix@,$exec_prefix,;t t -s,@prefix@,$prefix,;t t -s,@program_transform_name@,$program_transform_name,;t t -s,@bindir@,$bindir,;t t -s,@sbindir@,$sbindir,;t t -s,@libexecdir@,$libexecdir,;t t -s,@datadir@,$datadir,;t t -s,@sysconfdir@,$sysconfdir,;t t -s,@sharedstatedir@,$sharedstatedir,;t t -s,@localstatedir@,$localstatedir,;t t -s,@libdir@,$libdir,;t t -s,@includedir@,$includedir,;t t -s,@oldincludedir@,$oldincludedir,;t t -s,@infodir@,$infodir,;t t -s,@mandir@,$mandir,;t t -s,@build_alias@,$build_alias,;t t -s,@host_alias@,$host_alias,;t t -s,@target_alias@,$target_alias,;t t -s,@DEFS@,$DEFS,;t t -s,@ECHO_C@,$ECHO_C,;t t -s,@ECHO_N@,$ECHO_N,;t t -s,@ECHO_T@,$ECHO_T,;t t -s,@LIBS@,$LIBS,;t t -s,@BITCOMPILE@,$BITCOMPILE,;t t -s,@BITHARDWARE@,$BITHARDWARE,;t t -s,@BITCHANGE@,$BITCHANGE,;t t -s,@ldemulationarg@,$ldemulationarg,;t t -s,@CVF_LIBDIR@,$CVF_LIBDIR,;t t -s,@USE_CLIB_DLL@,$USE_CLIB_DLL,;t t -s,@local_inst@,$local_inst,;t t -s,@local_python_inst@,$local_python_inst,;t t -s,@python_prefix@,$python_prefix,;t t -s,@python_win_prefix@,$python_win_prefix,;t t -s,@ctversion@,$ctversion,;t t -s,@homedir@,$homedir,;t t -s,@ct_libdir@,$ct_libdir,;t t -s,@ct_bindir@,$ct_bindir,;t t -s,@ct_incdir@,$ct_incdir,;t t -s,@ct_incroot@,$ct_incroot,;t t -s,@ct_datadir@,$ct_datadir,;t t -s,@ct_demodir@,$ct_demodir,;t t -s,@ct_templdir@,$ct_templdir,;t t -s,@ct_tutdir@,$ct_tutdir,;t t -s,@ct_docdir@,$ct_docdir,;t t -s,@ct_dir@,$ct_dir,;t t -s,@ct_mandir@,$ct_mandir,;t t -s,@build@,$build,;t t -s,@build_cpu@,$build_cpu,;t t -s,@build_vendor@,$build_vendor,;t t -s,@build_os@,$build_os,;t t -s,@host@,$host,;t t -s,@host_cpu@,$host_cpu,;t t -s,@host_vendor@,$host_vendor,;t t -s,@host_os@,$host_os,;t t -s,@target@,$target,;t t -s,@target_cpu@,$target_cpu,;t t -s,@target_vendor@,$target_vendor,;t t -s,@target_os@,$target_os,;t t -s,@username@,$username,;t t -s,@ctroot@,$ctroot,;t t -s,@buildinc@,$buildinc,;t t -s,@buildlib@,$buildlib,;t t -s,@buildbin@,$buildbin,;t t -s,@MAKE@,$MAKE,;t t -s,@GRAPHVIZDIR@,$GRAPHVIZDIR,;t t -s,@ARCHIVE@,$ARCHIVE,;t t -s,@DO_RANLIB@,$DO_RANLIB,;t t -s,@RANLIB@,$RANLIB,;t t -s,@CXX_DEPENDS@,$CXX_DEPENDS,;t t -s,@USERDIR@,$USERDIR,;t t -s,@INCL_USER_CODE@,$INCL_USER_CODE,;t t -s,@CXX@,$CXX,;t t -s,@CXXFLAGS@,$CXXFLAGS,;t t -s,@LDFLAGS@,$LDFLAGS,;t t -s,@CPPFLAGS@,$CPPFLAGS,;t t -s,@ac_ct_CXX@,$ac_ct_CXX,;t t -s,@EXEEXT@,$EXEEXT,;t t -s,@OBJEXT@,$OBJEXT,;t t -s,@use_sundials@,$use_sundials,;t t -s,@CVODE_LIBS@,$CVODE_LIBS,;t t -s,@IDA_LIBS@,$IDA_LIBS,;t t -s,@sundials_include@,$sundials_include,;t t -s,@sundials_lib_dir@,$sundials_lib_dir,;t t -s,@sundials_lib@,$sundials_lib,;t t -s,@sundials_lib_dep@,$sundials_lib_dep,;t t -s,@CANTERA_DEBUG_MODE@,$CANTERA_DEBUG_MODE,;t t -s,@COMPILE_PURE_FLUIDS@,$COMPILE_PURE_FLUIDS,;t t -s,@phase_object_files@,$phase_object_files,;t t -s,@phase_header_files@,$phase_header_files,;t t -s,@COMPILE_IDEAL_SOLUTIONS@,$COMPILE_IDEAL_SOLUTIONS,;t t -s,@COMPILE_ELECTROLYTES@,$COMPILE_ELECTROLYTES,;t t -s,@NEED_CATHERMO@,$NEED_CATHERMO,;t t -s,@COMPILE_KINETICS@,$COMPILE_KINETICS,;t t -s,@COMPILE_HETEROKIN@,$COMPILE_HETEROKIN,;t t -s,@COMPILE_RXNPATH@,$COMPILE_RXNPATH,;t t -s,@WITH_REACTORS@,$WITH_REACTORS,;t t -s,@KERNEL@,$KERNEL,;t t -s,@KERNEL_OBJ@,$KERNEL_OBJ,;t t -s,@BUILD_CK@,$BUILD_CK,;t t -s,@LIB_DIR@,$LIB_DIR,;t t -s,@COMPILE_VCSNONIDEAL@,$COMPILE_VCSNONIDEAL,;t t -s,@COMPILE_H298MODIFY_CAPABILITY@,$COMPILE_H298MODIFY_CAPABILITY,;t t -s,@BOOST_INCLUDE@,$BOOST_INCLUDE,;t t -s,@BOOST_LIB@,$BOOST_LIB,;t t -s,@PURIFY@,$PURIFY,;t t -s,@build_lapack@,$build_lapack,;t t -s,@build_blas@,$build_blas,;t t -s,@BLAS_LAPACK_LIBS@,$BLAS_LAPACK_LIBS,;t t -s,@BLAS_LAPACK_LINK@,$BLAS_LAPACK_LINK,;t t -s,@BLAS_LAPACK_DIR@,$BLAS_LAPACK_DIR,;t t -s,@build_with_f2c@,$build_with_f2c,;t t -s,@build_f2c_lib@,$build_f2c_lib,;t t -s,@F2C_SYSTEMLIB@,$F2C_SYSTEMLIB,;t t -s,@BOOST_LIB_DIR@,$BOOST_LIB_DIR,;t t -s,@LOCAL_LIB_DIRS@,$LOCAL_LIB_DIRS,;t t -s,@LOCAL_LIBS@,$LOCAL_LIBS,;t t -s,@LOCAL_LIBS_DEP@,$LOCAL_LIBS_DEP,;t t -s,@INSTALL_LIBS_DEP@,$INSTALL_LIBS_DEP,;t t -s,@RAW_LIBS_DEP@,$RAW_LIBS_DEP,;t t -s,@CANTERA_CORE_LIBS@,$CANTERA_CORE_LIBS,;t t -s,@CANTERA_CORE_LIBS_DEP@,$CANTERA_CORE_LIBS_DEP,;t t -s,@CT_SHARED_LIB@,$CT_SHARED_LIB,;t t -s,@PYTHON_CMD@,$PYTHON_CMD,;t t -s,@BUILD_PYTHON@,$BUILD_PYTHON,;t t -s,@NUMPY_INC_DIR@,$NUMPY_INC_DIR,;t t -s,@NUMPY_HOME@,$NUMPY_HOME,;t t -s,@NUMARRAY_INC_DIR@,$NUMARRAY_INC_DIR,;t t -s,@NUMARRAY_HOME@,$NUMARRAY_HOME,;t t -s,@CANTERA_PYTHON_HOME@,$CANTERA_PYTHON_HOME,;t t -s,@CVSTAG@,$CVSTAG,;t t -s,@MATLAB_CMD@,$MATLAB_CMD,;t t -s,@BUILD_MATLAB@,$BUILD_MATLAB,;t t -s,@BUILD_CLIB@,$BUILD_CLIB,;t t -s,@export_name@,$export_name,;t t -s,@PIC@,$PIC,;t t -s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t -s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t -s,@INSTALL_DATA@,$INSTALL_DATA,;t t -s,@CC@,$CC,;t t -s,@CFLAGS@,$CFLAGS,;t t -s,@ac_ct_CC@,$ac_ct_CC,;t t -s,@CXXCPP@,$CXXCPP,;t t -s,@EGREP@,$EGREP,;t t -s,@SOEXT@,$SOEXT,;t t -s,@SHARED@,$SHARED,;t t -s,@CXX_INCLUDES@,$CXX_INCLUDES,;t t -s,@LCXX_FLAGS@,$LCXX_FLAGS,;t t -s,@LCXX_END_LIBS@,$LCXX_END_LIBS,;t t -s,@HAVE_STRIPSYMBOLS@,$HAVE_STRIPSYMBOLS,;t t -s,@F77@,$F77,;t t -s,@FFLAGS@,$FFLAGS,;t t -s,@ac_ct_F77@,$ac_ct_F77,;t t -s,@FLIBS@,$FLIBS,;t t -s,@F90@,$F90,;t t -s,@BUILD_F90@,$BUILD_F90,;t t -s,@F90FLAGS@,$F90FLAGS,;t t -s,@F90BUILDFLAGS@,$F90BUILDFLAGS,;t t -s,@F90LIBS@,$F90LIBS,;t t -s,@LCXX_FLIBS@,$LCXX_FLIBS,;t t -s,@precompile_headers@,$precompile_headers,;t t -s,@OS_IS_DARWIN@,$OS_IS_DARWIN,;t t -s,@OS_IS_WIN@,$OS_IS_WIN,;t t -s,@OS_IS_CYGWIN@,$OS_IS_CYGWIN,;t t -s,@SHARED_CTLIB@,$SHARED_CTLIB,;t t -s,@mex_ext@,$mex_ext,;t t -s,@F77_EXT@,$F77_EXT,;t t -s,@CXX_EXT@,$CXX_EXT,;t t -s,@OBJ_EXT@,$OBJ_EXT,;t t -s,@EXE_EXT@,$EXE_EXT,;t t -s,@math_libs@,$math_libs,;t t -s,@SO@,$SO,;t t -s,@LDSHARED@,$LDSHARED,;t t -s,@EXTRA_LINK@,$EXTRA_LINK,;t t -s,@TSCOMPARE_abs@,$TSCOMPARE_abs,;t t -s,@INSTALL_abs@,$INSTALL_abs,;t t -s,@INSTALL_VERBOSE@,$INSTALL_VERBOSE,;t t -s,@LIBOBJS@,$LIBOBJS,;t t -s,@LTLIBOBJS@,$LTLIBOBJS,;t t -CEOF - -_ACEOF - - cat >>$CONFIG_STATUS <<\_ACEOF - # Split the substitutions into bite-sized pieces for seds with - # small command number limits, like on Digital OSF/1 and HP-UX. - ac_max_sed_lines=48 - ac_sed_frag=1 # Number of current file. - ac_beg=1 # First line for current file. - ac_end=$ac_max_sed_lines # Line after last line for current file. - ac_more_lines=: - ac_sed_cmds= - while $ac_more_lines; do - if test $ac_beg -gt 1; then - sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag - else - sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag - fi - if test ! -s $tmp/subs.frag; then - ac_more_lines=false - else - # The purpose of the label and of the branching condition is to - # speed up the sed processing (if there are no `@' at all, there - # is no need to browse any of the substitutions). - # These are the two extra sed commands mentioned above. - (echo ':t - /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed - if test -z "$ac_sed_cmds"; then - ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed" - else - ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed" - fi - ac_sed_frag=`expr $ac_sed_frag + 1` - ac_beg=$ac_end - ac_end=`expr $ac_end + $ac_max_sed_lines` - fi - done - if test -z "$ac_sed_cmds"; then - ac_sed_cmds=cat - fi +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" +# Set up the scripts for CONFIG_HEADERS section. +# No need to generate them if there are no CONFIG_HEADERS. +# This happens for instance with `./config.status Makefile'. +if test -n "$CONFIG_HEADERS"; then +cat >"$tmp/defines.awk" <<\_ACAWK || +BEGIN { _ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue - # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". - case $ac_file in - - | *:- | *:-:* ) # input from stdin - cat >$tmp/stdin - ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - * ) ac_file_in=$ac_file.in ;; + +# Transform confdefs.h into an awk script `defines.awk', embedded as +# here-document in config.status, that substitutes the proper values into +# config.h.in to produce config.h. + +# Create a delimiter string that does not exist in confdefs.h, to ease +# handling of long lines. +ac_delim='%!_!# ' +for ac_last_try in false false :; do + ac_t=`sed -n "/$ac_delim/p" confdefs.h` + if test -z "$ac_t"; then + break + elif $ac_last_try; then + as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done + +# For the awk script, D is an array of macro values keyed by name, +# likewise P contains macro parameters if any. Preserve backslash +# newline sequences. + +ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +sed -n ' +s/.\{148\}/&'"$ac_delim"'/g +t rset +:rset +s/^[ ]*#[ ]*define[ ][ ]*/ / +t def +d +:def +s/\\$// +t bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3"/p +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p +d +:bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3\\\\\\n"\\/p +t cont +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p +t cont +d +:cont +n +s/.\{148\}/&'"$ac_delim"'/g +t clear +:clear +s/\\$// +t bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/"/p +d +:bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p +b cont +' >$CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + for (key in D) D_is_set[key] = 1 + FS = "" +} +/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { + line = \$ 0 + split(line, arg, " ") + if (arg[1] == "#") { + defundef = arg[2] + mac1 = arg[3] + } else { + defundef = substr(arg[1], 2) + mac1 = arg[2] + } + split(mac1, mac2, "(") #) + macro = mac2[1] + prefix = substr(line, 1, index(line, defundef) - 1) + if (D_is_set[macro]) { + # Preserve the white space surrounding the "#". + print prefix "define", macro P[macro] D[macro] + next + } else { + # Replace #undef with comments. This is necessary, for example, + # in the case of _POSIX_SOURCE, which is predefined and required + # on some systems where configure will not decide to define it. + if (defundef == "undef") { + print "/*", prefix defundef, macro, "*/" + next + } + } +} +{ print } +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + as_fn_error "could not setup config headers machinery" "$LINENO" 5 +fi # test -n "$CONFIG_HEADERS" + + +eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" +shift +for ac_tag +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input='Generated from '` + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +$as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. + case $configure_input in #( + *\&* | *\|* | *\\* ) + ac_sed_conf_input=`$as_echo "$configure_input" | + sed 's/[\\\\&|]/\\\\&/g'`;; #( + *) ac_sed_conf_input=$configure_input;; + esac + + case $ac_tag in + *:-:* | *:-) cat >"$tmp/stdin" \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; esac - # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories. - ac_dir=`(dirname "$ac_file") 2>/dev/null || + ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - { if $as_mkdir_p; then - mkdir -p "$ac_dir" - else - as_dir="$ac_dir" - as_dirs= - while test ! -d "$as_dir"; do - as_dirs="$as_dir $as_dirs" - as_dir=`(dirname "$as_dir") 2>/dev/null || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - done - test ! -n "$as_dirs" || mkdir $as_dirs - fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 -echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} - { (exit 1); exit 1; }; }; } - + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. -if test "$ac_dir" != .; then - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A "../" for each directory in $ac_dir_suffix. - ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` -else - ac_dir_suffix= ac_top_builddir= -fi +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix case $srcdir in - .) # No --srcdir option. We are building in place. + .) # We are building in place. ac_srcdir=. - if test -z "$ac_top_builddir"; then - ac_top_srcdir=. - else - ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` - fi ;; - [\\/]* | ?:[\\/]* ) # Absolute path. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir ;; - *) # Relative path. - ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_builddir$srcdir ;; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix -# Do not use `cd foo && pwd` to compute absolute paths, because -# the directories may not exist. -case `pwd` in -.) ac_abs_builddir="$ac_dir";; -*) - case "$ac_dir" in - .) ac_abs_builddir=`pwd`;; - [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; - *) ac_abs_builddir=`pwd`/"$ac_dir";; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_builddir=${ac_top_builddir}.;; -*) - case ${ac_top_builddir}. in - .) ac_abs_top_builddir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; - *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_srcdir=$ac_srcdir;; -*) - case $ac_srcdir in - .) ac_abs_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; - *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_srcdir=$ac_top_srcdir;; -*) - case $ac_top_srcdir in - .) ac_abs_top_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; - *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; - esac;; -esac + case $ac_mode in + :F) + # + # CONFIG_FILE + # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; - *) ac_INSTALL=$ac_top_builddir$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac - - if test x"$ac_file" != x-; then - { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} - rm -f "$ac_file" - fi - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - if test x"$ac_file" = x-; then - configure_input= - else - configure_input="$ac_file. " - fi - configure_input=$configure_input"Generated from `echo $ac_file_in | - sed 's,.*/,,'` by configure." - - # First look for the input files in the build tree, otherwise in the - # src tree. - ac_file_inputs=`IFS=: - for f in $ac_file_in; do - case $f in - -) echo $tmp/stdin ;; - [\\/$]*) - # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - echo "$f";; - *) # Relative - if test -f "$f"; then - # Build tree - echo "$f" - elif test -f "$srcdir/$f"; then - # Source tree - echo "$srcdir/$f" - else - # /dev/null tree - { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - fi;; - esac - done` || { (exit 1); exit 1; } _ACEOF -cat >>$CONFIG_STATUS <<_ACEOF - sed "$ac_vpsub + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= +ac_sed_dataroot=' +/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p' +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g + s&\\\${datarootdir}&$datarootdir&g' ;; +esac +_ACEOF + +# Neutralize VPATH when `$srcdir' = `.'. +# Shell code in configure.ac might set extrasub. +# FIXME: do we really want to maintain this feature? +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_sed_extra="$ac_vpsub $extrasub _ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s,@configure_input@,$configure_input,;t t -s,@srcdir@,$ac_srcdir,;t t -s,@abs_srcdir@,$ac_abs_srcdir,;t t -s,@top_srcdir@,$ac_top_srcdir,;t t -s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t -s,@builddir@,$ac_builddir,;t t -s,@abs_builddir@,$ac_abs_builddir,;t t -s,@top_builddir@,$ac_top_builddir,;t t -s,@abs_top_builddir@,$ac_abs_top_builddir,;t t -s,@INSTALL@,$ac_INSTALL,;t t -" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out - rm -f $tmp/stdin - if test x"$ac_file" != x-; then - mv $tmp/out $ac_file - else - cat $tmp/out - rm -f $tmp/out - fi +s|@configure_input@|$ac_sed_conf_input|;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@top_build_prefix@&$ac_top_build_prefix&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +s&@MKDIR_P@&$ac_MKDIR_P&;t t +$ac_datarootdir_hack +" +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 -done -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined." >&5 +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined." >&2;} -# -# CONFIG_HEADER section. -# - -# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where -# NAME is the cpp macro being defined and VALUE is the value it is being given. -# -# ac_d sets the value in "#define NAME VALUE" lines. -ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)' -ac_dB='[ ].*$,\1#\2' -ac_dC=' ' -ac_dD=',;t' -# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE". -ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' -ac_uB='$,\1#\2define\3' -ac_uC=' ' -ac_uD=',;t' - -for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue - # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". + rm -f "$tmp/stdin" case $ac_file in - - | *:- | *:-:* ) # input from stdin - cat >$tmp/stdin - ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - * ) ac_file_in=$ac_file.in ;; - esac - - test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} - - # First look for the input files in the build tree, otherwise in the - # src tree. - ac_file_inputs=`IFS=: - for f in $ac_file_in; do - case $f in - -) echo $tmp/stdin ;; - [\\/$]*) - # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - # Do quote $f, to prevent DOS paths from being IFS'd. - echo "$f";; - *) # Relative - if test -f "$f"; then - # Build tree - echo "$f" - elif test -f "$srcdir/$f"; then - # Source tree - echo "$srcdir/$f" - else - # /dev/null tree - { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - fi;; - esac - done` || { (exit 1); exit 1; } - # Remove the trailing spaces. - sed 's/[ ]*$//' $ac_file_inputs >$tmp/in - -_ACEOF - -# Transform confdefs.h into two sed scripts, `conftest.defines' and -# `conftest.undefs', that substitutes the proper values into -# config.h.in to produce config.h. The first handles `#define' -# templates, and the second `#undef' templates. -# And first: Protect against being on the right side of a sed subst in -# config.status. Protect against being in an unquoted here document -# in config.status. -rm -f conftest.defines conftest.undefs -# Using a here document instead of a string reduces the quoting nightmare. -# Putting comments in sed scripts is not portable. -# -# `end' is used to avoid that the second main sed command (meant for -# 0-ary CPP macros) applies to n-ary macro definitions. -# See the Autoconf documentation for `clear'. -cat >confdef2sed.sed <<\_ACEOF -s/[\\&,]/\\&/g -s,[\\$`],\\&,g -t clear -: clear -s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp -t end -s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp -: end -_ACEOF -# If some macros were called several times there might be several times -# the same #defines, which is useless. Nevertheless, we may not want to -# sort them, since we want the *last* AC-DEFINE to be honored. -uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines -sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs -rm -f confdef2sed.sed - -# This sed command replaces #undef with comments. This is necessary, for -# example, in the case of _POSIX_SOURCE, which is predefined and required -# on some systems where configure will not decide to define it. -cat >>conftest.undefs <<\_ACEOF -s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */, -_ACEOF - -# Break up conftest.defines because some shells have a limit on the size -# of here documents, and old seds have small limits too (100 cmds). -echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS -echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS -echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS -echo ' :' >>$CONFIG_STATUS -rm -f conftest.tail -while grep . conftest.defines >/dev/null -do - # Write a limited-size here document to $tmp/defines.sed. - echo ' cat >$tmp/defines.sed <>$CONFIG_STATUS - # Speed up: don't consider the non `#define' lines. - echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS - # Work around the forget-to-reset-the-flag bug. - echo 't clr' >>$CONFIG_STATUS - echo ': clr' >>$CONFIG_STATUS - sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS - echo 'CEOF - sed -f $tmp/defines.sed $tmp/in >$tmp/out - rm -f $tmp/in - mv $tmp/out $tmp/in -' >>$CONFIG_STATUS - sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail - rm -f conftest.defines - mv conftest.tail conftest.defines -done -rm -f conftest.defines -echo ' fi # grep' >>$CONFIG_STATUS -echo >>$CONFIG_STATUS - -# Break up conftest.undefs because some shells have a limit on the size -# of here documents, and old seds have small limits too (100 cmds). -echo ' # Handle all the #undef templates' >>$CONFIG_STATUS -rm -f conftest.tail -while grep . conftest.undefs >/dev/null -do - # Write a limited-size here document to $tmp/undefs.sed. - echo ' cat >$tmp/undefs.sed <>$CONFIG_STATUS - # Speed up: don't consider the non `#undef' - echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS - # Work around the forget-to-reset-the-flag bug. - echo 't clr' >>$CONFIG_STATUS - echo ': clr' >>$CONFIG_STATUS - sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS - echo 'CEOF - sed -f $tmp/undefs.sed $tmp/in >$tmp/out - rm -f $tmp/in - mv $tmp/out $tmp/in -' >>$CONFIG_STATUS - sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail - rm -f conftest.undefs - mv conftest.tail conftest.undefs -done -rm -f conftest.undefs - -cat >>$CONFIG_STATUS <<\_ACEOF - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - if test x"$ac_file" = x-; then - echo "/* Generated by configure. */" >$tmp/config.h - else - echo "/* $ac_file. Generated by configure. */" >$tmp/config.h - fi - cat $tmp/in >>$tmp/config.h - rm -f $tmp/in + -) cat "$tmp/out" && rm -f "$tmp/out";; + *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; + esac \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 + ;; + :H) + # + # CONFIG_HEADER + # if test x"$ac_file" != x-; then - if diff $ac_file $tmp/config.h >/dev/null 2>&1; then - { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 -echo "$as_me: $ac_file is unchanged" >&6;} + { + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" + } >"$tmp/config.h" \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 +$as_echo "$as_me: $ac_file is unchanged" >&6;} else - ac_dir=`(dirname "$ac_file") 2>/dev/null || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - { if $as_mkdir_p; then - mkdir -p "$ac_dir" - else - as_dir="$ac_dir" - as_dirs= - while test ! -d "$as_dir"; do - as_dirs="$as_dir $as_dirs" - as_dir=`(dirname "$as_dir") 2>/dev/null || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - done - test ! -n "$as_dirs" || mkdir $as_dirs - fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 -echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} - { (exit 1); exit 1; }; }; } - - rm -f $ac_file - mv $tmp/config.h $ac_file + rm -f "$ac_file" + mv "$tmp/config.h" "$ac_file" \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 fi else - cat $tmp/config.h - rm -f $tmp/config.h + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error "could not create -" "$LINENO" 5 fi +# Compute "$ac_file"'s index in $config_headers. +_am_arg="$ac_file" +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac done -_ACEOF +echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || +$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$_am_arg" : 'X\(//\)[^/]' \| \ + X"$_am_arg" : 'X\(//\)$' \| \ + X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$_am_arg" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; -cat >>$CONFIG_STATUS <<\_ACEOF + :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 +$as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac -{ (exit 0); exit 0; } + + case $ac_file$ac_mode in + "depfiles":C) test x"$AMDEP_TRUE" != x"" || { + # Autoconf 2.62 quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || +$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`$as_dirname -- "$file" || +$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir=$dirpart/$fdir; as_fn_mkdir_p + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} + ;; + "libtool":C) + + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008 Free Software Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + +# The names of the tagged configurations supported by this script. +available_tags="CXX F77 FC " + +# ### BEGIN LIBTOOL CONFIG + +# Which release of libtool.m4 was used? +macro_version=$macro_version +macro_revision=$macro_revision + +# Whether or not to build shared libraries. +build_libtool_libs=$enable_shared + +# Whether or not to build static libraries. +build_old_libs=$enable_static + +# What type of objects to build. +pic_mode=$pic_mode + +# Whether or not to optimize for fast installation. +fast_install=$enable_fast_install + +# The host system. +host_alias=$host_alias +host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os + +# A sed program that does not truncate output. +SED=$lt_SED + +# Sed that helps us avoid accidentally triggering echo(1) options like -n. +Xsed="\$SED -e 1s/^X//" + +# A grep program that handles long lines. +GREP=$lt_GREP + +# An ERE matcher. +EGREP=$lt_EGREP + +# A literal string matcher. +FGREP=$lt_FGREP + +# A BSD- or MS-compatible name lister. +NM=$lt_NM + +# Whether we need soft or hard links. +LN_S=$lt_LN_S + +# What is the maximum length of a command? +max_cmd_len=$max_cmd_len + +# Object file suffix (normally "o"). +objext=$ac_objext + +# Executable file suffix (normally ""). +exeext=$exeext + +# whether the shell understands "unset". +lt_unset=$lt_unset + +# turn spaces into newlines. +SP2NL=$lt_lt_SP2NL + +# turn newlines into spaces. +NL2SP=$lt_lt_NL2SP + +# How to create reloadable object files. +reload_flag=$lt_reload_flag +reload_cmds=$lt_reload_cmds + +# An object symbol dumper. +OBJDUMP=$lt_OBJDUMP + +# Method to check whether dependent libraries are shared objects. +deplibs_check_method=$lt_deplibs_check_method + +# Command to use when deplibs_check_method == "file_magic". +file_magic_cmd=$lt_file_magic_cmd + +# The archiver. +AR=$lt_AR +AR_FLAGS=$lt_AR_FLAGS + +# A symbol stripping program. +STRIP=$lt_STRIP + +# Commands used to install an old-style archive. +RANLIB=$lt_RANLIB +old_postinstall_cmds=$lt_old_postinstall_cmds +old_postuninstall_cmds=$lt_old_postuninstall_cmds + +# A C compiler. +LTCC=$lt_CC + +# LTCC compiler flags. +LTCFLAGS=$lt_CFLAGS + +# Take the output of nm and produce a listing of raw symbols and C names. +global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe + +# Transform the output of nm in a proper C declaration. +global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl + +# Transform the output of nm in a C name address pair. +global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address + +# Transform the output of nm in a C name address pair when lib prefix is needed. +global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix + +# The name of the directory that contains temporary libtool files. +objdir=$objdir + +# Shell to use when invoking shell scripts. +SHELL=$lt_SHELL + +# An echo program that does not interpret backslashes. +ECHO=$lt_ECHO + +# Used to examine libraries when file_magic_cmd begins with "file". +MAGIC_CMD=$MAGIC_CMD + +# Must we lock files when doing compilation? +need_locks=$lt_need_locks + +# Tool to manipulate archived DWARF debug symbol files on Mac OS X. +DSYMUTIL=$lt_DSYMUTIL + +# Tool to change global to local symbols on Mac OS X. +NMEDIT=$lt_NMEDIT + +# Tool to manipulate fat objects and archives on Mac OS X. +LIPO=$lt_LIPO + +# ldd/readelf like tool for Mach-O binaries on Mac OS X. +OTOOL=$lt_OTOOL + +# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. +OTOOL64=$lt_OTOOL64 + +# Old archive suffix (normally "a"). +libext=$libext + +# Shared library suffix (normally ".so"). +shrext_cmds=$lt_shrext_cmds + +# The commands to extract the exported symbol list from a shared archive. +extract_expsyms_cmds=$lt_extract_expsyms_cmds + +# Variables whose values should be saved in libtool wrapper scripts and +# restored at link time. +variables_saved_for_relink=$lt_variables_saved_for_relink + +# Do we need the "lib" prefix for modules? +need_lib_prefix=$need_lib_prefix + +# Do we need a version for libraries? +need_version=$need_version + +# Library versioning type. +version_type=$version_type + +# Shared library runtime path variable. +runpath_var=$runpath_var + +# Shared library path variable. +shlibpath_var=$shlibpath_var + +# Is shlibpath searched before the hard-coded library search path? +shlibpath_overrides_runpath=$shlibpath_overrides_runpath + +# Format of library name prefix. +libname_spec=$lt_libname_spec + +# List of archive names. First name is the real one, the rest are links. +# The last name is the one that the linker finds with -lNAME +library_names_spec=$lt_library_names_spec + +# The coded name of the library, if different from the real name. +soname_spec=$lt_soname_spec + +# Command to use after installation of a shared archive. +postinstall_cmds=$lt_postinstall_cmds + +# Command to use after uninstallation of a shared archive. +postuninstall_cmds=$lt_postuninstall_cmds + +# Commands used to finish a libtool library installation in a directory. +finish_cmds=$lt_finish_cmds + +# As "finish_cmds", except a single script fragment to be evaled but +# not shown. +finish_eval=$lt_finish_eval + +# Whether we should hardcode library paths into libraries. +hardcode_into_libs=$hardcode_into_libs + +# Compile-time system search path for libraries. +sys_lib_search_path_spec=$lt_sys_lib_search_path_spec + +# Run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec + +# Whether dlopen is supported. +dlopen_support=$enable_dlopen + +# Whether dlopen of programs is supported. +dlopen_self=$enable_dlopen_self + +# Whether dlopen of statically linked programs is supported. +dlopen_self_static=$enable_dlopen_self_static + +# Commands to strip libraries. +old_striplib=$lt_old_striplib +striplib=$lt_striplib + + +# The linker used to build libraries. +LD=$lt_LD + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds + +# A language specific compiler. +CC=$lt_compiler + +# Is the compiler the GNU compiler? +with_gcc=$GCC + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds +archive_expsym_cmds=$lt_archive_expsym_cmds + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds +module_expsym_cmds=$lt_module_expsym_cmds + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec + +# If ld is used when linking, flag to hardcode \$libdir into a binary +# during linking. This must work even if \$libdir does not exist. +hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs + +# Fix the shell variable \$srcfile for the compiler. +fix_srcfile_path=$lt_fix_srcfile_path + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects +postdep_objects=$lt_postdep_objects +predeps=$lt_predeps +postdeps=$lt_postdeps + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path + +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + +ltmain="$ac_aux_dir/ltmain.sh" + + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + case $xsi_shell in + yes) + cat << \_LT_EOF >> "$cfgfile" + +# func_dirname file append nondir_replacement +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +func_dirname () +{ + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac +} + +# func_basename file +func_basename () +{ + func_basename_result="${1##*/}" +} + +# func_dirname_and_basename file append nondir_replacement +# perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# Implementation must be kept synchronized with func_dirname +# and func_basename. For efficiency, we do not delegate to +# those functions but instead duplicate the functionality here. +func_dirname_and_basename () +{ + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac + func_basename_result="${1##*/}" +} + +# func_stripname prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +func_stripname () +{ + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary parameter first. + func_stripname_result=${3} + func_stripname_result=${func_stripname_result#"${1}"} + func_stripname_result=${func_stripname_result%"${2}"} +} + +# func_opt_split +func_opt_split () +{ + func_opt_split_opt=${1%%=*} + func_opt_split_arg=${1#*=} +} + +# func_lo2o object +func_lo2o () +{ + case ${1} in + *.lo) func_lo2o_result=${1%.lo}.${objext} ;; + *) func_lo2o_result=${1} ;; + esac +} + +# func_xform libobj-or-source +func_xform () +{ + func_xform_result=${1%.*}.lo +} + +# func_arith arithmetic-term... +func_arith () +{ + func_arith_result=$(( $* )) +} + +# func_len string +# STRING may not start with a hyphen. +func_len () +{ + func_len_result=${#1} +} + +_LT_EOF + ;; + *) # Bourne compatible functions. + cat << \_LT_EOF >> "$cfgfile" + +# func_dirname file append nondir_replacement +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +func_dirname () +{ + # Extract subdirectory from the argument. + func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi +} + +# func_basename file +func_basename () +{ + func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"` +} + + +# func_stripname prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# func_strip_suffix prefix name +func_stripname () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "X${3}" \ + | $Xsed -e "s%^${1}%%" -e "s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "X${3}" \ + | $Xsed -e "s%^${1}%%" -e "s%${2}\$%%"`;; + esac +} + +# sed scripts: +my_sed_long_opt='1s/^\(-[^=]*\)=.*/\1/;q' +my_sed_long_arg='1s/^-[^=]*=//' + +# func_opt_split +func_opt_split () +{ + func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"` + func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"` +} + +# func_lo2o object +func_lo2o () +{ + func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"` +} + +# func_xform libobj-or-source +func_xform () +{ + func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[^.]*$/.lo/'` +} + +# func_arith arithmetic-term... +func_arith () +{ + func_arith_result=`expr "$@"` +} + +# func_len string +# STRING may not start with a hyphen. +func_len () +{ + func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` +} + +_LT_EOF +esac + +case $lt_shell_append in + yes) + cat << \_LT_EOF >> "$cfgfile" + +# func_append var value +# Append VALUE to the end of shell variable VAR. +func_append () +{ + eval "$1+=\$2" +} +_LT_EOF + ;; + *) + cat << \_LT_EOF >> "$cfgfile" + +# func_append var value +# Append VALUE to the end of shell variable VAR. +func_append () +{ + eval "$1=\$$1\$2" +} + +_LT_EOF + ;; + esac + + + sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" + + + cat <<_LT_EOF >> "$ofile" + +# ### BEGIN LIBTOOL TAG CONFIG: CXX + +# The linker used to build libraries. +LD=$lt_LD_CXX + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds_CXX + +# A language specific compiler. +CC=$lt_compiler_CXX + +# Is the compiler the GNU compiler? +with_gcc=$GCC_CXX + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl_CXX + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic_CXX + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static_CXX + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc_CXX + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object_CXX + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds_CXX +archive_expsym_cmds=$lt_archive_expsym_cmds_CXX + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds_CXX +module_expsym_cmds=$lt_module_expsym_cmds_CXX + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld_CXX + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag_CXX + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag_CXX + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX + +# If ld is used when linking, flag to hardcode \$libdir into a binary +# during linking. This must work even if \$libdir does not exist. +hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct_CXX + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute_CXX + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L_CXX + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic_CXX + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath_CXX + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs_CXX + +# Fix the shell variable \$srcfile for the compiler. +fix_srcfile_path=$lt_fix_srcfile_path_CXX + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols_CXX + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds_CXX + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms_CXX + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms_CXX + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds_CXX + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec_CXX + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action_CXX + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects_CXX +postdep_objects=$lt_postdep_objects_CXX +predeps=$lt_predeps_CXX +postdeps=$lt_postdeps_CXX + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path_CXX + +# ### END LIBTOOL TAG CONFIG: CXX +_LT_EOF + + + cat <<_LT_EOF >> "$ofile" + +# ### BEGIN LIBTOOL TAG CONFIG: F77 + +# The linker used to build libraries. +LD=$lt_LD_F77 + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds_F77 + +# A language specific compiler. +CC=$lt_compiler_F77 + +# Is the compiler the GNU compiler? +with_gcc=$GCC_F77 + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_F77 + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl_F77 + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic_F77 + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static_F77 + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o_F77 + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc_F77 + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_F77 + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_F77 + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec_F77 + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object_F77 + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_F77 + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_F77 + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds_F77 +archive_expsym_cmds=$lt_archive_expsym_cmds_F77 + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds_F77 +module_expsym_cmds=$lt_module_expsym_cmds_F77 + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld_F77 + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag_F77 + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag_F77 + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_F77 + +# If ld is used when linking, flag to hardcode \$libdir into a binary +# during linking. This must work even if \$libdir does not exist. +hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_F77 + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator_F77 + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct_F77 + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute_F77 + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L_F77 + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var_F77 + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic_F77 + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath_F77 + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs_F77 + +# Fix the shell variable \$srcfile for the compiler. +fix_srcfile_path=$lt_fix_srcfile_path_F77 + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols_F77 + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds_F77 + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms_F77 + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms_F77 + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds_F77 + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec_F77 + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action_F77 + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_F77 + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects_F77 +postdep_objects=$lt_postdep_objects_F77 +predeps=$lt_predeps_F77 +postdeps=$lt_postdeps_F77 + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path_F77 + +# ### END LIBTOOL TAG CONFIG: F77 +_LT_EOF + + + cat <<_LT_EOF >> "$ofile" + +# ### BEGIN LIBTOOL TAG CONFIG: FC + +# The linker used to build libraries. +LD=$lt_LD_FC + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds_FC + +# A language specific compiler. +CC=$lt_compiler_FC + +# Is the compiler the GNU compiler? +with_gcc=$GCC_FC + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_FC + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl_FC + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic_FC + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static_FC + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o_FC + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc_FC + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_FC + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_FC + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec_FC + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object_FC + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_FC + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_FC + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds_FC +archive_expsym_cmds=$lt_archive_expsym_cmds_FC + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds_FC +module_expsym_cmds=$lt_module_expsym_cmds_FC + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld_FC + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag_FC + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag_FC + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_FC + +# If ld is used when linking, flag to hardcode \$libdir into a binary +# during linking. This must work even if \$libdir does not exist. +hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_FC + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator_FC + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct_FC + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute_FC + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L_FC + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var_FC + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic_FC + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath_FC + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs_FC + +# Fix the shell variable \$srcfile for the compiler. +fix_srcfile_path=$lt_fix_srcfile_path_FC + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols_FC + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds_FC + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms_FC + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms_FC + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds_FC + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec_FC + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action_FC + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_FC + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects_FC +postdep_objects=$lt_postdep_objects_FC +predeps=$lt_predeps_FC +postdeps=$lt_postdeps_FC + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path_FC + +# ### END LIBTOOL TAG CONFIG: FC +_LT_EOF + + ;; + + esac +done # for ac_tag + + +as_fn_exit 0 _ACEOF -chmod +x $CONFIG_STATUS ac_clean_files=$ac_clean_files_save +test $ac_write_fail = 0 || + as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5 + # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. @@ -12200,129 +23491,13 @@ if test "$no_create" != yes; then exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. - $ac_cs_success || { (exit 1); exit 1; } + $ac_cs_success || as_fn_exit $? fi - -# ) -if test "x${OS_IS_WIN}" = "x1"; then - cp -f config.h winconfig.h - echo 'copying config.h, which we just customized for the requested configuration, to winconfg.h' - cd ext/f2c_libs - cp arith.hwin32 arith.h - cd ../.. -fi -if test -f "test_problems/ck2cti_test/runtest"; then - chmod +x test_problems/ck2cti_test/runtest -fi -if test -f "test_problems/nasa9_reader/runtest"; then - chmod +x test_problems/nasa9_reader/runtest -fi -if test -f "test_problems/VPsilane_test/runtest"; then - chmod +x test_problems/VPsilane_test/runtest -fi -if test -f "Cantera/python/examples/equilibrium/adiabatic_flame/runtest"; then - chmod +x Cantera/python/examples/equilibrium/adiabatic_flame/runtest -fi -if test -f "Cantera/python/examples/equilibrium/multiphase_plasma/runtest"; then - chmod +x Cantera/python/examples/equilibrium/multiphase_plasma/runtest -fi -if test -f "Cantera/python/examples/equilibrium/simple_test/runtest"; then - chmod +x Cantera/python/examples/equilibrium/simple_test/runtest -fi -if test -f "Cantera/python/examples/equilibrium/stoich_flame/runtest"; then - chmod +x Cantera/python/examples/equilibrium/stoich_flame/runtest -fi -if test -f "Cantera/python/examples/gasdynamics/isentropic/runtest"; then - chmod +x Cantera/python/examples/gasdynamics/isentropic/runtest -fi -if test -f "Cantera/python/examples/gasdynamics/soundSpeed/runtest"; then - chmod +x Cantera/python/examples/gasdynamics/soundSpeed/runtest -fi -if test -f "Cantera/python/examples/flames/adiabatic_flame/runtest"; then - chmod +x Cantera/python/examples/flames/adiabatic_flame/runtest -fi -if test -f "Cantera/python/examples/flames/flame1/runtest"; then - chmod +x Cantera/python/examples/flames/flame1/runtest -fi -if test -f "Cantera/python/examples/flames/flame2/runtest"; then - chmod +x Cantera/python/examples/flames/flame2/runtest -fi -if test -f "Cantera/python/examples/flames/flame_fixed_T/runtest"; then - chmod +x Cantera/python/examples/flames/flame_fixed_T/runtest -fi -if test -f "Cantera/python/examples/flames/free_h2_air/runtest"; then - chmod +x Cantera/python/examples/flames/free_h2_air/runtest -fi -if test -f "Cantera/python/examples/flames/npflame1/runtest"; then - chmod +x Cantera/python/examples/flames/npflame1/runtest -fi -if test -f "Cantera/python/examples/flames/stflame1/runtest"; then - chmod +x Cantera/python/examples/flames/stflame1/runtest -fi -if test -f "Cantera/python/examples/fuel_cells/runtest"; then - chmod +x Cantera/python/examples/fuel_cells/runtest -fi -if test -f "Cantera/python/examples/liquid_vapor/critProperties/runtest"; then - chmod +x Cantera/python/examples/liquid_vapor/critProperties/runtest -fi -if test -f "Cantera/python/examples/liquid_vapor/rankine/runtest"; then - chmod +x Cantera/python/examples/liquid_vapor/rankine/runtest -fi -if test -f "Cantera/python/examples/kinetics/runtest"; then - chmod +x Cantera/python/examples/kinetics/runtest -fi -if test -f "Cantera/python/examples/misc/runtest"; then - chmod +x Cantera/python/examples/misc/runtest -fi -if test -f "Cantera/python/examples/reactors/combustor_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/combustor_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/mix1_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/mix1_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/mix2_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/mix2_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/piston_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/piston_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/reactor1_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/reactor1_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/reactor2_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/reactor2_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/sensitivity_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/sensitivity_sim/runtest -fi -if test -f "Cantera/python/examples/reactors/surf_pfr_sim/runtest"; then - chmod +x Cantera/python/examples/reactors/surf_pfr_sim/runtest -fi -if test -f "Cantera/python/examples/surface_chemistry/diamond_cvd/runtest"; then - chmod +x Cantera/python/examples/surface_chemistry/diamond_cvd/runtest -fi -if test -f "Cantera/python/examples/surface_chemistry/catcomb_stagflow/runtest"; then - chmod +x Cantera/python/examples/surface_chemistry/catcomb_stagflow/runtest -fi -if test -f "Cantera/python/examples/transport/runtest"; then - chmod +x Cantera/python/examples/transport/runtest -fi -if test -f "bin/install_tsc"; then - chmod +x bin/install_tsc -fi -if test -f "data/inputs/mkxml"; then - chmod +x data/inputs/mkxml +if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi -echo -if test "x${OS_IS_WIN}" = "x0"; then - echo "Now type '${MAKE}' to build Cantera" -else - echo "Now start Visual Studio, open workspace 'win32/vc9/cantera.sln'," - echo "and build project 'all'. " -# echo " When this finishes, come back here and " -# echo "type 'make win' to make the Python and/or MATLAB interfaces." -fi -echo - +# FINAL SUMMARY +AX_SUMMARIZE_CONFIG From 157f41624aacc5ff4f36243298c13743d5ec09f8 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 10 Nov 2011 23:14:03 +0000 Subject: [PATCH 007/124] [cantera+autotools]: adding some macros so configure script will run --- m4/common/ax_split_version.m4 | 38 +++++++++++++++++++++++++++++ m4/config_summary.m4 | 46 +++++++++++++++++++++++++++++++++++ 2 files changed, 84 insertions(+) create mode 100644 m4/common/ax_split_version.m4 create mode 100644 m4/config_summary.m4 diff --git a/m4/common/ax_split_version.m4 b/m4/common/ax_split_version.m4 new file mode 100644 index 000000000..02737c392 --- /dev/null +++ b/m4/common/ax_split_version.m4 @@ -0,0 +1,38 @@ +# =========================================================================== +# http://www.gnu.org/software/autoconf-archive/ax_split_version.html +# =========================================================================== +# +# SYNOPSIS +# +# AX_SPLIT_VERSION +# +# DESCRIPTION +# +# Splits a version number in the format MAJOR.MINOR.POINT into its +# separate components. +# +# Sets the variables. +# +# LICENSE +# +# Copyright (c) 2008 Tom Howard +# +# Copying and distribution of this file, with or without modification, are +# permitted in any medium without royalty provided the copyright notice +# and this notice are preserved. This file is offered as-is, without any +# warranty. + +#serial 9 + +AC_DEFUN([AX_SPLIT_VERSION],[ + AC_REQUIRE([AC_PROG_SED]) + AX_MAJOR_VERSION=`echo "$VERSION" | $SED 's/\([[^.]][[^.]]*\).*/\1/'` + AX_MINOR_VERSION=`echo "$VERSION" | $SED 's/[[^.]][[^.]]*.\([[^.]][[^.]]*\).*/\1/'` + AX_POINT_VERSION=`echo "$VERSION" | $SED 's/[[^.]][[^.]]*.[[^.]][[^.]]*.\(.*\)/\1/'` + AC_MSG_CHECKING([Major version]) + AC_MSG_RESULT([$AX_MAJOR_VERSION]) + AC_MSG_CHECKING([Minor version]) + AC_MSG_RESULT([$AX_MINOR_VERSION]) + AC_MSG_CHECKING([Point version]) + AC_MSG_RESULT([$AX_POINT_VERSION]) +]) diff --git a/m4/config_summary.m4 b/m4/config_summary.m4 new file mode 100644 index 000000000..c1e691adc --- /dev/null +++ b/m4/config_summary.m4 @@ -0,0 +1,46 @@ +# SYNOPSIS +# +# Summarizes configuration settings. +# +# AX_SUMMARIZE_CONFIG([, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) +# +# DESCRIPTION +# +# Outputs a summary of relevant configuration settings. +# +# LAST MODIFICATION +# +# $Id: config_summary.m4 22758 2011-08-05 22:05:54Z nick $ +# + +AC_DEFUN([AX_SUMMARIZE_CONFIG], +[ + +echo +echo '----------------------------------- SUMMARY -----------------------------------' +echo +echo Package version................. : $PACKAGE-$VERSION +echo +echo C++ compiler.................... : $CXX +echo C++ compiler flags.............. : $CXXFLAGS +echo C compiler...................... : $CC +echo C compiler flags................ : $CFLAGS +echo Fortran compiler................ : $FC +echo Fortran compiler flags.......... : $FCFLAGS +echo Install dir..................... : $prefix +echo Build user...................... : $USER +echo Build host...................... : $BUILD_HOST +echo Configure date.................. : $BUILD_DATE +echo Build architecture.............. : $BUILD_ARCH +echo SVN revision number............. : $BUILD_VERSION +echo +echo +echo '-------------------------------------------------------------------------------' + +echo +echo Configure complete, now type \'make\' and then \'make install\'. +echo +echo To verify your verification library, type \'make check\' +echo to run a suite of regression tests. + +]) From 02e7b06709ad87a7d3edb298c7313a5e01d9cf78 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 10 Nov 2011 23:16:11 +0000 Subject: [PATCH 008/124] [cantera+autotools]: removing configure script-- configure.ac is all that is needed --- configure | 23503 ---------------------------------------------------- 1 file changed, 23503 deletions(-) delete mode 100755 configure diff --git a/configure b/configure deleted file mode 100755 index 7000ac0de..000000000 --- a/configure +++ /dev/null @@ -1,23503 +0,0 @@ -#! /bin/sh -# Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.65 for cantera 1.8.0. -# -# Report bugs to . -# -# -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# -# -# This configure script is free software; the Free Software Foundation -# gives unlimited permission to copy, distribute and modify it. -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in #( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -case $0 in #(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -if test "x$CONFIG_SHELL" = x; then - as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which - # is contrary to our usage. Disable this feature. - alias -g '\${1+\"\$@\"}'='\"\$@\"' - setopt NO_GLOB_SUBST -else - case \`(set -o) 2>/dev/null\` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi -" - as_required="as_fn_return () { (exit \$1); } -as_fn_success () { as_fn_return 0; } -as_fn_failure () { as_fn_return 1; } -as_fn_ret_success () { return 0; } -as_fn_ret_failure () { return 1; } - -exitcode=0 -as_fn_success || { exitcode=1; echo as_fn_success failed.; } -as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } -as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } -as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } -if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : - -else - exitcode=1; echo positional parameters were not saved. -fi -test x\$exitcode = x0 || exit 1" - as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO - as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO - eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && - test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 -test \$(( 1 + 1 )) = 2 || exit 1" - if (eval "$as_required") 2>/dev/null; then : - as_have_required=yes -else - as_have_required=no -fi - if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : - -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -as_found=false -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - as_found=: - case $as_dir in #( - /*) - for as_base in sh bash ksh sh5; do - # Try only shells that exist, to save several forks. - as_shell=$as_dir/$as_base - if { test -f "$as_shell" || test -f "$as_shell.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : - CONFIG_SHELL=$as_shell as_have_required=yes - if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : - break 2 -fi -fi - done;; - esac - as_found=false -done -$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : - CONFIG_SHELL=$SHELL as_have_required=yes -fi; } -IFS=$as_save_IFS - - - if test "x$CONFIG_SHELL" != x; then : - # We cannot yet assume a decent shell, so we have to provide a - # neutralization value for shells without unset; and this also - # works around shells that cannot unset nonexistent variables. - BASH_ENV=/dev/null - ENV=/dev/null - (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV - export CONFIG_SHELL - exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} -fi - - if test x$as_have_required = xno; then : - $as_echo "$0: This script requires a shell more modern than all" - $as_echo "$0: the shells that I found on your system." - if test x${ZSH_VERSION+set} = xset ; then - $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" - $as_echo "$0: be upgraded to zsh 4.3.4 or later." - else - $as_echo "$0: Please tell bug-autoconf@gnu.org and -$0: nick@ices.utexas.edu about your system, including any -$0: error possibly output before this message. Then install -$0: a modern shell, or manually run the script under such a -$0: shell if you do have one." - fi - exit 1 -fi -fi -fi -SHELL=${CONFIG_SHELL-/bin/sh} -export SHELL -# Unset more variables known to interfere with behavior of common tools. -CLICOLOR_FORCE= GREP_OPTIONS= -unset CLICOLOR_FORCE GREP_OPTIONS - -## --------------------- ## -## M4sh Shell Functions. ## -## --------------------- ## -# as_fn_unset VAR -# --------------- -# Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset - -# as_fn_set_status STATUS -# ----------------------- -# Set $? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} # as_fn_set_status - -# as_fn_exit STATUS -# ----------------- -# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} # as_fn_exit - -# as_fn_mkdir_p -# ------------- -# Create "$as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" - - -} # as_fn_mkdir_p -# as_fn_append VAR VALUE -# ---------------------- -# Append the text in VALUE to the end of the definition contained in VAR. Take -# advantage of any shell optimizations that allow amortized linear growth over -# repeated appends, instead of the typical quadratic growth present in naive -# implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -# as_fn_arith ARG... -# ------------------ -# Perform arithmetic evaluation on the ARGs, and store the result in the -# global $as_val. Take advantage of shells that can avoid forks. The arguments -# must be portable across $(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -# as_fn_error ERROR [LINENO LOG_FD] -# --------------------------------- -# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are -# provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with status $?, using 1 if that was 0. -as_fn_error () -{ - as_status=$?; test $as_status -eq 0 && as_status=1 - if test "$3"; then - as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 - fi - $as_echo "$as_me: error: $1" >&2 - as_fn_exit $as_status -} # as_fn_error - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - - - as_lineno_1=$LINENO as_lineno_1a=$LINENO - as_lineno_2=$LINENO as_lineno_2a=$LINENO - eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && - test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { - # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) - sed -n ' - p - /[$]LINENO/= - ' <$as_myself | - sed ' - s/[$]LINENO.*/&-/ - t lineno - b - :lineno - N - :loop - s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ - t loop - s/-\n.*// - ' >$as_me.lineno && - chmod +x "$as_me.lineno" || - { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensitive to this). - . "./$as_me.lineno" - # Exit status is that of the last command. - exit -} - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in #((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -p' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -p' - fi -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -if test -x / >/dev/null 2>&1; then - as_test_x='test -x' -else - if ls -dL / >/dev/null 2>&1; then - as_ls_L_option=L - else - as_ls_L_option= - fi - as_test_x=' - eval sh -c '\'' - if test -d "$1"; then - test -d "$1/."; - else - case $1 in #( - -*)set "./$1";; - esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( - ???[sx]*):;;*)false;;esac;fi - '\'' sh - ' -fi -as_executable_p=$as_test_x - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - - -# Check that we are running under the correct shell. -SHELL=${CONFIG_SHELL-/bin/sh} - -case X$lt_ECHO in -X*--fallback-echo) - # Remove one level of quotation (which was required for Make). - ECHO=`echo "$lt_ECHO" | sed 's,\\\\\$\\$0,'$0','` - ;; -esac - -ECHO=${lt_ECHO-echo} -if test "X$1" = X--no-reexec; then - # Discard the --no-reexec flag, and continue. - shift -elif test "X$1" = X--fallback-echo; then - # Avoid inline document here, it may be left over - : -elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' ; then - # Yippee, $ECHO works! - : -else - # Restart under the correct shell. - exec $SHELL "$0" --no-reexec ${1+"$@"} -fi - -if test "X$1" = X--fallback-echo; then - # used as fallback echo - shift - cat <<_LT_EOF -$* -_LT_EOF - exit 0 -fi - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -if test -z "$lt_ECHO"; then - if test "X${echo_test_string+set}" != Xset; then - # find a string as large as possible, as long as the shell can cope with it - for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do - # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... - if { echo_test_string=`eval $cmd`; } 2>/dev/null && - { test "X$echo_test_string" = "X$echo_test_string"; } 2>/dev/null - then - break - fi - done - fi - - if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && - echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - : - else - # The Solaris, AIX, and Digital Unix default echo programs unquote - # backslashes. This makes it impossible to quote backslashes using - # echo "$something" | sed 's/\\/\\\\/g' - # - # So, first we look for a working echo in the user's PATH. - - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for dir in $PATH /usr/ucb; do - IFS="$lt_save_ifs" - if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && - test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - ECHO="$dir/echo" - break - fi - done - IFS="$lt_save_ifs" - - if test "X$ECHO" = Xecho; then - # We didn't find a better echo, so look for alternatives. - if test "X`{ print -r '\t'; } 2>/dev/null`" = 'X\t' && - echo_testing_string=`{ print -r "$echo_test_string"; } 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - # This shell has a builtin print -r that does the trick. - ECHO='print -r' - elif { test -f /bin/ksh || test -f /bin/ksh$ac_exeext; } && - test "X$CONFIG_SHELL" != X/bin/ksh; then - # If we have ksh, try running configure again with it. - ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} - export ORIGINAL_CONFIG_SHELL - CONFIG_SHELL=/bin/ksh - export CONFIG_SHELL - exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"} - else - # Try using printf. - ECHO='printf %s\n' - if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && - echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - # Cool, printf works - : - elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && - test "X$echo_testing_string" = 'X\t' && - echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL - export CONFIG_SHELL - SHELL="$CONFIG_SHELL" - export SHELL - ECHO="$CONFIG_SHELL $0 --fallback-echo" - elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && - test "X$echo_testing_string" = 'X\t' && - echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - ECHO="$CONFIG_SHELL $0 --fallback-echo" - else - # maybe with a smaller string... - prev=: - - for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do - if { test "X$echo_test_string" = "X`eval $cmd`"; } 2>/dev/null - then - break - fi - prev="$cmd" - done - - if test "$prev" != 'sed 50q "$0"'; then - echo_test_string=`eval $prev` - export echo_test_string - exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"} - else - # Oops. We lost completely, so just stick with echo. - ECHO=echo - fi - fi - fi - fi - fi -fi - -# Copy echo and quote the copy suitably for passing to libtool from -# the Makefile, instead of quoting the original, which is used later. -lt_ECHO=$ECHO -if test "X$lt_ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then - lt_ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo" -fi - - - - -test -n "$DJDIR" || exec 7<&0 &1 - -# Name of the host. -# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, -# so uname gets run too. -ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` - -# -# Initializations. -# -ac_default_prefix=/usr/local -ac_clean_files= -ac_config_libobj_dir=. -LIBOBJS= -cross_compiling=no -subdirs= -MFLAGS= -MAKEFLAGS= - -# Identity of this package. -PACKAGE_NAME='cantera' -PACKAGE_TARNAME='cantera' -PACKAGE_VERSION='1.8.0' -PACKAGE_STRING='cantera 1.8.0' -PACKAGE_BUGREPORT='nick@ices.utexas.edu' -PACKAGE_URL='' - -# Factoring default headers for most tests. -ac_includes_default="\ -#include -#ifdef HAVE_SYS_TYPES_H -# include -#endif -#ifdef HAVE_SYS_STAT_H -# include -#endif -#ifdef STDC_HEADERS -# include -# include -#else -# ifdef HAVE_STDLIB_H -# include -# endif -#endif -#ifdef HAVE_STRING_H -# if !defined STDC_HEADERS && defined HAVE_MEMORY_H -# include -# endif -# include -#endif -#ifdef HAVE_STRINGS_H -# include -#endif -#ifdef HAVE_INTTYPES_H -# include -#endif -#ifdef HAVE_STDINT_H -# include -#endif -#ifdef HAVE_UNISTD_H -# include -#endif" - -ac_subst_vars='am__EXEEXT_FALSE -am__EXEEXT_TRUE -LTLIBOBJS -LIBOBJS -CXXCPP -CPP -OTOOL64 -OTOOL -LIPO -NMEDIT -DSYMUTIL -lt_ECHO -RANLIB -AR -OBJDUMP -LN_S -NM -ac_ct_DUMPBIN -DUMPBIN -LD -FGREP -EGREP -GREP -SED -host_os -host_vendor -host_cpu -host -build_os -build_vendor -build_cpu -build -LIBTOOL -ac_ct_F77 -FFLAGS -F77 -ac_ct_FC -FCFLAGS -FC -am__fastdepCXX_FALSE -am__fastdepCXX_TRUE -CXXDEPMODE -ac_ct_CXX -CXXFLAGS -CXX -am__fastdepCC_FALSE -am__fastdepCC_TRUE -CCDEPMODE -AMDEPBACKSLASH -AMDEP_FALSE -AMDEP_TRUE -am__quote -am__include -DEPDIR -OBJEXT -EXEEXT -ac_ct_CC -CPPFLAGS -LDFLAGS -CFLAGS -CC -PACKAGE_DESCRIPTION -GENERIC_RELEASE -GENERIC_MICRO_VERSION -GENERIC_MINOR_VERSION -GENERIC_MAJOR_VERSION -GENERIC_VERSION -am__untar -am__tar -AMTAR -am__leading_dot -SET_MAKE -AWK -mkdir_p -MKDIR_P -INSTALL_STRIP_PROGRAM -STRIP -install_sh -MAKEINFO -AUTOHEADER -AUTOMAKE -AUTOCONF -ACLOCAL -VERSION -PACKAGE -CYGPATH_W -am__isrc -INSTALL_DATA -INSTALL_SCRIPT -INSTALL_PROGRAM -target_alias -host_alias -build_alias -LIBS -ECHO_T -ECHO_N -ECHO_C -DEFS -mandir -localedir -libdir -psdir -pdfdir -dvidir -htmldir -infodir -docdir -oldincludedir -includedir -localstatedir -sharedstatedir -sysconfdir -datadir -datarootdir -libexecdir -sbindir -bindir -program_transform_name -prefix -exec_prefix -PACKAGE_URL -PACKAGE_BUGREPORT -PACKAGE_STRING -PACKAGE_VERSION -PACKAGE_TARNAME -PACKAGE_NAME -PATH_SEPARATOR -SHELL' -ac_subst_files='' -ac_user_opts=' -enable_option_checking -enable_dependency_tracking -enable_shared -enable_static -with_pic -enable_fast_install -with_gnu_ld -enable_libtool_lock -' - ac_precious_vars='build_alias -host_alias -target_alias -CC -CFLAGS -LDFLAGS -LIBS -CPPFLAGS -CXX -CXXFLAGS -CCC -FC -FCFLAGS -F77 -FFLAGS -CPP -CXXCPP' - - -# Initialize some variables set by options. -ac_init_help= -ac_init_version=false -ac_unrecognized_opts= -ac_unrecognized_sep= -# The variables have the same names as the options, with -# dashes changed to underlines. -cache_file=/dev/null -exec_prefix=NONE -no_create= -no_recursion= -prefix=NONE -program_prefix=NONE -program_suffix=NONE -program_transform_name=s,x,x, -silent= -site= -srcdir= -verbose= -x_includes=NONE -x_libraries=NONE - -# Installation directory options. -# These are left unexpanded so users can "make install exec_prefix=/foo" -# and all the variables that are supposed to be based on exec_prefix -# by default will actually change. -# Use braces instead of parens because sh, perl, etc. also accept them. -# (The list follows the same order as the GNU Coding Standards.) -bindir='${exec_prefix}/bin' -sbindir='${exec_prefix}/sbin' -libexecdir='${exec_prefix}/libexec' -datarootdir='${prefix}/share' -datadir='${datarootdir}' -sysconfdir='${prefix}/etc' -sharedstatedir='${prefix}/com' -localstatedir='${prefix}/var' -includedir='${prefix}/include' -oldincludedir='/usr/include' -docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' -infodir='${datarootdir}/info' -htmldir='${docdir}' -dvidir='${docdir}' -pdfdir='${docdir}' -psdir='${docdir}' -libdir='${exec_prefix}/lib' -localedir='${datarootdir}/locale' -mandir='${datarootdir}/man' - -ac_prev= -ac_dashdash= -for ac_option -do - # If the previous option needs an argument, assign it. - if test -n "$ac_prev"; then - eval $ac_prev=\$ac_option - ac_prev= - continue - fi - - case $ac_option in - *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; - *) ac_optarg=yes ;; - esac - - # Accept the important Cygnus configure options, so we can diagnose typos. - - case $ac_dashdash$ac_option in - --) - ac_dashdash=yes ;; - - -bindir | --bindir | --bindi | --bind | --bin | --bi) - ac_prev=bindir ;; - -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) - bindir=$ac_optarg ;; - - -build | --build | --buil | --bui | --bu) - ac_prev=build_alias ;; - -build=* | --build=* | --buil=* | --bui=* | --bu=*) - build_alias=$ac_optarg ;; - - -cache-file | --cache-file | --cache-fil | --cache-fi \ - | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) - ac_prev=cache_file ;; - -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ - | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) - cache_file=$ac_optarg ;; - - --config-cache | -C) - cache_file=config.cache ;; - - -datadir | --datadir | --datadi | --datad) - ac_prev=datadir ;; - -datadir=* | --datadir=* | --datadi=* | --datad=*) - datadir=$ac_optarg ;; - - -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ - | --dataroo | --dataro | --datar) - ac_prev=datarootdir ;; - -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ - | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) - datarootdir=$ac_optarg ;; - - -disable-* | --disable-*) - ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid feature name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"enable_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval enable_$ac_useropt=no ;; - - -docdir | --docdir | --docdi | --doc | --do) - ac_prev=docdir ;; - -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) - docdir=$ac_optarg ;; - - -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) - ac_prev=dvidir ;; - -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) - dvidir=$ac_optarg ;; - - -enable-* | --enable-*) - ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid feature name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"enable_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval enable_$ac_useropt=\$ac_optarg ;; - - -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ - | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ - | --exec | --exe | --ex) - ac_prev=exec_prefix ;; - -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ - | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ - | --exec=* | --exe=* | --ex=*) - exec_prefix=$ac_optarg ;; - - -gas | --gas | --ga | --g) - # Obsolete; use --with-gas. - with_gas=yes ;; - - -help | --help | --hel | --he | -h) - ac_init_help=long ;; - -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) - ac_init_help=recursive ;; - -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) - ac_init_help=short ;; - - -host | --host | --hos | --ho) - ac_prev=host_alias ;; - -host=* | --host=* | --hos=* | --ho=*) - host_alias=$ac_optarg ;; - - -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) - ac_prev=htmldir ;; - -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ - | --ht=*) - htmldir=$ac_optarg ;; - - -includedir | --includedir | --includedi | --included | --include \ - | --includ | --inclu | --incl | --inc) - ac_prev=includedir ;; - -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ - | --includ=* | --inclu=* | --incl=* | --inc=*) - includedir=$ac_optarg ;; - - -infodir | --infodir | --infodi | --infod | --info | --inf) - ac_prev=infodir ;; - -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) - infodir=$ac_optarg ;; - - -libdir | --libdir | --libdi | --libd) - ac_prev=libdir ;; - -libdir=* | --libdir=* | --libdi=* | --libd=*) - libdir=$ac_optarg ;; - - -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ - | --libexe | --libex | --libe) - ac_prev=libexecdir ;; - -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ - | --libexe=* | --libex=* | --libe=*) - libexecdir=$ac_optarg ;; - - -localedir | --localedir | --localedi | --localed | --locale) - ac_prev=localedir ;; - -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) - localedir=$ac_optarg ;; - - -localstatedir | --localstatedir | --localstatedi | --localstated \ - | --localstate | --localstat | --localsta | --localst | --locals) - ac_prev=localstatedir ;; - -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ - | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) - localstatedir=$ac_optarg ;; - - -mandir | --mandir | --mandi | --mand | --man | --ma | --m) - ac_prev=mandir ;; - -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) - mandir=$ac_optarg ;; - - -nfp | --nfp | --nf) - # Obsolete; use --without-fp. - with_fp=no ;; - - -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c | -n) - no_create=yes ;; - - -no-recursion | --no-recursion | --no-recursio | --no-recursi \ - | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) - no_recursion=yes ;; - - -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ - | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ - | --oldin | --oldi | --old | --ol | --o) - ac_prev=oldincludedir ;; - -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ - | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ - | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) - oldincludedir=$ac_optarg ;; - - -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) - ac_prev=prefix ;; - -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) - prefix=$ac_optarg ;; - - -program-prefix | --program-prefix | --program-prefi | --program-pref \ - | --program-pre | --program-pr | --program-p) - ac_prev=program_prefix ;; - -program-prefix=* | --program-prefix=* | --program-prefi=* \ - | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) - program_prefix=$ac_optarg ;; - - -program-suffix | --program-suffix | --program-suffi | --program-suff \ - | --program-suf | --program-su | --program-s) - ac_prev=program_suffix ;; - -program-suffix=* | --program-suffix=* | --program-suffi=* \ - | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) - program_suffix=$ac_optarg ;; - - -program-transform-name | --program-transform-name \ - | --program-transform-nam | --program-transform-na \ - | --program-transform-n | --program-transform- \ - | --program-transform | --program-transfor \ - | --program-transfo | --program-transf \ - | --program-trans | --program-tran \ - | --progr-tra | --program-tr | --program-t) - ac_prev=program_transform_name ;; - -program-transform-name=* | --program-transform-name=* \ - | --program-transform-nam=* | --program-transform-na=* \ - | --program-transform-n=* | --program-transform-=* \ - | --program-transform=* | --program-transfor=* \ - | --program-transfo=* | --program-transf=* \ - | --program-trans=* | --program-tran=* \ - | --progr-tra=* | --program-tr=* | --program-t=*) - program_transform_name=$ac_optarg ;; - - -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) - ac_prev=pdfdir ;; - -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) - pdfdir=$ac_optarg ;; - - -psdir | --psdir | --psdi | --psd | --ps) - ac_prev=psdir ;; - -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) - psdir=$ac_optarg ;; - - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - silent=yes ;; - - -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) - ac_prev=sbindir ;; - -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ - | --sbi=* | --sb=*) - sbindir=$ac_optarg ;; - - -sharedstatedir | --sharedstatedir | --sharedstatedi \ - | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ - | --sharedst | --shareds | --shared | --share | --shar \ - | --sha | --sh) - ac_prev=sharedstatedir ;; - -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ - | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ - | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ - | --sha=* | --sh=*) - sharedstatedir=$ac_optarg ;; - - -site | --site | --sit) - ac_prev=site ;; - -site=* | --site=* | --sit=*) - site=$ac_optarg ;; - - -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) - ac_prev=srcdir ;; - -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) - srcdir=$ac_optarg ;; - - -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ - | --syscon | --sysco | --sysc | --sys | --sy) - ac_prev=sysconfdir ;; - -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ - | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) - sysconfdir=$ac_optarg ;; - - -target | --target | --targe | --targ | --tar | --ta | --t) - ac_prev=target_alias ;; - -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) - target_alias=$ac_optarg ;; - - -v | -verbose | --verbose | --verbos | --verbo | --verb) - verbose=yes ;; - - -version | --version | --versio | --versi | --vers | -V) - ac_init_version=: ;; - - -with-* | --with-*) - ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid package name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"with_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval with_$ac_useropt=\$ac_optarg ;; - - -without-* | --without-*) - ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid package name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"with_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval with_$ac_useropt=no ;; - - --x) - # Obsolete; use --with-x. - with_x=yes ;; - - -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ - | --x-incl | --x-inc | --x-in | --x-i) - ac_prev=x_includes ;; - -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ - | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) - x_includes=$ac_optarg ;; - - -x-libraries | --x-libraries | --x-librarie | --x-librari \ - | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) - ac_prev=x_libraries ;; - -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ - | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) - x_libraries=$ac_optarg ;; - - -*) as_fn_error "unrecognized option: \`$ac_option' -Try \`$0 --help' for more information." - ;; - - *=*) - ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` - # Reject names that are not valid shell variable names. - case $ac_envvar in #( - '' | [0-9]* | *[!_$as_cr_alnum]* ) - as_fn_error "invalid variable name: \`$ac_envvar'" ;; - esac - eval $ac_envvar=\$ac_optarg - export $ac_envvar ;; - - *) - # FIXME: should be removed in autoconf 3.0. - $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 - expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && - $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 - : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} - ;; - - esac -done - -if test -n "$ac_prev"; then - ac_option=--`echo $ac_prev | sed 's/_/-/g'` - as_fn_error "missing argument to $ac_option" -fi - -if test -n "$ac_unrecognized_opts"; then - case $enable_option_checking in - no) ;; - fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;; - *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; - esac -fi - -# Check all directory arguments for consistency. -for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ - datadir sysconfdir sharedstatedir localstatedir includedir \ - oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir -do - eval ac_val=\$$ac_var - # Remove trailing slashes. - case $ac_val in - */ ) - ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` - eval $ac_var=\$ac_val;; - esac - # Be sure to have absolute directory names. - case $ac_val in - [\\/$]* | ?:[\\/]* ) continue;; - NONE | '' ) case $ac_var in *prefix ) continue;; esac;; - esac - as_fn_error "expected an absolute directory name for --$ac_var: $ac_val" -done - -# There might be people who depend on the old broken behavior: `$host' -# used to hold the argument of --host etc. -# FIXME: To remove some day. -build=$build_alias -host=$host_alias -target=$target_alias - -# FIXME: To remove some day. -if test "x$host_alias" != x; then - if test "x$build_alias" = x; then - cross_compiling=maybe - $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. - If a cross compiler is detected then cross compile mode will be used." >&2 - elif test "x$build_alias" != "x$host_alias"; then - cross_compiling=yes - fi -fi - -ac_tool_prefix= -test -n "$host_alias" && ac_tool_prefix=$host_alias- - -test "$silent" = yes && exec 6>/dev/null - - -ac_pwd=`pwd` && test -n "$ac_pwd" && -ac_ls_di=`ls -di .` && -ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - as_fn_error "working directory cannot be determined" -test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - as_fn_error "pwd does not report name of working directory" - - -# Find the source files, if location was not specified. -if test -z "$srcdir"; then - ac_srcdir_defaulted=yes - # Try the directory containing this script, then the parent directory. - ac_confdir=`$as_dirname -- "$as_myself" || -$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_myself" : 'X\(//\)[^/]' \| \ - X"$as_myself" : 'X\(//\)$' \| \ - X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_myself" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - srcdir=$ac_confdir - if test ! -r "$srcdir/$ac_unique_file"; then - srcdir=.. - fi -else - ac_srcdir_defaulted=no -fi -if test ! -r "$srcdir/$ac_unique_file"; then - test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - as_fn_error "cannot find sources ($ac_unique_file) in $srcdir" -fi -ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" -ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg" - pwd)` -# When building in place, set srcdir=. -if test "$ac_abs_confdir" = "$ac_pwd"; then - srcdir=. -fi -# Remove unnecessary trailing slashes from srcdir. -# Double slashes in file names in object file debugging info -# mess up M-x gdb in Emacs. -case $srcdir in -*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; -esac -for ac_var in $ac_precious_vars; do - eval ac_env_${ac_var}_set=\${${ac_var}+set} - eval ac_env_${ac_var}_value=\$${ac_var} - eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} - eval ac_cv_env_${ac_var}_value=\$${ac_var} -done - -# -# Report the --help message. -# -if test "$ac_init_help" = "long"; then - # Omit some internal or obsolete options to make the list less imposing. - # This message is too long to be a string in the A/UX 3.1 sh. - cat <<_ACEOF -\`configure' configures cantera 1.8.0 to adapt to many kinds of systems. - -Usage: $0 [OPTION]... [VAR=VALUE]... - -To assign environment variables (e.g., CC, CFLAGS...), specify them as -VAR=VALUE. See below for descriptions of some of the useful variables. - -Defaults for the options are specified in brackets. - -Configuration: - -h, --help display this help and exit - --help=short display options specific to this package - --help=recursive display the short help of all the included packages - -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking...' messages - --cache-file=FILE cache test results in FILE [disabled] - -C, --config-cache alias for \`--cache-file=config.cache' - -n, --no-create do not create output files - --srcdir=DIR find the sources in DIR [configure dir or \`..'] - -Installation directories: - --prefix=PREFIX install architecture-independent files in PREFIX - [$ac_default_prefix] - --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX - [PREFIX] - -By default, \`make install' will install all the files in -\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify -an installation prefix other than \`$ac_default_prefix' using \`--prefix', -for instance \`--prefix=\$HOME'. - -For better control, use the options below. - -Fine tuning of the installation directories: - --bindir=DIR user executables [EPREFIX/bin] - --sbindir=DIR system admin executables [EPREFIX/sbin] - --libexecdir=DIR program executables [EPREFIX/libexec] - --sysconfdir=DIR read-only single-machine data [PREFIX/etc] - --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] - --localstatedir=DIR modifiable single-machine data [PREFIX/var] - --libdir=DIR object code libraries [EPREFIX/lib] - --includedir=DIR C header files [PREFIX/include] - --oldincludedir=DIR C header files for non-gcc [/usr/include] - --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] - --datadir=DIR read-only architecture-independent data [DATAROOTDIR] - --infodir=DIR info documentation [DATAROOTDIR/info] - --localedir=DIR locale-dependent data [DATAROOTDIR/locale] - --mandir=DIR man documentation [DATAROOTDIR/man] - --docdir=DIR documentation root [DATAROOTDIR/doc/cantera] - --htmldir=DIR html documentation [DOCDIR] - --dvidir=DIR dvi documentation [DOCDIR] - --pdfdir=DIR pdf documentation [DOCDIR] - --psdir=DIR ps documentation [DOCDIR] -_ACEOF - - cat <<\_ACEOF - -Program names: - --program-prefix=PREFIX prepend PREFIX to installed program names - --program-suffix=SUFFIX append SUFFIX to installed program names - --program-transform-name=PROGRAM run sed PROGRAM on installed program names - -System types: - --build=BUILD configure for building on BUILD [guessed] - --host=HOST cross-compile to build programs to run on HOST [BUILD] -_ACEOF -fi - -if test -n "$ac_init_help"; then - case $ac_init_help in - short | recursive ) echo "Configuration of cantera 1.8.0:";; - esac - cat <<\_ACEOF - -Optional Features: - --disable-option-checking ignore unrecognized --enable/--with options - --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) - --enable-FEATURE[=ARG] include FEATURE [ARG=yes] - --disable-dependency-tracking speeds up one-time build - --enable-dependency-tracking do not reject slow dependency extractors - --enable-shared[=PKGS] build shared libraries [default=yes] - --enable-static[=PKGS] build static libraries [default=yes] - --enable-fast-install[=PKGS] - optimize for fast installation [default=yes] - --disable-libtool-lock avoid locking (might break parallel builds) - -Optional Packages: - --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] - --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) - --with-pic try to use only PIC/non-PIC objects [default=use - both] - --with-gnu-ld assume the C compiler uses GNU ld [default=no] - -Some influential environment variables: - CC C compiler command - CFLAGS C compiler flags - LDFLAGS linker flags, e.g. -L if you have libraries in a - nonstandard directory - LIBS libraries to pass to the linker, e.g. -l - CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if - you have headers in a nonstandard directory - CXX C++ compiler command - CXXFLAGS C++ compiler flags - FC Fortran compiler command - FCFLAGS Fortran compiler flags - F77 Fortran 77 compiler command - FFLAGS Fortran 77 compiler flags - CPP C preprocessor - CXXCPP C++ preprocessor - -Use these variables to override the choices made by `configure' or to help -it to find libraries and programs with nonstandard names/locations. - -Report bugs to . -_ACEOF -ac_status=$? -fi - -if test "$ac_init_help" = "recursive"; then - # If there are subdirs, report their specific --help. - for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue - test -d "$ac_dir" || - { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || - continue - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - cd "$ac_dir" || { ac_status=$?; continue; } - # Check for guested configure. - if test -f "$ac_srcdir/configure.gnu"; then - echo && - $SHELL "$ac_srcdir/configure.gnu" --help=recursive - elif test -f "$ac_srcdir/configure"; then - echo && - $SHELL "$ac_srcdir/configure" --help=recursive - else - $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 - fi || ac_status=$? - cd "$ac_pwd" || { ac_status=$?; break; } - done -fi - -test -n "$ac_init_help" && exit $ac_status -if $ac_init_version; then - cat <<\_ACEOF -cantera configure 1.8.0 -generated by GNU Autoconf 2.65 - -Copyright (C) 2009 Free Software Foundation, Inc. -This configure script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it. -_ACEOF - exit -fi - -## ------------------------ ## -## Autoconf initialization. ## -## ------------------------ ## - -# ac_fn_c_try_compile LINENO -# -------------------------- -# Try to compile conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - as_fn_set_status $ac_retval - -} # ac_fn_c_try_compile - -# ac_fn_cxx_try_compile LINENO -# ---------------------------- -# Try to compile conftest.$ac_ext, and return whether this succeeded. -ac_fn_cxx_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_cxx_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - as_fn_set_status $ac_retval - -} # ac_fn_cxx_try_compile - -# ac_fn_fc_try_compile LINENO -# --------------------------- -# Try to compile conftest.$ac_ext, and return whether this succeeded. -ac_fn_fc_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_fc_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - as_fn_set_status $ac_retval - -} # ac_fn_fc_try_compile - -# ac_fn_f77_try_compile LINENO -# ---------------------------- -# Try to compile conftest.$ac_ext, and return whether this succeeded. -ac_fn_f77_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_f77_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - as_fn_set_status $ac_retval - -} # ac_fn_f77_try_compile - -# ac_fn_c_try_link LINENO -# ----------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_link () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information - # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would - # interfere with the next link command; also delete a directory that is - # left behind by Apple's compiler. We do this before executing the actions. - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - as_fn_set_status $ac_retval - -} # ac_fn_c_try_link - -# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES -# ------------------------------------------------------- -# Tests whether HEADER exists and can be compiled using the include files in -# INCLUDES, setting the cache variable VAR accordingly. -ac_fn_c_check_header_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -#include <$2> -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - eval "$3=yes" -else - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - -} # ac_fn_c_check_header_compile - -# ac_fn_c_try_cpp LINENO -# ---------------------- -# Try to preprocess conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_cpp () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - as_fn_set_status $ac_retval - -} # ac_fn_c_try_cpp - -# ac_fn_c_try_run LINENO -# ---------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes -# that executables *can* be run. -ac_fn_c_try_run () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then : - ac_retval=0 -else - $as_echo "$as_me: program exited with status $ac_status" >&5 - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=$ac_status -fi - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - as_fn_set_status $ac_retval - -} # ac_fn_c_try_run - -# ac_fn_c_check_func LINENO FUNC VAR -# ---------------------------------- -# Tests whether FUNC exists, setting the cache variable VAR accordingly -ac_fn_c_check_func () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -/* Define $2 to an innocuous variant, in case declares $2. - For example, HP-UX 11i declares gettimeofday. */ -#define $2 innocuous_$2 - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $2 (); below. - Prefer to if __STDC__ is defined, since - exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include -#else -# include -#endif - -#undef $2 - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char $2 (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_$2 || defined __stub___$2 -choke me -#endif - -int -main () -{ -return $2 (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - eval "$3=yes" -else - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - -} # ac_fn_c_check_func - -# ac_fn_cxx_try_cpp LINENO -# ------------------------ -# Try to preprocess conftest.$ac_ext, and return whether this succeeded. -ac_fn_cxx_try_cpp () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } >/dev/null && { - test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || - test ! -s conftest.err - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - as_fn_set_status $ac_retval - -} # ac_fn_cxx_try_cpp - -# ac_fn_cxx_try_link LINENO -# ------------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. -ac_fn_cxx_try_link () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_cxx_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information - # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would - # interfere with the next link command; also delete a directory that is - # left behind by Apple's compiler. We do this before executing the actions. - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - as_fn_set_status $ac_retval - -} # ac_fn_cxx_try_link - -# ac_fn_f77_try_link LINENO -# ------------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. -ac_fn_f77_try_link () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_f77_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information - # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would - # interfere with the next link command; also delete a directory that is - # left behind by Apple's compiler. We do this before executing the actions. - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - as_fn_set_status $ac_retval - -} # ac_fn_f77_try_link - -# ac_fn_fc_try_link LINENO -# ------------------------ -# Try to link conftest.$ac_ext, and return whether this succeeded. -ac_fn_fc_try_link () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_fc_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information - # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would - # interfere with the next link command; also delete a directory that is - # left behind by Apple's compiler. We do this before executing the actions. - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - as_fn_set_status $ac_retval - -} # ac_fn_fc_try_link -cat >config.log <<_ACEOF -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by cantera $as_me 1.8.0, which was -generated by GNU Autoconf 2.65. Invocation command line was - - $ $0 $@ - -_ACEOF -exec 5>>config.log -{ -cat <<_ASUNAME -## --------- ## -## Platform. ## -## --------- ## - -hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` - -/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` -/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` -/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` - -_ASUNAME - -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - $as_echo "PATH: $as_dir" - done -IFS=$as_save_IFS - -} >&5 - -cat >&5 <<_ACEOF - - -## ----------- ## -## Core tests. ## -## ----------- ## - -_ACEOF - - -# Keep a trace of the command line. -# Strip out --no-create and --no-recursion so they do not pile up. -# Strip out --silent because we don't want to record it for future runs. -# Also quote any args containing shell meta-characters. -# Make two passes to allow for proper duplicate-argument suppression. -ac_configure_args= -ac_configure_args0= -ac_configure_args1= -ac_must_keep_next=false -for ac_pass in 1 2 -do - for ac_arg - do - case $ac_arg in - -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - continue ;; - *\'*) - ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - case $ac_pass in - 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; - 2) - as_fn_append ac_configure_args1 " '$ac_arg'" - if test $ac_must_keep_next = true; then - ac_must_keep_next=false # Got value, back to normal. - else - case $ac_arg in - *=* | --config-cache | -C | -disable-* | --disable-* \ - | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ - | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ - | -with-* | --with-* | -without-* | --without-* | --x) - case "$ac_configure_args0 " in - "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; - esac - ;; - -* ) ac_must_keep_next=true ;; - esac - fi - as_fn_append ac_configure_args " '$ac_arg'" - ;; - esac - done -done -{ ac_configure_args0=; unset ac_configure_args0;} -{ ac_configure_args1=; unset ac_configure_args1;} - -# When interrupted or exit'd, cleanup temporary files, and complete -# config.log. We remove comments because anyway the quotes in there -# would cause problems or look ugly. -# WARNING: Use '\'' to represent an apostrophe within the trap. -# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. -trap 'exit_status=$? - # Save into config.log some information that might help in debugging. - { - echo - - cat <<\_ASBOX -## ---------------- ## -## Cache variables. ## -## ---------------- ## -_ASBOX - echo - # The following way of writing the cache mishandles newlines in values, -( - for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) { eval $ac_var=; unset $ac_var;} ;; - esac ;; - esac - done - (set) 2>&1 | - case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - sed -n \ - "s/'\''/'\''\\\\'\'''\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" - ;; #( - *) - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) - echo - - cat <<\_ASBOX -## ----------------- ## -## Output variables. ## -## ----------------- ## -_ASBOX - echo - for ac_var in $ac_subst_vars - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - $as_echo "$ac_var='\''$ac_val'\''" - done | sort - echo - - if test -n "$ac_subst_files"; then - cat <<\_ASBOX -## ------------------- ## -## File substitutions. ## -## ------------------- ## -_ASBOX - echo - for ac_var in $ac_subst_files - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - $as_echo "$ac_var='\''$ac_val'\''" - done | sort - echo - fi - - if test -s confdefs.h; then - cat <<\_ASBOX -## ----------- ## -## confdefs.h. ## -## ----------- ## -_ASBOX - echo - cat confdefs.h - echo - fi - test "$ac_signal" != 0 && - $as_echo "$as_me: caught signal $ac_signal" - $as_echo "$as_me: exit $exit_status" - } >&5 - rm -f core *.core core.conftest.* && - rm -f -r conftest* confdefs* conf$$* $ac_clean_files && - exit $exit_status -' 0 -for ac_signal in 1 2 13 15; do - trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal -done -ac_signal=0 - -# confdefs.h avoids OS command line length limits that DEFS can exceed. -rm -f -r conftest* confdefs.h - -$as_echo "/* confdefs.h */" > confdefs.h - -# Predefined preprocessor variables. - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_NAME "$PACKAGE_NAME" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_TARNAME "$PACKAGE_TARNAME" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_VERSION "$PACKAGE_VERSION" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_STRING "$PACKAGE_STRING" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_URL "$PACKAGE_URL" -_ACEOF - - -# Let the site file select an alternate cache file if it wants to. -# Prefer an explicitly selected file to automatically selected ones. -ac_site_file1=NONE -ac_site_file2=NONE -if test -n "$CONFIG_SITE"; then - ac_site_file1=$CONFIG_SITE -elif test "x$prefix" != xNONE; then - ac_site_file1=$prefix/share/config.site - ac_site_file2=$prefix/etc/config.site -else - ac_site_file1=$ac_default_prefix/share/config.site - ac_site_file2=$ac_default_prefix/etc/config.site -fi -for ac_site_file in "$ac_site_file1" "$ac_site_file2" -do - test "x$ac_site_file" = xNONE && continue - if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 -$as_echo "$as_me: loading site script $ac_site_file" >&6;} - sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" - fi -done - -if test -r "$cache_file"; then - # Some versions of bash will fail to source /dev/null (special files - # actually), so we avoid doing that. DJGPP emulates it as a regular file. - if test /dev/null != "$cache_file" && test -f "$cache_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 -$as_echo "$as_me: loading cache $cache_file" >&6;} - case $cache_file in - [\\/]* | ?:[\\/]* ) . "$cache_file";; - *) . "./$cache_file";; - esac - fi -else - { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 -$as_echo "$as_me: creating cache $cache_file" >&6;} - >$cache_file -fi - -# Check that the precious variables saved in the cache have kept the same -# value. -ac_cache_corrupted=false -for ac_var in $ac_precious_vars; do - eval ac_old_set=\$ac_cv_env_${ac_var}_set - eval ac_new_set=\$ac_env_${ac_var}_set - eval ac_old_val=\$ac_cv_env_${ac_var}_value - eval ac_new_val=\$ac_env_${ac_var}_value - case $ac_old_set,$ac_new_set in - set,) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,set) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 -$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,);; - *) - if test "x$ac_old_val" != "x$ac_new_val"; then - # differences in whitespace do not lead to failure. - ac_old_val_w=`echo x $ac_old_val` - ac_new_val_w=`echo x $ac_new_val` - if test "$ac_old_val_w" != "$ac_new_val_w"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 -$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - ac_cache_corrupted=: - else - { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 -$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} - eval $ac_var=\$ac_old_val - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 -$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 -$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} - fi;; - esac - # Pass precious variables to config.status. - if test "$ac_new_set" = set; then - case $ac_new_val in - *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; - *) ac_arg=$ac_var=$ac_new_val ;; - esac - case " $ac_configure_args " in - *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) as_fn_append ac_configure_args " '$ac_arg'" ;; - esac - fi -done -if $ac_cache_corrupted; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 -$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} - as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 -fi -## -------------------- ## -## Main body of script. ## -## -------------------- ## - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -ac_config_headers="$ac_config_headers config.h" - -ac_aux_dir= -for ac_dir in build-aux "$srcdir"/build-aux; do - for ac_t in install-sh install.sh shtool; do - if test -f "$ac_dir/$ac_t"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/$ac_t -c" - break 2 - fi - done -done -if test -z "$ac_aux_dir"; then - as_fn_error "cannot find install-sh, install.sh, or shtool in build-aux \"$srcdir\"/build-aux" "$LINENO" 5 -fi - -# These three variables are undocumented and unsupported, -# and are intended to be withdrawn in a future Autoconf release. -# They can cause serious problems if a builder's source tree is in a directory -# whose full name contains unusual characters. -ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. -ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. -ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. - - -am__api_version='1.11' - -# Find a good install program. We prefer a C program (faster), -# so one script is as good as another. But avoid the broken or -# incompatible versions: -# SysV /etc/install, /usr/sbin/install -# SunOS /usr/etc/install -# IRIX /sbin/install -# AIX /bin/install -# AmigaOS /C/install, which installs bootblocks on floppy discs -# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag -# AFS /usr/afsws/bin/install, which mishandles nonexistent args -# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" -# OS/2's system install, which has a completely different semantic -# ./install, which can be erroneously created by make from ./install.sh. -# Reject install programs that cannot install multiple files. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 -$as_echo_n "checking for a BSD-compatible install... " >&6; } -if test -z "$INSTALL"; then -if test "${ac_cv_path_install+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - # Account for people who put trailing slashes in PATH elements. -case $as_dir/ in #(( - ./ | .// | /[cC]/* | \ - /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ - ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ - /usr/ucb/* ) ;; - *) - # OSF1 and SCO ODT 3.0 have their own names for install. - # Don't use installbsd from OSF since it installs stuff as root - # by default. - for ac_prog in ginstall scoinst install; do - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then - if test $ac_prog = install && - grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # AIX install. It has an incompatible calling convention. - : - elif test $ac_prog = install && - grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # program-specific install script used by HP pwplus--don't use. - : - else - rm -rf conftest.one conftest.two conftest.dir - echo one > conftest.one - echo two > conftest.two - mkdir conftest.dir - if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && - test -s conftest.one && test -s conftest.two && - test -s conftest.dir/conftest.one && - test -s conftest.dir/conftest.two - then - ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" - break 3 - fi - fi - fi - done - done - ;; -esac - - done -IFS=$as_save_IFS - -rm -rf conftest.one conftest.two conftest.dir - -fi - if test "${ac_cv_path_install+set}" = set; then - INSTALL=$ac_cv_path_install - else - # As a last resort, use the slow shell script. Don't cache a - # value for INSTALL within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - INSTALL=$ac_install_sh - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 -$as_echo "$INSTALL" >&6; } - -# Use test -z because SunOS4 sh mishandles braces in ${var-val}. -# It thinks the first close brace ends the variable substitution. -test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' - -test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' - -test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 -$as_echo_n "checking whether build environment is sane... " >&6; } -# Just in case -sleep 1 -echo timestamp > conftest.file -# Reject unsafe characters in $srcdir or the absolute working directory -# name. Accept space and tab only in the latter. -am_lf=' -' -case `pwd` in - *[\\\"\#\$\&\'\`$am_lf]*) - as_fn_error "unsafe absolute working directory name" "$LINENO" 5;; -esac -case $srcdir in - *[\\\"\#\$\&\'\`$am_lf\ \ ]*) - as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; -esac - -# Do `set' in a subshell so we don't clobber the current shell's -# arguments. Must try -L first in case configure is actually a -# symlink; some systems play weird games with the mod time of symlinks -# (eg FreeBSD returns the mod time of the symlink's containing -# directory). -if ( - set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` - if test "$*" = "X"; then - # -L didn't work. - set X `ls -t "$srcdir/configure" conftest.file` - fi - rm -f conftest.file - if test "$*" != "X $srcdir/configure conftest.file" \ - && test "$*" != "X conftest.file $srcdir/configure"; then - - # If neither matched, then we have a broken ls. This can happen - # if, for instance, CONFIG_SHELL is bash and it inherits a - # broken ls alias from the environment. This has actually - # happened. Such a system could not be considered "sane". - as_fn_error "ls -t appears to fail. Make sure there is not a broken -alias in your environment" "$LINENO" 5 - fi - - test "$2" = conftest.file - ) -then - # Ok. - : -else - as_fn_error "newly created file is older than distributed files! -Check your system clock" "$LINENO" 5 -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -test "$program_prefix" != NONE && - program_transform_name="s&^&$program_prefix&;$program_transform_name" -# Use a double $ so make ignores it. -test "$program_suffix" != NONE && - program_transform_name="s&\$&$program_suffix&;$program_transform_name" -# Double any \ or $. -# By default was `s,x,x', remove it if useless. -ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' -program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` - -# expand $ac_aux_dir to an absolute path -am_aux_dir=`cd $ac_aux_dir && pwd` - -if test x"${MISSING+set}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; - *) - MISSING="\${SHELL} $am_aux_dir/missing" ;; - esac -fi -# Use eval to expand $SHELL -if eval "$MISSING --run true"; then - am_missing_run="$MISSING --run " -else - am_missing_run= - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 -$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} -fi - -if test x"${install_sh}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; - *) - install_sh="\${SHELL} $am_aux_dir/install-sh" - esac -fi - -# Installed binaries are usually stripped using `strip' when the user -# run `make install-strip'. However `strip' might not be the right -# tool to use in cross-compilation environments, therefore Automake -# will honor the `STRIP' environment variable to overrule this program. -if test "$cross_compiling" != no; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -set dummy ${ac_tool_prefix}strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_STRIP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$STRIP"; then - ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_STRIP="${ac_tool_prefix}strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -STRIP=$ac_cv_prog_STRIP -if test -n "$STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -$as_echo "$STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_STRIP"; then - ac_ct_STRIP=$STRIP - # Extract the first word of "strip", so it can be a program name with args. -set dummy strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_STRIP"; then - ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_STRIP="strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -if test -n "$ac_ct_STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 -$as_echo "$ac_ct_STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_STRIP" = x; then - STRIP=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - STRIP=$ac_ct_STRIP - fi -else - STRIP="$ac_cv_prog_STRIP" -fi - -fi -INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 -$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } -if test -z "$MKDIR_P"; then - if test "${ac_cv_path_mkdir+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in mkdir gmkdir; do - for ac_exec_ext in '' $ac_executable_extensions; do - { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue - case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( - 'mkdir (GNU coreutils) '* | \ - 'mkdir (coreutils) '* | \ - 'mkdir (fileutils) '4.1*) - ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext - break 3;; - esac - done - done - done -IFS=$as_save_IFS - -fi - - test -d ./--version && rmdir ./--version - if test "${ac_cv_path_mkdir+set}" = set; then - MKDIR_P="$ac_cv_path_mkdir -p" - else - # As a last resort, use the slow shell script. Don't cache a - # value for MKDIR_P within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - MKDIR_P="$ac_install_sh -d" - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 -$as_echo "$MKDIR_P" >&6; } - -mkdir_p="$MKDIR_P" -case $mkdir_p in - [\\/$]* | ?:[\\/]*) ;; - */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; -esac - -for ac_prog in gawk mawk nawk awk -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_AWK+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$AWK"; then - ac_cv_prog_AWK="$AWK" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_AWK="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -AWK=$ac_cv_prog_AWK -if test -n "$AWK"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 -$as_echo "$AWK" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$AWK" && break -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 -$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } -set x ${MAKE-make} -ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` -if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then : - $as_echo_n "(cached) " >&6 -else - cat >conftest.make <<\_ACEOF -SHELL = /bin/sh -all: - @echo '@@@%%%=$(MAKE)=@@@%%%' -_ACEOF -# GNU make sometimes prints "make[1]: Entering...", which would confuse us. -case `${MAKE-make} -f conftest.make 2>/dev/null` in - *@@@%%%=?*=@@@%%%*) - eval ac_cv_prog_make_${ac_make}_set=yes;; - *) - eval ac_cv_prog_make_${ac_make}_set=no;; -esac -rm -f conftest.make -fi -if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - SET_MAKE= -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - SET_MAKE="MAKE=${MAKE-make}" -fi - -rm -rf .tst 2>/dev/null -mkdir .tst 2>/dev/null -if test -d .tst; then - am__leading_dot=. -else - am__leading_dot=_ -fi -rmdir .tst 2>/dev/null - -if test "`cd $srcdir && pwd`" != "`pwd`"; then - # Use -I$(srcdir) only when $(srcdir) != ., so that make's output - # is not polluted with repeated "-I." - am__isrc=' -I$(srcdir)' - # test to see if srcdir already configured - if test -f $srcdir/config.status; then - as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 - fi -fi - -# test whether we have cygpath -if test -z "$CYGPATH_W"; then - if (cygpath --version) >/dev/null 2>/dev/null; then - CYGPATH_W='cygpath -w' - else - CYGPATH_W=echo - fi -fi - - -# Define the identity of the package. - PACKAGE='cantera' - VERSION='1.8.0' - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE "$PACKAGE" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define VERSION "$VERSION" -_ACEOF - -# Some tools Automake needs. - -ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} - - -AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} - - -AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} - - -AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} - - -MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} - -# We need awk for the "check" target. The system "awk" is bad on -# some platforms. -# Always define AMTAR for backward compatibility. - -AMTAR=${AMTAR-"${am_missing_run}tar"} - -am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' - - - - - - -# snarf and provide versioning numbers -AX_SPLIT_VERSION -GENERIC_MAJOR_VERSION=$AX_MAJOR_VERSION -GENERIC_MINOR_VERSION=$AX_MINOR_VERSION -GENERIC_MICRO_VERSION=$AX_POINT_VERSION -GENERIC_VERSION=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION.$GENERIC_MICRO_VERSION -GENERIC_RELEASE=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION - - - - - - - -PACKAGE_DESCRIPTION="An object-oriented software toolkit for chemical kinetics, thermodynamics, and transport processes." - -PACKAGE_URL="http://code.google.com/p/cantera/" - - -# ------------------------------ -# Checks for required programs -# ------------------------------ - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_CC="gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - fi -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl.exe - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl.exe -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_CC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CC" && break -done - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -fi - -fi - - -test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "no acceptable C compiler found in \$PATH -See \`config.log' for more details." "$LINENO" 5; } - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" -# Try to create an executable without -o first, disregard a.out. -# It will help us diagnose broken compilers, and finding out an intuition -# of exeext. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 -$as_echo_n "checking whether the C compiler works... " >&6; } -ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` - -# The possible output files: -ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" - -ac_rmfiles= -for ac_file in $ac_files -do - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; - * ) ac_rmfiles="$ac_rmfiles $ac_file";; - esac -done -rm -f $ac_rmfiles - -if { { ac_try="$ac_link_default" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link_default") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. -# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' -# in a Makefile. We should not override ac_cv_exeext if it was cached, -# so that the user can short-circuit this test for compilers unknown to -# Autoconf. -for ac_file in $ac_files '' -do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) - ;; - [ab].out ) - # We found the default executable, but exeext='' is most - # certainly right. - break;; - *.* ) - if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; - then :; else - ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - fi - # We set ac_cv_exeext here because the later test for it is not - # safe: cross compilers may not add the suffix if given an `-o' - # argument, so we may need to know it at that point already. - # Even if this section looks crufty: it has the advantage of - # actually working. - break;; - * ) - break;; - esac -done -test "$ac_cv_exeext" = no && ac_cv_exeext= - -else - ac_file='' -fi -if test -z "$ac_file"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -$as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "C compiler cannot create executables -See \`config.log' for more details." "$LINENO" 5; }; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 -$as_echo_n "checking for C compiler default output file name... " >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 -$as_echo "$ac_file" >&6; } -ac_exeext=$ac_cv_exeext - -rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out -ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 -$as_echo_n "checking for suffix of executables... " >&6; } -if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - # If both `conftest.exe' and `conftest' are `present' (well, observable) -# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -# work properly (i.e., refer to `conftest.exe'), while it won't with -# `rm'. -for ac_file in conftest.exe conftest conftest.*; do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; - *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - break;; - * ) break;; - esac -done -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." "$LINENO" 5; } -fi -rm -f conftest conftest$ac_cv_exeext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 -$as_echo "$ac_cv_exeext" >&6; } - -rm -f conftest.$ac_ext -EXEEXT=$ac_cv_exeext -ac_exeext=$EXEEXT -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -FILE *f = fopen ("conftest.out", "w"); - return ferror (f) || fclose (f) != 0; - - ; - return 0; -} -_ACEOF -ac_clean_files="$ac_clean_files conftest.out" -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 -$as_echo_n "checking whether we are cross compiling... " >&6; } -if test "$cross_compiling" != yes; then - { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - if { ac_try='./conftest$ac_cv_exeext' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." "$LINENO" 5; } - fi - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 -$as_echo "$cross_compiling" >&6; } - -rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out -ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 -$as_echo_n "checking for suffix of object files... " >&6; } -if test "${ac_cv_objext+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.o conftest.obj -if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - for ac_file in conftest.o conftest.obj conftest.*; do - test -f "$ac_file" || continue; - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; - *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` - break;; - esac -done -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "cannot compute suffix of object files: cannot compile -See \`config.log' for more details." "$LINENO" 5; } -fi -rm -f conftest.$ac_cv_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 -$as_echo "$ac_cv_objext" >&6; } -OBJEXT=$ac_cv_objext -ac_objext=$OBJEXT -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 -$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if test "${ac_cv_c_compiler_gnu+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 -$as_echo "$ac_cv_c_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GCC=yes -else - GCC= -fi -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 -$as_echo_n "checking whether $CC accepts -g... " >&6; } -if test "${ac_cv_prog_cc_g+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_save_c_werror_flag=$ac_c_werror_flag - ac_c_werror_flag=yes - ac_cv_prog_cc_g=no - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -else - CFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - -else - ac_c_werror_flag=$ac_save_c_werror_flag - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_c_werror_flag=$ac_save_c_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 -$as_echo "$ac_cv_prog_cc_g" >&6; } -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 -$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if test "${ac_cv_prog_cc_c89+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_prog_cc_c89=no -ac_save_CC=$CC -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#include -#include -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters - inside strings and character constants. */ -#define FOO(x) 'x' -int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ - -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_c89=$ac_arg -fi -rm -f core conftest.err conftest.$ac_objext - test "x$ac_cv_prog_cc_c89" != "xno" && break -done -rm -f conftest.$ac_ext -CC=$ac_save_CC - -fi -# AC_CACHE_VAL -case "x$ac_cv_prog_cc_c89" in - x) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 -$as_echo "none needed" >&6; } ;; - xno) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 -$as_echo "unsupported" >&6; } ;; - *) - CC="$CC $ac_cv_prog_cc_c89" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 -$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; -esac -if test "x$ac_cv_prog_cc_c89" != xno; then : - -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -DEPDIR="${am__leading_dot}deps" - -ac_config_commands="$ac_config_commands depfiles" - - -am_make=${MAKE-make} -cat > confinc << 'END' -am__doit: - @echo this is the am__doit target -.PHONY: am__doit -END -# If we don't find an include directive, just comment out the code. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 -$as_echo_n "checking for style of include used by $am_make... " >&6; } -am__include="#" -am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# Ignore all kinds of additional output from `make'. -case `$am_make -s -f confmf 2> /dev/null` in #( -*the\ am__doit\ target*) - am__include=include - am__quote= - _am_result=GNU - ;; -esac -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - case `$am_make -s -f confmf 2> /dev/null` in #( - *the\ am__doit\ target*) - am__include=.include - am__quote="\"" - _am_result=BSD - ;; - esac -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 -$as_echo "$_am_result" >&6; } -rm -f confinc confmf - -# Check whether --enable-dependency-tracking was given. -if test "${enable_dependency_tracking+set}" = set; then : - enableval=$enable_dependency_tracking; -fi - -if test "x$enable_dependency_tracking" != xno; then - am_depcomp="$ac_aux_dir/depcomp" - AMDEPBACKSLASH='\' -fi - if test "x$enable_dependency_tracking" != xno; then - AMDEP_TRUE= - AMDEP_FALSE='#' -else - AMDEP_TRUE='#' - AMDEP_FALSE= -fi - - - -depcc="$CC" am_compiler_list= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -$as_echo_n "checking dependency style of $depcc... " >&6; } -if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_CC_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` - fi - am__universal=false - case " $depcc " in #( - *\ -arch\ *\ -arch\ *) am__universal=true ;; - esac - - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. Also, some Intel - # versions had trouble with output in subdirs - am__obj=sub/conftest.${OBJEXT-o} - am__minus_obj="-o $am__obj" - case $depmode in - gcc) - # This depmode causes a compiler race in universal mode. - test "$am__universal" = false || continue - ;; - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - msvisualcpp | msvcmsys) - # This compiler won't grok `-c -o', but also, the minuso test has - # not run yet. These depmodes are late enough in the game, and - # so weak that their functioning should not be impacted. - am__obj=conftest.${OBJEXT-o} - am__minus_obj= - ;; - none) break ;; - esac - if depmode=$depmode \ - source=sub/conftest.c object=$am__obj \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep $am__obj sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_CC_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_CC_dependencies_compiler_type=none -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 -$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } -CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type - - if - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then - am__fastdepCC_TRUE= - am__fastdepCC_FALSE='#' -else - am__fastdepCC_TRUE='#' - am__fastdepCC_FALSE= -fi - - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -if test -z "$CXX"; then - if test -n "$CCC"; then - CXX=$CCC - else - if test -n "$ac_tool_prefix"; then - for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CXX+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CXX"; then - ac_cv_prog_CXX="$CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CXX=$ac_cv_prog_CXX -if test -n "$CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 -$as_echo "$CXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CXX" && break - done -fi -if test -z "$CXX"; then - ac_ct_CXX=$CXX - for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CXX"; then - ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_CXX="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CXX=$ac_cv_prog_ac_ct_CXX -if test -n "$ac_ct_CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 -$as_echo "$ac_ct_CXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CXX" && break -done - - if test "x$ac_ct_CXX" = x; then - CXX="g++" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CXX=$ac_ct_CXX - fi -fi - - fi -fi -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 -$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } -if test "${ac_cv_cxx_compiler_gnu+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_cxx_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 -$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GXX=yes -else - GXX= -fi -ac_test_CXXFLAGS=${CXXFLAGS+set} -ac_save_CXXFLAGS=$CXXFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 -$as_echo_n "checking whether $CXX accepts -g... " >&6; } -if test "${ac_cv_prog_cxx_g+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_save_cxx_werror_flag=$ac_cxx_werror_flag - ac_cxx_werror_flag=yes - ac_cv_prog_cxx_g=no - CXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_prog_cxx_g=yes -else - CXXFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - -else - ac_cxx_werror_flag=$ac_save_cxx_werror_flag - CXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_prog_cxx_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_cxx_werror_flag=$ac_save_cxx_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 -$as_echo "$ac_cv_prog_cxx_g" >&6; } -if test "$ac_test_CXXFLAGS" = set; then - CXXFLAGS=$ac_save_CXXFLAGS -elif test $ac_cv_prog_cxx_g = yes; then - if test "$GXX" = yes; then - CXXFLAGS="-g -O2" - else - CXXFLAGS="-g" - fi -else - if test "$GXX" = yes; then - CXXFLAGS="-O2" - else - CXXFLAGS= - fi -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -depcc="$CXX" am_compiler_list= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -$as_echo_n "checking dependency style of $depcc... " >&6; } -if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_CXX_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` - fi - am__universal=false - case " $depcc " in #( - *\ -arch\ *\ -arch\ *) am__universal=true ;; - esac - - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. Also, some Intel - # versions had trouble with output in subdirs - am__obj=sub/conftest.${OBJEXT-o} - am__minus_obj="-o $am__obj" - case $depmode in - gcc) - # This depmode causes a compiler race in universal mode. - test "$am__universal" = false || continue - ;; - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - msvisualcpp | msvcmsys) - # This compiler won't grok `-c -o', but also, the minuso test has - # not run yet. These depmodes are late enough in the game, and - # so weak that their functioning should not be impacted. - am__obj=conftest.${OBJEXT-o} - am__minus_obj= - ;; - none) break ;; - esac - if depmode=$depmode \ - source=sub/conftest.c object=$am__obj \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep $am__obj sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_CXX_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_CXX_dependencies_compiler_type=none -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 -$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } -CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type - - if - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then - am__fastdepCXX_TRUE= - am__fastdepCXX_FALSE='#' -else - am__fastdepCXX_TRUE='#' - am__fastdepCXX_FALSE= -fi - - -ac_ext=${ac_fc_srcext-f} -ac_compile='$FC -c $FCFLAGS $ac_fcflags_srcext conftest.$ac_ext >&5' -ac_link='$FC -o conftest$ac_exeext $FCFLAGS $LDFLAGS $ac_fcflags_srcext conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_fc_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn xlf90 f90 pgf90 pghpf epcf90 g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_FC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$FC"; then - ac_cv_prog_FC="$FC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_FC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -FC=$ac_cv_prog_FC -if test -n "$FC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FC" >&5 -$as_echo "$FC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$FC" && break - done -fi -if test -z "$FC"; then - ac_ct_FC=$FC - for ac_prog in gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn xlf90 f90 pgf90 pghpf epcf90 g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_FC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_FC"; then - ac_cv_prog_ac_ct_FC="$ac_ct_FC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_FC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_FC=$ac_cv_prog_ac_ct_FC -if test -n "$ac_ct_FC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_FC" >&5 -$as_echo "$ac_ct_FC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_FC" && break -done - - if test "x$ac_ct_FC" = x; then - FC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - FC=$ac_ct_FC - fi -fi - - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done -rm -f a.out - -# If we don't use `.F' as extension, the preprocessor is not run on the -# input file. (Note that this only needs to work for GNU compilers.) -ac_save_ext=$ac_ext -ac_ext=F -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran compiler" >&5 -$as_echo_n "checking whether we are using the GNU Fortran compiler... " >&6; } -if test "${ac_cv_fc_compiler_gnu+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat > conftest.$ac_ext <<_ACEOF - program main -#ifndef __GNUC__ - choke me -#endif - - end -_ACEOF -if ac_fn_fc_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_fc_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_fc_compiler_gnu" >&5 -$as_echo "$ac_cv_fc_compiler_gnu" >&6; } -ac_ext=$ac_save_ext -ac_test_FCFLAGS=${FCFLAGS+set} -ac_save_FCFLAGS=$FCFLAGS -FCFLAGS= -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $FC accepts -g" >&5 -$as_echo_n "checking whether $FC accepts -g... " >&6; } -if test "${ac_cv_prog_fc_g+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - FCFLAGS=-g -cat > conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -if ac_fn_fc_try_compile "$LINENO"; then : - ac_cv_prog_fc_g=yes -else - ac_cv_prog_fc_g=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_fc_g" >&5 -$as_echo "$ac_cv_prog_fc_g" >&6; } -if test "$ac_test_FCFLAGS" = set; then - FCFLAGS=$ac_save_FCFLAGS -elif test $ac_cv_prog_fc_g = yes; then - if test "x$ac_cv_fc_compiler_gnu" = xyes; then - FCFLAGS="-g -O2" - else - FCFLAGS="-g" - fi -else - if test "x$ac_cv_fc_compiler_gnu" = xyes; then - FCFLAGS="-O2" - else - FCFLAGS= - fi -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -ac_ext=f -ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' -ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_f77_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_F77+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$F77"; then - ac_cv_prog_F77="$F77" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_F77="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -F77=$ac_cv_prog_F77 -if test -n "$F77"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $F77" >&5 -$as_echo "$F77" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$F77" && break - done -fi -if test -z "$F77"; then - ac_ct_F77=$F77 - for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_F77+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_F77"; then - ac_cv_prog_ac_ct_F77="$ac_ct_F77" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_F77="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_F77=$ac_cv_prog_ac_ct_F77 -if test -n "$ac_ct_F77"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_F77" >&5 -$as_echo "$ac_ct_F77" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_F77" && break -done - - if test "x$ac_ct_F77" = x; then - F77="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - F77=$ac_ct_F77 - fi -fi - - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran 77 compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done -rm -f a.out - -# If we don't use `.F' as extension, the preprocessor is not run on the -# input file. (Note that this only needs to work for GNU compilers.) -ac_save_ext=$ac_ext -ac_ext=F -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran 77 compiler" >&5 -$as_echo_n "checking whether we are using the GNU Fortran 77 compiler... " >&6; } -if test "${ac_cv_f77_compiler_gnu+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat > conftest.$ac_ext <<_ACEOF - program main -#ifndef __GNUC__ - choke me -#endif - - end -_ACEOF -if ac_fn_f77_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_f77_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_f77_compiler_gnu" >&5 -$as_echo "$ac_cv_f77_compiler_gnu" >&6; } -ac_ext=$ac_save_ext -ac_test_FFLAGS=${FFLAGS+set} -ac_save_FFLAGS=$FFLAGS -FFLAGS= -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $F77 accepts -g" >&5 -$as_echo_n "checking whether $F77 accepts -g... " >&6; } -if test "${ac_cv_prog_f77_g+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - FFLAGS=-g -cat > conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -if ac_fn_f77_try_compile "$LINENO"; then : - ac_cv_prog_f77_g=yes -else - ac_cv_prog_f77_g=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_f77_g" >&5 -$as_echo "$ac_cv_prog_f77_g" >&6; } -if test "$ac_test_FFLAGS" = set; then - FFLAGS=$ac_save_FFLAGS -elif test $ac_cv_prog_f77_g = yes; then - if test "x$ac_cv_f77_compiler_gnu" = xyes; then - FFLAGS="-g -O2" - else - FFLAGS="-g" - fi -else - if test "x$ac_cv_f77_compiler_gnu" = xyes; then - FFLAGS="-O2" - else - FFLAGS= - fi -fi - -if test $ac_compiler_gnu = yes; then - G77=yes -else - G77= -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -case `pwd` in - *\ * | *\ *) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 -$as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; -esac - - - -macro_version='2.2.6b' -macro_revision='1.3017' - - - - - - - - - - - - - -ltmain="$ac_aux_dir/ltmain.sh" - -# Make sure we can run config.sub. -$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || - as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 -$as_echo_n "checking build system type... " >&6; } -if test "${ac_cv_build+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_build_alias=$build_alias -test "x$ac_build_alias" = x && - ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` -test "x$ac_build_alias" = x && - as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5 -ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || - as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 -$as_echo "$ac_cv_build" >&6; } -case $ac_cv_build in -*-*-*) ;; -*) as_fn_error "invalid value of canonical build" "$LINENO" 5;; -esac -build=$ac_cv_build -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_build -shift -build_cpu=$1 -build_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -build_os=$* -IFS=$ac_save_IFS -case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 -$as_echo_n "checking host system type... " >&6; } -if test "${ac_cv_host+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test "x$host_alias" = x; then - ac_cv_host=$ac_cv_build -else - ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || - as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 -$as_echo "$ac_cv_host" >&6; } -case $ac_cv_host in -*-*-*) ;; -*) as_fn_error "invalid value of canonical host" "$LINENO" 5;; -esac -host=$ac_cv_host -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_host -shift -host_cpu=$1 -host_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -host_os=$* -IFS=$ac_save_IFS -case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 -$as_echo_n "checking for a sed that does not truncate output... " >&6; } -if test "${ac_cv_path_SED+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ - for ac_i in 1 2 3 4 5 6 7; do - ac_script="$ac_script$as_nl$ac_script" - done - echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed - { ac_script=; unset ac_script;} - if test -z "$SED"; then - ac_path_SED_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in sed gsed; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue -# Check for GNU ac_path_SED and select it if it is found. - # Check for GNU $ac_path_SED -case `"$ac_path_SED" --version 2>&1` in -*GNU*) - ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo '' >> "conftest.nl" - "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_SED_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_SED="$ac_path_SED" - ac_path_SED_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_SED_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_SED"; then - as_fn_error "no acceptable sed could be found in \$PATH" "$LINENO" 5 - fi -else - ac_cv_path_SED=$SED -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 -$as_echo "$ac_cv_path_SED" >&6; } - SED="$ac_cv_path_SED" - rm -f conftest.sed - -test -z "$SED" && SED=sed -Xsed="$SED -e 1s/^X//" - - - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 -$as_echo_n "checking for grep that handles long lines and -e... " >&6; } -if test "${ac_cv_path_GREP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$GREP"; then - ac_path_GREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in grep ggrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue -# Check for GNU ac_path_GREP and select it if it is found. - # Check for GNU $ac_path_GREP -case `"$ac_path_GREP" --version 2>&1` in -*GNU*) - ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'GREP' >> "conftest.nl" - "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_GREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_GREP="$ac_path_GREP" - ac_path_GREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_GREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_GREP"; then - as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_GREP=$GREP -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 -$as_echo "$ac_cv_path_GREP" >&6; } - GREP="$ac_cv_path_GREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 -$as_echo_n "checking for egrep... " >&6; } -if test "${ac_cv_path_EGREP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 - then ac_cv_path_EGREP="$GREP -E" - else - if test -z "$EGREP"; then - ac_path_EGREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in egrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue -# Check for GNU ac_path_EGREP and select it if it is found. - # Check for GNU $ac_path_EGREP -case `"$ac_path_EGREP" --version 2>&1` in -*GNU*) - ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'EGREP' >> "conftest.nl" - "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_EGREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_EGREP="$ac_path_EGREP" - ac_path_EGREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_EGREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_EGREP"; then - as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_EGREP=$EGREP -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 -$as_echo "$ac_cv_path_EGREP" >&6; } - EGREP="$ac_cv_path_EGREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 -$as_echo_n "checking for fgrep... " >&6; } -if test "${ac_cv_path_FGREP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 - then ac_cv_path_FGREP="$GREP -F" - else - if test -z "$FGREP"; then - ac_path_FGREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in fgrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue -# Check for GNU ac_path_FGREP and select it if it is found. - # Check for GNU $ac_path_FGREP -case `"$ac_path_FGREP" --version 2>&1` in -*GNU*) - ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'FGREP' >> "conftest.nl" - "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_FGREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_FGREP="$ac_path_FGREP" - ac_path_FGREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_FGREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_FGREP"; then - as_fn_error "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_FGREP=$FGREP -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 -$as_echo "$ac_cv_path_FGREP" >&6; } - FGREP="$ac_cv_path_FGREP" - - -test -z "$GREP" && GREP=grep - - - - - - - - - - - - - - - - - - - -# Check whether --with-gnu-ld was given. -if test "${with_gnu_ld+set}" = set; then : - withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes -else - with_gnu_ld=no -fi - -ac_prog=ld -if test "$GCC" = yes; then - # Check if gcc -print-prog-name=ld gives a path. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 -$as_echo_n "checking for ld used by $CC... " >&6; } - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw - ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $ac_prog in - # Accept absolute paths. - [\\/]* | ?:[\\/]*) - re_direlt='/[^/][^/]*/\.\./' - # Canonicalize the pathname of ld - ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` - while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do - ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` - done - test -z "$LD" && LD="$ac_prog" - ;; - "") - # If it fails, then pretend we aren't using GCC. - ac_prog=ld - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac -elif test "$with_gnu_ld" = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 -$as_echo_n "checking for GNU ld... " >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 -$as_echo_n "checking for non-GNU ld... " >&6; } -fi -if test "${lt_cv_path_LD+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some variants of GNU ld only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$lt_cv_path_LD" -v 2>&1 &5 -$as_echo "$LD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi -test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 -$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -if test "${lt_cv_prog_gnu_ld+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - # I'd rather use --version here, but apparently some GNU lds only accept -v. -case `$LD -v 2>&1 &5 -$as_echo "$lt_cv_prog_gnu_ld" >&6; } -with_gnu_ld=$lt_cv_prog_gnu_ld - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 -$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } -if test "${lt_cv_path_NM+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$NM"; then - # Let the user override the test. - lt_cv_path_NM="$NM" -else - lt_nm_to_check="${ac_tool_prefix}nm" - if test -n "$ac_tool_prefix" && test "$build" = "$host"; then - lt_nm_to_check="$lt_nm_to_check nm" - fi - for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - tmp_nm="$ac_dir/$lt_tmp_nm" - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then - # Check to see if the nm accepts a BSD-compat flag. - # Adding the `sed 1q' prevents false positives on HP-UX, which says: - # nm: unknown option "B" ignored - # Tru64's nm complains that /dev/null is an invalid object file - case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in - */dev/null* | *'Invalid file or object type'*) - lt_cv_path_NM="$tmp_nm -B" - break - ;; - *) - case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in - */dev/null*) - lt_cv_path_NM="$tmp_nm -p" - break - ;; - *) - lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but - continue # so that we can try to find one that supports BSD flags - ;; - esac - ;; - esac - fi - done - IFS="$lt_save_ifs" - done - : ${lt_cv_path_NM=no} -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 -$as_echo "$lt_cv_path_NM" >&6; } -if test "$lt_cv_path_NM" != "no"; then - NM="$lt_cv_path_NM" -else - # Didn't find any BSD compatible name lister, look for dumpbin. - if test -n "$ac_tool_prefix"; then - for ac_prog in "dumpbin -symbols" "link -dump -symbols" - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_DUMPBIN+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$DUMPBIN"; then - ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -DUMPBIN=$ac_cv_prog_DUMPBIN -if test -n "$DUMPBIN"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 -$as_echo "$DUMPBIN" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$DUMPBIN" && break - done -fi -if test -z "$DUMPBIN"; then - ac_ct_DUMPBIN=$DUMPBIN - for ac_prog in "dumpbin -symbols" "link -dump -symbols" -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_DUMPBIN+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_DUMPBIN"; then - ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN -if test -n "$ac_ct_DUMPBIN"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 -$as_echo "$ac_ct_DUMPBIN" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_DUMPBIN" && break -done - - if test "x$ac_ct_DUMPBIN" = x; then - DUMPBIN=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - DUMPBIN=$ac_ct_DUMPBIN - fi -fi - - - if test "$DUMPBIN" != ":"; then - NM="$DUMPBIN" - fi -fi -test -z "$NM" && NM=nm - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 -$as_echo_n "checking the name lister ($NM) interface... " >&6; } -if test "${lt_cv_nm_interface+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_nm_interface="BSD nm" - echo "int some_variable = 0;" > conftest.$ac_ext - (eval echo "\"\$as_me:5521: $ac_compile\"" >&5) - (eval "$ac_compile" 2>conftest.err) - cat conftest.err >&5 - (eval echo "\"\$as_me:5524: $NM \\\"conftest.$ac_objext\\\"\"" >&5) - (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) - cat conftest.err >&5 - (eval echo "\"\$as_me:5527: output\"" >&5) - cat conftest.out >&5 - if $GREP 'External.*some_variable' conftest.out > /dev/null; then - lt_cv_nm_interface="MS dumpbin" - fi - rm -f conftest* -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 -$as_echo "$lt_cv_nm_interface" >&6; } - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 -$as_echo_n "checking whether ln -s works... " >&6; } -LN_S=$as_ln_s -if test "$LN_S" = "ln -s"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 -$as_echo "no, using $LN_S" >&6; } -fi - -# find the maximum length of command line arguments -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 -$as_echo_n "checking the maximum length of command line arguments... " >&6; } -if test "${lt_cv_sys_max_cmd_len+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - i=0 - teststring="ABCD" - - case $build_os in - msdosdjgpp*) - # On DJGPP, this test can blow up pretty badly due to problems in libc - # (any single argument exceeding 2000 bytes causes a buffer overrun - # during glob expansion). Even if it were fixed, the result of this - # check would be larger than it should be. - lt_cv_sys_max_cmd_len=12288; # 12K is about right - ;; - - gnu*) - # Under GNU Hurd, this test is not required because there is - # no limit to the length of command line arguments. - # Libtool will interpret -1 as no limit whatsoever - lt_cv_sys_max_cmd_len=-1; - ;; - - cygwin* | mingw* | cegcc*) - # On Win9x/ME, this test blows up -- it succeeds, but takes - # about 5 minutes as the teststring grows exponentially. - # Worse, since 9x/ME are not pre-emptively multitasking, - # you end up with a "frozen" computer, even though with patience - # the test eventually succeeds (with a max line length of 256k). - # Instead, let's just punt: use the minimum linelength reported by - # all of the supported platforms: 8192 (on NT/2K/XP). - lt_cv_sys_max_cmd_len=8192; - ;; - - amigaos*) - # On AmigaOS with pdksh, this test takes hours, literally. - # So we just punt and use a minimum line length of 8192. - lt_cv_sys_max_cmd_len=8192; - ;; - - netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) - # This has been around since 386BSD, at least. Likely further. - if test -x /sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` - elif test -x /usr/sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` - else - lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs - fi - # And add a safety zone - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - ;; - - interix*) - # We know the value 262144 and hardcode it with a safety zone (like BSD) - lt_cv_sys_max_cmd_len=196608 - ;; - - osf*) - # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure - # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not - # nice to cause kernel panics so lets avoid the loop below. - # First set a reasonable default. - lt_cv_sys_max_cmd_len=16384 - # - if test -x /sbin/sysconfig; then - case `/sbin/sysconfig -q proc exec_disable_arg_limit` in - *1*) lt_cv_sys_max_cmd_len=-1 ;; - esac - fi - ;; - sco3.2v5*) - lt_cv_sys_max_cmd_len=102400 - ;; - sysv5* | sco5v6* | sysv4.2uw2*) - kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` - if test -n "$kargmax"; then - lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` - else - lt_cv_sys_max_cmd_len=32768 - fi - ;; - *) - lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` - if test -n "$lt_cv_sys_max_cmd_len"; then - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - else - # Make teststring a little bigger before we do anything with it. - # a 1K string should be a reasonable start. - for i in 1 2 3 4 5 6 7 8 ; do - teststring=$teststring$teststring - done - SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} - # If test is not a shell built-in, we'll probably end up computing a - # maximum length that is only half of the actual maximum length, but - # we can't tell. - while { test "X"`$SHELL $0 --fallback-echo "X$teststring$teststring" 2>/dev/null` \ - = "XX$teststring$teststring"; } >/dev/null 2>&1 && - test $i != 17 # 1/2 MB should be enough - do - i=`expr $i + 1` - teststring=$teststring$teststring - done - # Only check the string length outside the loop. - lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` - teststring= - # Add a significant safety factor because C++ compilers can tack on - # massive amounts of additional arguments before passing them to the - # linker. It appears as though 1/2 is a usable value. - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` - fi - ;; - esac - -fi - -if test -n $lt_cv_sys_max_cmd_len ; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 -$as_echo "$lt_cv_sys_max_cmd_len" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 -$as_echo "none" >&6; } -fi -max_cmd_len=$lt_cv_sys_max_cmd_len - - - - - - -: ${CP="cp -f"} -: ${MV="mv -f"} -: ${RM="rm -f"} - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 -$as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } -# Try some XSI features -xsi_shell=no -( _lt_dummy="a/b/c" - test "${_lt_dummy##*/},${_lt_dummy%/*},"${_lt_dummy%"$_lt_dummy"}, \ - = c,a/b,, \ - && eval 'test $(( 1 + 1 )) -eq 2 \ - && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ - && xsi_shell=yes -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 -$as_echo "$xsi_shell" >&6; } - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 -$as_echo_n "checking whether the shell understands \"+=\"... " >&6; } -lt_shell_append=no -( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ - >/dev/null 2>&1 \ - && lt_shell_append=yes -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 -$as_echo "$lt_shell_append" >&6; } - - -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - lt_unset=unset -else - lt_unset=false -fi - - - - - -# test EBCDIC or ASCII -case `echo X|tr X '\101'` in - A) # ASCII based system - # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr - lt_SP2NL='tr \040 \012' - lt_NL2SP='tr \015\012 \040\040' - ;; - *) # EBCDIC based system - lt_SP2NL='tr \100 \n' - lt_NL2SP='tr \r\n \100\100' - ;; -esac - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 -$as_echo_n "checking for $LD option to reload object files... " >&6; } -if test "${lt_cv_ld_reload_flag+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_ld_reload_flag='-r' -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 -$as_echo "$lt_cv_ld_reload_flag" >&6; } -reload_flag=$lt_cv_ld_reload_flag -case $reload_flag in -"" | " "*) ;; -*) reload_flag=" $reload_flag" ;; -esac -reload_cmds='$LD$reload_flag -o $output$reload_objs' -case $host_os in - darwin*) - if test "$GCC" = yes; then - reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' - else - reload_cmds='$LD$reload_flag -o $output$reload_objs' - fi - ;; -esac - - - - - - - - - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. -set dummy ${ac_tool_prefix}objdump; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_OBJDUMP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$OBJDUMP"; then - ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -OBJDUMP=$ac_cv_prog_OBJDUMP -if test -n "$OBJDUMP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 -$as_echo "$OBJDUMP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_OBJDUMP"; then - ac_ct_OBJDUMP=$OBJDUMP - # Extract the first word of "objdump", so it can be a program name with args. -set dummy objdump; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_OBJDUMP"; then - ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_OBJDUMP="objdump" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP -if test -n "$ac_ct_OBJDUMP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 -$as_echo "$ac_ct_OBJDUMP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_OBJDUMP" = x; then - OBJDUMP="false" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - OBJDUMP=$ac_ct_OBJDUMP - fi -else - OBJDUMP="$ac_cv_prog_OBJDUMP" -fi - -test -z "$OBJDUMP" && OBJDUMP=objdump - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 -$as_echo_n "checking how to recognize dependent libraries... " >&6; } -if test "${lt_cv_deplibs_check_method+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_file_magic_cmd='$MAGIC_CMD' -lt_cv_file_magic_test_file= -lt_cv_deplibs_check_method='unknown' -# Need to set the preceding variable on all platforms that support -# interlibrary dependencies. -# 'none' -- dependencies not supported. -# `unknown' -- same as none, but documents that we really don't know. -# 'pass_all' -- all dependencies passed with no checks. -# 'test_compile' -- check by making test program. -# 'file_magic [[regex]]' -- check by looking for files in library path -# which responds to the $file_magic_cmd with a given extended regex. -# If you have `file' or equivalent on your system and you're not sure -# whether `pass_all' will *always* work, you probably want this one. - -case $host_os in -aix[4-9]*) - lt_cv_deplibs_check_method=pass_all - ;; - -beos*) - lt_cv_deplibs_check_method=pass_all - ;; - -bsdi[45]*) - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' - lt_cv_file_magic_cmd='/usr/bin/file -L' - lt_cv_file_magic_test_file=/shlib/libc.so - ;; - -cygwin*) - # func_win32_libid is a shell function defined in ltmain.sh - lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' - lt_cv_file_magic_cmd='func_win32_libid' - ;; - -mingw* | pw32*) - # Base MSYS/MinGW do not provide the 'file' command needed by - # func_win32_libid shell function, so use a weaker test based on 'objdump', - # unless we find 'file', for example because we are cross-compiling. - if ( file / ) >/dev/null 2>&1; then - lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' - lt_cv_file_magic_cmd='func_win32_libid' - else - lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' - lt_cv_file_magic_cmd='$OBJDUMP -f' - fi - ;; - -cegcc) - # use the weaker test based on 'objdump'. See mingw*. - lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' - lt_cv_file_magic_cmd='$OBJDUMP -f' - ;; - -darwin* | rhapsody*) - lt_cv_deplibs_check_method=pass_all - ;; - -freebsd* | dragonfly*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then - case $host_cpu in - i*86 ) - # Not sure whether the presence of OpenBSD here was a mistake. - # Let's accept both of them until this is cleared up. - lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` - ;; - esac - else - lt_cv_deplibs_check_method=pass_all - fi - ;; - -gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - -hpux10.20* | hpux11*) - lt_cv_file_magic_cmd=/usr/bin/file - case $host_cpu in - ia64*) - lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' - lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so - ;; - hppa*64*) - lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]' - lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl - ;; - *) - lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library' - lt_cv_file_magic_test_file=/usr/lib/libc.sl - ;; - esac - ;; - -interix[3-9]*) - # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' - ;; - -irix5* | irix6* | nonstopux*) - case $LD in - *-32|*"-32 ") libmagic=32-bit;; - *-n32|*"-n32 ") libmagic=N32;; - *-64|*"-64 ") libmagic=64-bit;; - *) libmagic=never-match;; - esac - lt_cv_deplibs_check_method=pass_all - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) - lt_cv_deplibs_check_method=pass_all - ;; - -netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' - fi - ;; - -newos6*) - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=/usr/lib/libnls.so - ;; - -*nto* | *qnx*) - lt_cv_deplibs_check_method=pass_all - ;; - -openbsd*) - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' - fi - ;; - -osf3* | osf4* | osf5*) - lt_cv_deplibs_check_method=pass_all - ;; - -rdos*) - lt_cv_deplibs_check_method=pass_all - ;; - -solaris*) - lt_cv_deplibs_check_method=pass_all - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - lt_cv_deplibs_check_method=pass_all - ;; - -sysv4 | sysv4.3*) - case $host_vendor in - motorola) - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` - ;; - ncr) - lt_cv_deplibs_check_method=pass_all - ;; - sequent) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' - ;; - sni) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" - lt_cv_file_magic_test_file=/lib/libc.so - ;; - siemens) - lt_cv_deplibs_check_method=pass_all - ;; - pc) - lt_cv_deplibs_check_method=pass_all - ;; - esac - ;; - -tpf*) - lt_cv_deplibs_check_method=pass_all - ;; -esac - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 -$as_echo "$lt_cv_deplibs_check_method" >&6; } -file_magic_cmd=$lt_cv_file_magic_cmd -deplibs_check_method=$lt_cv_deplibs_check_method -test -z "$deplibs_check_method" && deplibs_check_method=unknown - - - - - - - - - - - - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. -set dummy ${ac_tool_prefix}ar; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_AR+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$AR"; then - ac_cv_prog_AR="$AR" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_AR="${ac_tool_prefix}ar" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -AR=$ac_cv_prog_AR -if test -n "$AR"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 -$as_echo "$AR" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_AR"; then - ac_ct_AR=$AR - # Extract the first word of "ar", so it can be a program name with args. -set dummy ar; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_AR+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_AR"; then - ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_AR="ar" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_AR=$ac_cv_prog_ac_ct_AR -if test -n "$ac_ct_AR"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 -$as_echo "$ac_ct_AR" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_AR" = x; then - AR="false" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - AR=$ac_ct_AR - fi -else - AR="$ac_cv_prog_AR" -fi - -test -z "$AR" && AR=ar -test -z "$AR_FLAGS" && AR_FLAGS=cru - - - - - - - - - - - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -set dummy ${ac_tool_prefix}strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_STRIP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$STRIP"; then - ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_STRIP="${ac_tool_prefix}strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -STRIP=$ac_cv_prog_STRIP -if test -n "$STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -$as_echo "$STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_STRIP"; then - ac_ct_STRIP=$STRIP - # Extract the first word of "strip", so it can be a program name with args. -set dummy strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_STRIP"; then - ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_STRIP="strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -if test -n "$ac_ct_STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 -$as_echo "$ac_ct_STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_STRIP" = x; then - STRIP=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - STRIP=$ac_ct_STRIP - fi -else - STRIP="$ac_cv_prog_STRIP" -fi - -test -z "$STRIP" && STRIP=: - - - - - - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. -set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_RANLIB+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$RANLIB"; then - ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -RANLIB=$ac_cv_prog_RANLIB -if test -n "$RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 -$as_echo "$RANLIB" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_RANLIB"; then - ac_ct_RANLIB=$RANLIB - # Extract the first word of "ranlib", so it can be a program name with args. -set dummy ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_RANLIB"; then - ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_RANLIB="ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB -if test -n "$ac_ct_RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 -$as_echo "$ac_ct_RANLIB" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_RANLIB" = x; then - RANLIB=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - RANLIB=$ac_ct_RANLIB - fi -else - RANLIB="$ac_cv_prog_RANLIB" -fi - -test -z "$RANLIB" && RANLIB=: - - - - - - -# Determine commands to create old-style static archives. -old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' -old_postinstall_cmds='chmod 644 $oldlib' -old_postuninstall_cmds= - -if test -n "$RANLIB"; then - case $host_os in - openbsd*) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" - ;; - *) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" - ;; - esac - old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" -fi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC - - -# Check for command to grab the raw symbol name followed by C symbol from nm. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 -$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } -if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - -# These are sane defaults that work on at least a few old systems. -# [They come from Ultrix. What could be older than Ultrix?!! ;)] - -# Character class describing NM global symbol codes. -symcode='[BCDEGRST]' - -# Regexp to match symbols that can be accessed directly from C. -sympat='\([_A-Za-z][_A-Za-z0-9]*\)' - -# Define system-specific variables. -case $host_os in -aix*) - symcode='[BCDT]' - ;; -cygwin* | mingw* | pw32* | cegcc*) - symcode='[ABCDGISTW]' - ;; -hpux*) - if test "$host_cpu" = ia64; then - symcode='[ABCDEGRST]' - fi - ;; -irix* | nonstopux*) - symcode='[BCDEGRST]' - ;; -osf*) - symcode='[BCDEGQRST]' - ;; -solaris*) - symcode='[BDRT]' - ;; -sco3.2v5*) - symcode='[DT]' - ;; -sysv4.2uw2*) - symcode='[DT]' - ;; -sysv5* | sco5v6* | unixware* | OpenUNIX*) - symcode='[ABDT]' - ;; -sysv4) - symcode='[DFNSTU]' - ;; -esac - -# If we're using GNU nm, then use its standard symbol codes. -case `$NM -V 2>&1` in -*GNU* | *'with BFD'*) - symcode='[ABCDGIRSTW]' ;; -esac - -# Transform an extracted symbol line into a proper C declaration. -# Some systems (esp. on ia64) link data and code symbols differently, -# so use this general approach. -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" - -# Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" - -# Handle CRLF in mingw tool chain -opt_cr= -case $build_os in -mingw*) - opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp - ;; -esac - -# Try without a prefix underscore, then with it. -for ac_symprfx in "" "_"; do - - # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. - symxfrm="\\1 $ac_symprfx\\2 \\2" - - # Write the raw and C identifiers. - if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Fake it for dumpbin and say T for any non-static function - # and D for any global variable. - # Also find C++ and __fastcall symbols from MSVC++, - # which start with @ or ?. - lt_cv_sys_global_symbol_pipe="$AWK '"\ -" {last_section=section; section=\$ 3};"\ -" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ -" \$ 0!~/External *\|/{next};"\ -" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ -" {if(hide[section]) next};"\ -" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ -" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ -" s[1]~/^[@?]/{print s[1], s[1]; next};"\ -" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ -" ' prfx=^$ac_symprfx" - else - lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" - fi - - # Check to see that the pipe works correctly. - pipe_works=no - - rm -f conftest* - cat > conftest.$ac_ext <<_LT_EOF -#ifdef __cplusplus -extern "C" { -#endif -char nm_test_var; -void nm_test_func(void); -void nm_test_func(void){} -#ifdef __cplusplus -} -#endif -int main(){nm_test_var='a';nm_test_func();return(0);} -_LT_EOF - - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - # Now try to grab the symbols. - nlist=conftest.nm - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\""; } >&5 - (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s "$nlist"; then - # Try sorting and uniquifying the output. - if sort "$nlist" | uniq > "$nlist"T; then - mv -f "$nlist"T "$nlist" - else - rm -f "$nlist"T - fi - - # Make sure that we snagged all the symbols we need. - if $GREP ' nm_test_var$' "$nlist" >/dev/null; then - if $GREP ' nm_test_func$' "$nlist" >/dev/null; then - cat <<_LT_EOF > conftest.$ac_ext -#ifdef __cplusplus -extern "C" { -#endif - -_LT_EOF - # Now generate the symbol file. - eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' - - cat <<_LT_EOF >> conftest.$ac_ext - -/* The mapping between symbol names and symbols. */ -const struct { - const char *name; - void *address; -} -lt__PROGRAM__LTX_preloaded_symbols[] = -{ - { "@PROGRAM@", (void *) 0 }, -_LT_EOF - $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext - cat <<\_LT_EOF >> conftest.$ac_ext - {0, (void *) 0} -}; - -/* This works around a problem in FreeBSD linker */ -#ifdef FREEBSD_WORKAROUND -static const void *lt_preloaded_setup() { - return lt__PROGRAM__LTX_preloaded_symbols; -} -#endif - -#ifdef __cplusplus -} -#endif -_LT_EOF - # Now try linking the two files. - mv conftest.$ac_objext conftstm.$ac_objext - lt_save_LIBS="$LIBS" - lt_save_CFLAGS="$CFLAGS" - LIBS="conftstm.$ac_objext" - CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 - (eval $ac_link) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext}; then - pipe_works=yes - fi - LIBS="$lt_save_LIBS" - CFLAGS="$lt_save_CFLAGS" - else - echo "cannot find nm_test_func in $nlist" >&5 - fi - else - echo "cannot find nm_test_var in $nlist" >&5 - fi - else - echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 - fi - else - echo "$progname: failed program was:" >&5 - cat conftest.$ac_ext >&5 - fi - rm -rf conftest* conftst* - - # Do not use the global_symbol_pipe unless it works. - if test "$pipe_works" = yes; then - break - else - lt_cv_sys_global_symbol_pipe= - fi -done - -fi - -if test -z "$lt_cv_sys_global_symbol_pipe"; then - lt_cv_sys_global_symbol_to_cdecl= -fi -if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 -$as_echo "failed" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 -$as_echo "ok" >&6; } -fi - - - - - - - - - - - - - - - - - - - - - - - -# Check whether --enable-libtool-lock was given. -if test "${enable_libtool_lock+set}" = set; then : - enableval=$enable_libtool_lock; -fi - -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes - -# Some flags need to be propagated to the compiler or linker for good -# libtool support. -case $host in -ia64-*-hpux*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - case `/usr/bin/file conftest.$ac_objext` in - *ELF-32*) - HPUX_IA64_MODE="32" - ;; - *ELF-64*) - HPUX_IA64_MODE="64" - ;; - esac - fi - rm -rf conftest* - ;; -*-*-irix6*) - # Find out which ABI we are using. - echo '#line 6733 "configure"' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - if test "$lt_cv_prog_gnu_ld" = yes; then - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -melf32bsmip" - ;; - *N32*) - LD="${LD-ld} -melf32bmipn32" - ;; - *64-bit*) - LD="${LD-ld} -melf64bmip" - ;; - esac - else - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -32" - ;; - *N32*) - LD="${LD-ld} -n32" - ;; - *64-bit*) - LD="${LD-ld} -64" - ;; - esac - fi - fi - rm -rf conftest* - ;; - -x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ -s390*-*linux*|s390*-*tpf*|sparc*-*linux*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - case `/usr/bin/file conftest.o` in - *32-bit*) - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_i386_fbsd" - ;; - x86_64-*linux*) - LD="${LD-ld} -m elf_i386" - ;; - ppc64-*linux*|powerpc64-*linux*) - LD="${LD-ld} -m elf32ppclinux" - ;; - s390x-*linux*) - LD="${LD-ld} -m elf_s390" - ;; - sparc64-*linux*) - LD="${LD-ld} -m elf32_sparc" - ;; - esac - ;; - *64-bit*) - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_x86_64_fbsd" - ;; - x86_64-*linux*) - LD="${LD-ld} -m elf_x86_64" - ;; - ppc*-*linux*|powerpc*-*linux*) - LD="${LD-ld} -m elf64ppc" - ;; - s390*-*linux*|s390*-*tpf*) - LD="${LD-ld} -m elf64_s390" - ;; - sparc*-*linux*) - LD="${LD-ld} -m elf64_sparc" - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; - -*-*-sco3.2v5*) - # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS -belf" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 -$as_echo_n "checking whether the C compiler needs -belf... " >&6; } -if test "${lt_cv_cc_needs_belf+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - lt_cv_cc_needs_belf=yes -else - lt_cv_cc_needs_belf=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 -$as_echo "$lt_cv_cc_needs_belf" >&6; } - if test x"$lt_cv_cc_needs_belf" != x"yes"; then - # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS="$SAVE_CFLAGS" - fi - ;; -sparc*-*solaris*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - case `/usr/bin/file conftest.o` in - *64-bit*) - case $lt_cv_prog_gnu_ld in - yes*) LD="${LD-ld} -m elf64_sparc" ;; - *) - if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then - LD="${LD-ld} -64" - fi - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; -esac - -need_locks="$enable_libtool_lock" - - - case $host_os in - rhapsody* | darwin*) - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. -set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_DSYMUTIL+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$DSYMUTIL"; then - ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -DSYMUTIL=$ac_cv_prog_DSYMUTIL -if test -n "$DSYMUTIL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 -$as_echo "$DSYMUTIL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_DSYMUTIL"; then - ac_ct_DSYMUTIL=$DSYMUTIL - # Extract the first word of "dsymutil", so it can be a program name with args. -set dummy dsymutil; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_DSYMUTIL"; then - ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL -if test -n "$ac_ct_DSYMUTIL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 -$as_echo "$ac_ct_DSYMUTIL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_DSYMUTIL" = x; then - DSYMUTIL=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - DSYMUTIL=$ac_ct_DSYMUTIL - fi -else - DSYMUTIL="$ac_cv_prog_DSYMUTIL" -fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. -set dummy ${ac_tool_prefix}nmedit; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_NMEDIT+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$NMEDIT"; then - ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -NMEDIT=$ac_cv_prog_NMEDIT -if test -n "$NMEDIT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 -$as_echo "$NMEDIT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_NMEDIT"; then - ac_ct_NMEDIT=$NMEDIT - # Extract the first word of "nmedit", so it can be a program name with args. -set dummy nmedit; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_NMEDIT"; then - ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_NMEDIT="nmedit" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT -if test -n "$ac_ct_NMEDIT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 -$as_echo "$ac_ct_NMEDIT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_NMEDIT" = x; then - NMEDIT=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - NMEDIT=$ac_ct_NMEDIT - fi -else - NMEDIT="$ac_cv_prog_NMEDIT" -fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. -set dummy ${ac_tool_prefix}lipo; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_LIPO+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$LIPO"; then - ac_cv_prog_LIPO="$LIPO" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_LIPO="${ac_tool_prefix}lipo" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -LIPO=$ac_cv_prog_LIPO -if test -n "$LIPO"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 -$as_echo "$LIPO" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_LIPO"; then - ac_ct_LIPO=$LIPO - # Extract the first word of "lipo", so it can be a program name with args. -set dummy lipo; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_LIPO+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_LIPO"; then - ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_LIPO="lipo" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO -if test -n "$ac_ct_LIPO"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 -$as_echo "$ac_ct_LIPO" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_LIPO" = x; then - LIPO=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - LIPO=$ac_ct_LIPO - fi -else - LIPO="$ac_cv_prog_LIPO" -fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. -set dummy ${ac_tool_prefix}otool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_OTOOL+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$OTOOL"; then - ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_OTOOL="${ac_tool_prefix}otool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -OTOOL=$ac_cv_prog_OTOOL -if test -n "$OTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 -$as_echo "$OTOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_OTOOL"; then - ac_ct_OTOOL=$OTOOL - # Extract the first word of "otool", so it can be a program name with args. -set dummy otool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_OTOOL+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_OTOOL"; then - ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_OTOOL="otool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL -if test -n "$ac_ct_OTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 -$as_echo "$ac_ct_OTOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_OTOOL" = x; then - OTOOL=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - OTOOL=$ac_ct_OTOOL - fi -else - OTOOL="$ac_cv_prog_OTOOL" -fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. -set dummy ${ac_tool_prefix}otool64; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_OTOOL64+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$OTOOL64"; then - ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -OTOOL64=$ac_cv_prog_OTOOL64 -if test -n "$OTOOL64"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 -$as_echo "$OTOOL64" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_OTOOL64"; then - ac_ct_OTOOL64=$OTOOL64 - # Extract the first word of "otool64", so it can be a program name with args. -set dummy otool64; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_OTOOL64+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_OTOOL64"; then - ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_OTOOL64="otool64" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 -if test -n "$ac_ct_OTOOL64"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 -$as_echo "$ac_ct_OTOOL64" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_OTOOL64" = x; then - OTOOL64=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - OTOOL64=$ac_ct_OTOOL64 - fi -else - OTOOL64="$ac_cv_prog_OTOOL64" -fi - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 -$as_echo_n "checking for -single_module linker flag... " >&6; } -if test "${lt_cv_apple_cc_single_mod+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_apple_cc_single_mod=no - if test -z "${LT_MULTI_MODULE}"; then - # By default we will add the -single_module flag. You can override - # by either setting the environment variable LT_MULTI_MODULE - # non-empty at configure time, or by adding -multi_module to the - # link flags. - rm -rf libconftest.dylib* - echo "int foo(void){return 1;}" > conftest.c - echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ --dynamiclib -Wl,-single_module conftest.c" >&5 - $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ - -dynamiclib -Wl,-single_module conftest.c 2>conftest.err - _lt_result=$? - if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then - lt_cv_apple_cc_single_mod=yes - else - cat conftest.err >&5 - fi - rm -rf libconftest.dylib* - rm -f conftest.* - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 -$as_echo "$lt_cv_apple_cc_single_mod" >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 -$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } -if test "${lt_cv_ld_exported_symbols_list+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_ld_exported_symbols_list=no - save_LDFLAGS=$LDFLAGS - echo "_main" > conftest.sym - LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - lt_cv_ld_exported_symbols_list=yes -else - lt_cv_ld_exported_symbols_list=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS="$save_LDFLAGS" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 -$as_echo "$lt_cv_ld_exported_symbols_list" >&6; } - case $host_os in - rhapsody* | darwin1.[012]) - _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; - darwin1.*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; - darwin*) # darwin 5.x on - # if running on 10.5 or later, the deployment target defaults - # to the OS version, if on x86, and 10.4, the deployment - # target defaults to 10.4. Don't you love it? - case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in - 10.0,*86*-darwin8*|10.0,*-darwin[91]*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - 10.[012]*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; - 10.*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - esac - ;; - esac - if test "$lt_cv_apple_cc_single_mod" = "yes"; then - _lt_dar_single_mod='$single_module' - fi - if test "$lt_cv_ld_exported_symbols_list" = "yes"; then - _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' - else - _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' - fi - if test "$DSYMUTIL" != ":"; then - _lt_dsymutil='~$DSYMUTIL $lib || :' - else - _lt_dsymutil= - fi - ;; - esac - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 -$as_echo_n "checking how to run the C preprocessor... " >&6; } -# On Suns, sometimes $CPP names a directory. -if test -n "$CPP" && test -d "$CPP"; then - CPP= -fi -if test -z "$CPP"; then - if test "${ac_cv_prog_CPP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - # Double quotes because CPP needs to be expanded - for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" - do - ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - break -fi - - done - ac_cv_prog_CPP=$CPP - -fi - CPP=$ac_cv_prog_CPP -else - ac_cv_prog_CPP=$CPP -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 -$as_echo "$CPP" >&6; } -ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details." "$LINENO" 5; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 -$as_echo_n "checking for ANSI C header files... " >&6; } -if test "${ac_cv_header_stdc+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#include -#include - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_header_stdc=yes -else - ac_cv_header_stdc=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -if test $ac_cv_header_stdc = yes; then - # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then : - : -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#if ((' ' & 0x0FF) == 0x020) -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -#else -# define ISLOWER(c) \ - (('a' <= (c) && (c) <= 'i') \ - || ('j' <= (c) && (c) <= 'r') \ - || ('s' <= (c) && (c) <= 'z')) -# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -#endif - -#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -int -main () -{ - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) - || toupper (i) != TOUPPER (i)) - return 2; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - -else - ac_cv_header_stdc=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 -$as_echo "$ac_cv_header_stdc" >&6; } -if test $ac_cv_header_stdc = yes; then - -$as_echo "#define STDC_HEADERS 1" >>confdefs.h - -fi - -# On IRIX 5.3, sys/types and inttypes.h are conflicting. -for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ - inttypes.h stdint.h unistd.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default -" -eval as_val=\$$as_ac_Header - if test "x$as_val" = x""yes; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - -for ac_header in dlfcn.h -do : - ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default -" -if test "x$ac_cv_header_dlfcn_h" = x""yes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_DLFCN_H 1 -_ACEOF - -fi - -done - - - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -if test -z "$CXX"; then - if test -n "$CCC"; then - CXX=$CCC - else - if test -n "$ac_tool_prefix"; then - for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CXX+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CXX"; then - ac_cv_prog_CXX="$CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CXX=$ac_cv_prog_CXX -if test -n "$CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 -$as_echo "$CXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CXX" && break - done -fi -if test -z "$CXX"; then - ac_ct_CXX=$CXX - for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CXX"; then - ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_CXX="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CXX=$ac_cv_prog_ac_ct_CXX -if test -n "$ac_ct_CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 -$as_echo "$ac_ct_CXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CXX" && break -done - - if test "x$ac_ct_CXX" = x; then - CXX="g++" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CXX=$ac_ct_CXX - fi -fi - - fi -fi -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 -$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } -if test "${ac_cv_cxx_compiler_gnu+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_cxx_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 -$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GXX=yes -else - GXX= -fi -ac_test_CXXFLAGS=${CXXFLAGS+set} -ac_save_CXXFLAGS=$CXXFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 -$as_echo_n "checking whether $CXX accepts -g... " >&6; } -if test "${ac_cv_prog_cxx_g+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_save_cxx_werror_flag=$ac_cxx_werror_flag - ac_cxx_werror_flag=yes - ac_cv_prog_cxx_g=no - CXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_prog_cxx_g=yes -else - CXXFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - -else - ac_cxx_werror_flag=$ac_save_cxx_werror_flag - CXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_prog_cxx_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_cxx_werror_flag=$ac_save_cxx_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 -$as_echo "$ac_cv_prog_cxx_g" >&6; } -if test "$ac_test_CXXFLAGS" = set; then - CXXFLAGS=$ac_save_CXXFLAGS -elif test $ac_cv_prog_cxx_g = yes; then - if test "$GXX" = yes; then - CXXFLAGS="-g -O2" - else - CXXFLAGS="-g" - fi -else - if test "$GXX" = yes; then - CXXFLAGS="-O2" - else - CXXFLAGS= - fi -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -depcc="$CXX" am_compiler_list= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -$as_echo_n "checking dependency style of $depcc... " >&6; } -if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_CXX_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` - fi - am__universal=false - case " $depcc " in #( - *\ -arch\ *\ -arch\ *) am__universal=true ;; - esac - - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. Also, some Intel - # versions had trouble with output in subdirs - am__obj=sub/conftest.${OBJEXT-o} - am__minus_obj="-o $am__obj" - case $depmode in - gcc) - # This depmode causes a compiler race in universal mode. - test "$am__universal" = false || continue - ;; - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - msvisualcpp | msvcmsys) - # This compiler won't grok `-c -o', but also, the minuso test has - # not run yet. These depmodes are late enough in the game, and - # so weak that their functioning should not be impacted. - am__obj=conftest.${OBJEXT-o} - am__minus_obj= - ;; - none) break ;; - esac - if depmode=$depmode \ - source=sub/conftest.c object=$am__obj \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep $am__obj sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_CXX_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_CXX_dependencies_compiler_type=none -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 -$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } -CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type - - if - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then - am__fastdepCXX_TRUE= - am__fastdepCXX_FALSE='#' -else - am__fastdepCXX_TRUE='#' - am__fastdepCXX_FALSE= -fi - - -if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 -$as_echo_n "checking how to run the C++ preprocessor... " >&6; } -if test -z "$CXXCPP"; then - if test "${ac_cv_prog_CXXCPP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - # Double quotes because CXXCPP needs to be expanded - for CXXCPP in "$CXX -E" "/lib/cpp" - do - ac_preproc_ok=false -for ac_cxx_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - break -fi - - done - ac_cv_prog_CXXCPP=$CXXCPP - -fi - CXXCPP=$ac_cv_prog_CXXCPP -else - ac_cv_prog_CXXCPP=$CXXCPP -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 -$as_echo "$CXXCPP" >&6; } -ac_preproc_ok=false -for ac_cxx_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -_lt_caught_CXX_error=yes; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -else - _lt_caught_CXX_error=yes -fi - - - - - -ac_ext=f -ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' -ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_f77_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_F77+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$F77"; then - ac_cv_prog_F77="$F77" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_F77="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -F77=$ac_cv_prog_F77 -if test -n "$F77"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $F77" >&5 -$as_echo "$F77" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$F77" && break - done -fi -if test -z "$F77"; then - ac_ct_F77=$F77 - for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_F77+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_F77"; then - ac_cv_prog_ac_ct_F77="$ac_ct_F77" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_F77="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_F77=$ac_cv_prog_ac_ct_F77 -if test -n "$ac_ct_F77"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_F77" >&5 -$as_echo "$ac_ct_F77" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_F77" && break -done - - if test "x$ac_ct_F77" = x; then - F77="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - F77=$ac_ct_F77 - fi -fi - - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran 77 compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done -rm -f a.out - -# If we don't use `.F' as extension, the preprocessor is not run on the -# input file. (Note that this only needs to work for GNU compilers.) -ac_save_ext=$ac_ext -ac_ext=F -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran 77 compiler" >&5 -$as_echo_n "checking whether we are using the GNU Fortran 77 compiler... " >&6; } -if test "${ac_cv_f77_compiler_gnu+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat > conftest.$ac_ext <<_ACEOF - program main -#ifndef __GNUC__ - choke me -#endif - - end -_ACEOF -if ac_fn_f77_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_f77_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_f77_compiler_gnu" >&5 -$as_echo "$ac_cv_f77_compiler_gnu" >&6; } -ac_ext=$ac_save_ext -ac_test_FFLAGS=${FFLAGS+set} -ac_save_FFLAGS=$FFLAGS -FFLAGS= -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $F77 accepts -g" >&5 -$as_echo_n "checking whether $F77 accepts -g... " >&6; } -if test "${ac_cv_prog_f77_g+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - FFLAGS=-g -cat > conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -if ac_fn_f77_try_compile "$LINENO"; then : - ac_cv_prog_f77_g=yes -else - ac_cv_prog_f77_g=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_f77_g" >&5 -$as_echo "$ac_cv_prog_f77_g" >&6; } -if test "$ac_test_FFLAGS" = set; then - FFLAGS=$ac_save_FFLAGS -elif test $ac_cv_prog_f77_g = yes; then - if test "x$ac_cv_f77_compiler_gnu" = xyes; then - FFLAGS="-g -O2" - else - FFLAGS="-g" - fi -else - if test "x$ac_cv_f77_compiler_gnu" = xyes; then - FFLAGS="-O2" - else - FFLAGS= - fi -fi - -if test $ac_compiler_gnu = yes; then - G77=yes -else - G77= -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -if test -z "$F77" || test "X$F77" = "Xno"; then - _lt_disable_F77=yes -fi - - - - - -ac_ext=${ac_fc_srcext-f} -ac_compile='$FC -c $FCFLAGS $ac_fcflags_srcext conftest.$ac_ext >&5' -ac_link='$FC -o conftest$ac_exeext $FCFLAGS $LDFLAGS $ac_fcflags_srcext conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_fc_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn xlf90 f90 pgf90 pghpf epcf90 g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_FC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$FC"; then - ac_cv_prog_FC="$FC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_FC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -FC=$ac_cv_prog_FC -if test -n "$FC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FC" >&5 -$as_echo "$FC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$FC" && break - done -fi -if test -z "$FC"; then - ac_ct_FC=$FC - for ac_prog in gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn xlf90 f90 pgf90 pghpf epcf90 g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_FC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_FC"; then - ac_cv_prog_ac_ct_FC="$ac_ct_FC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_FC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_FC=$ac_cv_prog_ac_ct_FC -if test -n "$ac_ct_FC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_FC" >&5 -$as_echo "$ac_ct_FC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_FC" && break -done - - if test "x$ac_ct_FC" = x; then - FC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - FC=$ac_ct_FC - fi -fi - - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done -rm -f a.out - -# If we don't use `.F' as extension, the preprocessor is not run on the -# input file. (Note that this only needs to work for GNU compilers.) -ac_save_ext=$ac_ext -ac_ext=F -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran compiler" >&5 -$as_echo_n "checking whether we are using the GNU Fortran compiler... " >&6; } -if test "${ac_cv_fc_compiler_gnu+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat > conftest.$ac_ext <<_ACEOF - program main -#ifndef __GNUC__ - choke me -#endif - - end -_ACEOF -if ac_fn_fc_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_fc_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_fc_compiler_gnu" >&5 -$as_echo "$ac_cv_fc_compiler_gnu" >&6; } -ac_ext=$ac_save_ext -ac_test_FCFLAGS=${FCFLAGS+set} -ac_save_FCFLAGS=$FCFLAGS -FCFLAGS= -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $FC accepts -g" >&5 -$as_echo_n "checking whether $FC accepts -g... " >&6; } -if test "${ac_cv_prog_fc_g+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - FCFLAGS=-g -cat > conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -if ac_fn_fc_try_compile "$LINENO"; then : - ac_cv_prog_fc_g=yes -else - ac_cv_prog_fc_g=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_fc_g" >&5 -$as_echo "$ac_cv_prog_fc_g" >&6; } -if test "$ac_test_FCFLAGS" = set; then - FCFLAGS=$ac_save_FCFLAGS -elif test $ac_cv_prog_fc_g = yes; then - if test "x$ac_cv_fc_compiler_gnu" = xyes; then - FCFLAGS="-g -O2" - else - FCFLAGS="-g" - fi -else - if test "x$ac_cv_fc_compiler_gnu" = xyes; then - FCFLAGS="-O2" - else - FCFLAGS= - fi -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -if test -z "$FC" || test "X$FC" = "Xno"; then - _lt_disable_FC=yes -fi - - - - - -# Set options - - - - enable_dlopen=no - - - enable_win32_dll=no - - - # Check whether --enable-shared was given. -if test "${enable_shared+set}" = set; then : - enableval=$enable_shared; p=${PACKAGE-default} - case $enableval in - yes) enable_shared=yes ;; - no) enable_shared=no ;; - *) - enable_shared=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_shared=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac -else - enable_shared=yes -fi - - - - - - - - - - # Check whether --enable-static was given. -if test "${enable_static+set}" = set; then : - enableval=$enable_static; p=${PACKAGE-default} - case $enableval in - yes) enable_static=yes ;; - no) enable_static=no ;; - *) - enable_static=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_static=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac -else - enable_static=yes -fi - - - - - - - - - - -# Check whether --with-pic was given. -if test "${with_pic+set}" = set; then : - withval=$with_pic; pic_mode="$withval" -else - pic_mode=default -fi - - -test -z "$pic_mode" && pic_mode=default - - - - - - - - # Check whether --enable-fast-install was given. -if test "${enable_fast_install+set}" = set; then : - enableval=$enable_fast_install; p=${PACKAGE-default} - case $enableval in - yes) enable_fast_install=yes ;; - no) enable_fast_install=no ;; - *) - enable_fast_install=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_fast_install=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac -else - enable_fast_install=yes -fi - - - - - - - - - - - -# This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ltmain" - -# Always use our own libtool. -LIBTOOL='$(SHELL) $(top_builddir)/libtool' - - - - - - - - - - - - - - - - - - - - - - - - - -test -z "$LN_S" && LN_S="ln -s" - - - - - - - - - - - - - - -if test -n "${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 -$as_echo_n "checking for objdir... " >&6; } -if test "${lt_cv_objdir+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - rm -f .libs 2>/dev/null -mkdir .libs 2>/dev/null -if test -d .libs; then - lt_cv_objdir=.libs -else - # MS-DOS does not allow filenames that begin with a dot. - lt_cv_objdir=_libs -fi -rmdir .libs 2>/dev/null -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 -$as_echo "$lt_cv_objdir" >&6; } -objdir=$lt_cv_objdir - - - - - -cat >>confdefs.h <<_ACEOF -#define LT_OBJDIR "$lt_cv_objdir/" -_ACEOF - - - - - - - - - - - - - - - - - -case $host_os in -aix3*) - # AIX sometimes has problems with the GCC collect2 program. For some - # reason, if we set the COLLECT_NAMES environment variable, the problems - # vanish in a puff of smoke. - if test "X${COLLECT_NAMES+set}" != Xset; then - COLLECT_NAMES= - export COLLECT_NAMES - fi - ;; -esac - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='s/\(["`$\\]\)/\\\1/g' - -# Same as above, but do not quote variable references. -double_quote_subst='s/\(["`\\]\)/\\\1/g' - -# Sed substitution to delay expansion of an escaped shell variable in a -# double_quote_subst'ed string. -delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' - -# Sed substitution to delay expansion of an escaped single quote. -delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' - -# Sed substitution to avoid accidental globbing in evaled expressions -no_glob_subst='s/\*/\\\*/g' - -# Global variables: -ofile=libtool -can_build_shared=yes - -# All known linkers require a `.a' archive for static linking (except MSVC, -# which needs '.lib'). -libext=a - -with_gnu_ld="$lt_cv_prog_gnu_ld" - -old_CC="$CC" -old_CFLAGS="$CFLAGS" - -# Set sane defaults for various variables -test -z "$CC" && CC=cc -test -z "$LTCC" && LTCC=$CC -test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS -test -z "$LD" && LD=ld -test -z "$ac_objext" && ac_objext=o - -for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` - - -# Only perform the check for file, if the check method requires it -test -z "$MAGIC_CMD" && MAGIC_CMD=file -case $deplibs_check_method in -file_magic*) - if test "$file_magic_cmd" = '$MAGIC_CMD'; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 -$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } -if test "${lt_cv_path_MAGIC_CMD+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - case $MAGIC_CMD in -[\\/*] | ?:[\\/]*) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. - ;; -*) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" - for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/${ac_tool_prefix}file; then - lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" - if test -n "$file_magic_test_file"; then - case $deplibs_check_method in - "file_magic "*) - file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" - if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | - $EGREP "$file_magic_regex" > /dev/null; then - : - else - cat <<_LT_EOF 1>&2 - -*** Warning: the command libtool uses to detect shared libraries, -*** $file_magic_cmd, produces output that libtool cannot recognize. -*** The result is that libtool may fail to recognize shared libraries -*** as such. This will affect the creation of libtool libraries that -*** depend on shared libraries, but programs linked with such libtool -*** libraries will work regardless of this problem. Nevertheless, you -*** may want to report the problem to your system manager and/or to -*** bug-libtool@gnu.org - -_LT_EOF - fi ;; - esac - fi - break - fi - done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" - ;; -esac -fi - -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -if test -n "$MAGIC_CMD"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 -$as_echo "$MAGIC_CMD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - - - -if test -z "$lt_cv_path_MAGIC_CMD"; then - if test -n "$ac_tool_prefix"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 -$as_echo_n "checking for file... " >&6; } -if test "${lt_cv_path_MAGIC_CMD+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - case $MAGIC_CMD in -[\\/*] | ?:[\\/]*) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. - ;; -*) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" - for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/file; then - lt_cv_path_MAGIC_CMD="$ac_dir/file" - if test -n "$file_magic_test_file"; then - case $deplibs_check_method in - "file_magic "*) - file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" - if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | - $EGREP "$file_magic_regex" > /dev/null; then - : - else - cat <<_LT_EOF 1>&2 - -*** Warning: the command libtool uses to detect shared libraries, -*** $file_magic_cmd, produces output that libtool cannot recognize. -*** The result is that libtool may fail to recognize shared libraries -*** as such. This will affect the creation of libtool libraries that -*** depend on shared libraries, but programs linked with such libtool -*** libraries will work regardless of this problem. Nevertheless, you -*** may want to report the problem to your system manager and/or to -*** bug-libtool@gnu.org - -_LT_EOF - fi ;; - esac - fi - break - fi - done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" - ;; -esac -fi - -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -if test -n "$MAGIC_CMD"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 -$as_echo "$MAGIC_CMD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - else - MAGIC_CMD=: - fi -fi - - fi - ;; -esac - -# Use C for the default configuration in the libtool script - -lt_save_CC="$CC" -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -# Source file extension for C test sources. -ac_ext=c - -# Object file extension for compiled C test sources. -objext=o -objext=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="int some_variable = 0;" - -# Code to be used in simple link tests -lt_simple_link_test_code='int main(){return(0);}' - - - - - - - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC - -# Save the default compiler, since it gets overwritten when the other -# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. -compiler_DEFAULT=$CC - -# save warnings/boilerplate of simple test code -ac_outfile=conftest.$ac_objext -echo "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$RM conftest* - -ac_outfile=conftest.$ac_objext -echo "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$RM -r conftest* - - -if test -n "$compiler"; then - -lt_prog_compiler_no_builtin_flag= - -if test "$GCC" = yes; then - lt_prog_compiler_no_builtin_flag=' -fno-builtin' - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 -$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } -if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_rtti_exceptions=no - ac_outfile=conftest.$ac_objext - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="-fno-rtti -fno-exceptions" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:9219: $lt_compile\"" >&5) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&5 - echo "$as_me:9223: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_rtti_exceptions=yes - fi - fi - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 -$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } - -if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then - lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" -else - : -fi - -fi - - - - - - - lt_prog_compiler_wl= -lt_prog_compiler_pic= -lt_prog_compiler_static= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 -$as_echo_n "checking for $compiler option to produce PIC... " >&6; } - - if test "$GCC" = yes; then - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_static='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static='-Bstatic' - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - lt_prog_compiler_pic='-fPIC' - ;; - m68k) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' - ;; - esac - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - - mingw* | cygwin* | pw32* | os2* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - lt_prog_compiler_pic='-DDLL_EXPORT' - ;; - - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - lt_prog_compiler_pic='-fno-common' - ;; - - hpux*) - # PIC is the default for 64-bit PA HP-UX, but not for 32-bit - # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag - # sets the default TLS model and affects inlining. - case $host_cpu in - hppa*64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic='-fPIC' - ;; - esac - ;; - - interix[3-9]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - - msdosdjgpp*) - # Just because we use GCC doesn't mean we suddenly get shared libraries - # on systems that don't support them. - lt_prog_compiler_can_build_shared=no - enable_shared=no - ;; - - *nto* | *qnx*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - lt_prog_compiler_pic='-fPIC -shared' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - lt_prog_compiler_pic=-Kconform_pic - fi - ;; - - *) - lt_prog_compiler_pic='-fPIC' - ;; - esac - else - # PORTME Check for flag to pass linker flags through the system compiler. - case $host_os in - aix*) - lt_prog_compiler_wl='-Wl,' - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static='-Bstatic' - else - lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' - fi - ;; - - mingw* | cygwin* | pw32* | os2* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - lt_prog_compiler_pic='-DDLL_EXPORT' - ;; - - hpux9* | hpux10* | hpux11*) - lt_prog_compiler_wl='-Wl,' - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic='+Z' - ;; - esac - # Is there a better lt_prog_compiler_static that works with the bundled CC? - lt_prog_compiler_static='${wl}-a ${wl}archive' - ;; - - irix5* | irix6* | nonstopux*) - lt_prog_compiler_wl='-Wl,' - # PIC (with -KPIC) is the default. - lt_prog_compiler_static='-non_shared' - ;; - - linux* | k*bsd*-gnu | kopensolaris*-gnu) - case $cc_basename in - # old Intel for x86_64 which still supported -KPIC. - ecc*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-static' - ;; - # icc used to be incompatible with GCC. - # ICC 10 doesn't accept -KPIC any more. - icc* | ifort*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-fPIC' - lt_prog_compiler_static='-static' - ;; - # Lahey Fortran 8.1. - lf95*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='--shared' - lt_prog_compiler_static='--static' - ;; - pgcc* | pgf77* | pgf90* | pgf95*) - # Portland Group compilers (*not* the Pentium gcc compiler, - # which looks to be a dead project) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-fpic' - lt_prog_compiler_static='-Bstatic' - ;; - ccc*) - lt_prog_compiler_wl='-Wl,' - # All Alpha code is PIC. - lt_prog_compiler_static='-non_shared' - ;; - xl*) - # IBM XL C 8.0/Fortran 10.1 on PPC - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-qpic' - lt_prog_compiler_static='-qstaticlink' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C 5.9 - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - lt_prog_compiler_wl='-Wl,' - ;; - *Sun\ F*) - # Sun Fortran 8.3 passes all unrecognized flags to the linker - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - lt_prog_compiler_wl='' - ;; - esac - ;; - esac - ;; - - newsos6) - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - ;; - - *nto* | *qnx*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - lt_prog_compiler_pic='-fPIC -shared' - ;; - - osf3* | osf4* | osf5*) - lt_prog_compiler_wl='-Wl,' - # All OSF/1 code is PIC. - lt_prog_compiler_static='-non_shared' - ;; - - rdos*) - lt_prog_compiler_static='-non_shared' - ;; - - solaris*) - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - case $cc_basename in - f77* | f90* | f95*) - lt_prog_compiler_wl='-Qoption ld ';; - *) - lt_prog_compiler_wl='-Wl,';; - esac - ;; - - sunos4*) - lt_prog_compiler_wl='-Qoption ld ' - lt_prog_compiler_pic='-PIC' - lt_prog_compiler_static='-Bstatic' - ;; - - sysv4 | sysv4.2uw2* | sysv4.3*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - ;; - - sysv4*MP*) - if test -d /usr/nec ;then - lt_prog_compiler_pic='-Kconform_pic' - lt_prog_compiler_static='-Bstatic' - fi - ;; - - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - ;; - - unicos*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_can_build_shared=no - ;; - - uts4*) - lt_prog_compiler_pic='-pic' - lt_prog_compiler_static='-Bstatic' - ;; - - *) - lt_prog_compiler_can_build_shared=no - ;; - esac - fi - -case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: - *djgpp*) - lt_prog_compiler_pic= - ;; - *) - lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic" >&5 -$as_echo "$lt_prog_compiler_pic" >&6; } - - - - - - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$lt_prog_compiler_pic"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 -$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } -if test "${lt_cv_prog_compiler_pic_works+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_pic_works=no - ac_outfile=conftest.$ac_objext - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$lt_prog_compiler_pic -DPIC" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:9558: $lt_compile\"" >&5) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&5 - echo "$as_me:9562: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_pic_works=yes - fi - fi - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 -$as_echo "$lt_cv_prog_compiler_pic_works" >&6; } - -if test x"$lt_cv_prog_compiler_pic_works" = xyes; then - case $lt_prog_compiler_pic in - "" | " "*) ;; - *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; - esac -else - lt_prog_compiler_pic= - lt_prog_compiler_can_build_shared=no -fi - -fi - - - - - - -# -# Check to make sure the static flag actually works. -# -wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 -$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -if test "${lt_cv_prog_compiler_static_works+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_static_works=no - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS $lt_tmp_static_flag" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&5 - $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_static_works=yes - fi - else - lt_cv_prog_compiler_static_works=yes - fi - fi - $RM -r conftest* - LDFLAGS="$save_LDFLAGS" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 -$as_echo "$lt_cv_prog_compiler_static_works" >&6; } - -if test x"$lt_cv_prog_compiler_static_works" = xyes; then - : -else - lt_prog_compiler_static= -fi - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if test "${lt_cv_prog_compiler_c_o+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:9663: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:9667: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o=yes - fi - fi - chmod u+w . 2>&5 - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 -$as_echo "$lt_cv_prog_compiler_c_o" >&6; } - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if test "${lt_cv_prog_compiler_c_o+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:9718: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:9722: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o=yes - fi - fi - chmod u+w . 2>&5 - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 -$as_echo "$lt_cv_prog_compiler_c_o" >&6; } - - - - -hard_links="nottested" -if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then - # do not overwrite the value of need_locks provided by the user - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 -$as_echo_n "checking if we can lock with hard links... " >&6; } - hard_links=yes - $RM conftest* - ln conftest.a conftest.b 2>/dev/null && hard_links=no - touch conftest.a - ln conftest.a conftest.b 2>&5 || hard_links=no - ln conftest.a conftest.b 2>/dev/null && hard_links=no - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 -$as_echo "$hard_links" >&6; } - if test "$hard_links" = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} - need_locks=warn - fi -else - need_locks=no -fi - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } - - runpath_var= - allow_undefined_flag= - always_export_symbols=no - archive_cmds= - archive_expsym_cmds= - compiler_needs_object=no - enable_shared_with_static_runtimes=no - export_dynamic_flag_spec= - export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - hardcode_automatic=no - hardcode_direct=no - hardcode_direct_absolute=no - hardcode_libdir_flag_spec= - hardcode_libdir_flag_spec_ld= - hardcode_libdir_separator= - hardcode_minus_L=no - hardcode_shlibpath_var=unsupported - inherit_rpath=no - link_all_deplibs=unknown - module_cmds= - module_expsym_cmds= - old_archive_from_new_cmds= - old_archive_from_expsyms_cmds= - thread_safe_flag_spec= - whole_archive_flag_spec= - # include_expsyms should be a list of space-separated symbols to be *always* - # included in the symbol list - include_expsyms= - # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. - exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' - # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out - # platforms (ab)use it in PIC code, but their linkers get confused if - # the symbol is explicitly referenced. Since portable code cannot - # rely on this symbol name, it's probably fine to never include it in - # preloaded symbol tables. - # Exclude shared library initialization/finalization symbols. - extract_expsyms_cmds= - - case $host_os in - cygwin* | mingw* | pw32* | cegcc*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test "$GCC" != yes; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd*) - with_gnu_ld=no - ;; - linux* | k*bsd*-gnu) - link_all_deplibs=no - ;; - esac - - ld_shlibs=yes - if test "$with_gnu_ld" = yes; then - # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' - - # Set some defaults for GNU ld with shared library support. These - # are reset later if shared libraries are not supported. Putting them - # here allows them to be overridden if necessary. - runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - export_dynamic_flag_spec='${wl}--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - whole_archive_flag_spec= - fi - supports_anon_versioning=no - case `$LD -v 2>&1` in - *GNU\ gold*) supports_anon_versioning=yes ;; - *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - - # See if GNU ld supports shared libraries. - case $host_os in - aix[3-9]*) - # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then - ld_shlibs=no - cat <<_LT_EOF 1>&2 - -*** Warning: the GNU linker, at least up to release 2.9.1, is reported -*** to be unable to reliably create shared libraries on AIX. -*** Therefore, libtool is disabling shared libraries support. If you -*** really care for shared libraries, you may want to modify your PATH -*** so that a non-GNU linker is found, and then restart. - -_LT_EOF - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='' - ;; - m68k) - archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - ;; - esac - ;; - - beos*) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - allow_undefined_flag=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - ld_shlibs=no - fi - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, - # as there is no search path for DLLs. - hardcode_libdir_flag_spec='-L$libdir' - allow_undefined_flag=unsupported - always_export_symbols=no - enable_shared_with_static_runtimes=yes - export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' - - if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - ld_shlibs=no - fi - ;; - - interix[3-9]*) - hardcode_direct=no - hardcode_shlibpath_var=no - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - export_dynamic_flag_spec='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - - gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) - tmp_diet=no - if test "$host_os" = linux-dietlibc; then - case $cc_basename in - diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) - esac - fi - if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ - && test "$tmp_diet" = no - then - tmp_addflag= - tmp_sharedflag='-shared' - case $cc_basename,$host_cpu in - pgcc*) # Portland Group C compiler - whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag' - ;; - pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers - whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag -Mnomain' ;; - ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 - tmp_addflag=' -i_dynamic' ;; - efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 - tmp_addflag=' -i_dynamic -nofor_main' ;; - ifc* | ifort*) # Intel Fortran compiler - tmp_addflag=' -nofor_main' ;; - lf95*) # Lahey Fortran 8.1 - whole_archive_flag_spec= - tmp_sharedflag='--shared' ;; - xl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) - tmp_sharedflag='-qmkshrobj' - tmp_addflag= ;; - esac - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) # Sun C 5.9 - whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' - compiler_needs_object=yes - tmp_sharedflag='-G' ;; - *Sun\ F*) # Sun Fortran 8.3 - tmp_sharedflag='-G' ;; - esac - archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - - if test "x$supports_anon_versioning" = xyes; then - archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi - - case $cc_basename in - xlf*) - # IBM XL Fortran 10.1 on PPC cannot create shared libs itself - whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' - hardcode_libdir_flag_spec= - hardcode_libdir_flag_spec_ld='-rpath $libdir' - archive_cmds='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then - archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' - fi - ;; - esac - else - ld_shlibs=no - fi - ;; - - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' - wlarc= - else - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - fi - ;; - - solaris*) - if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then - ld_shlibs=no - cat <<_LT_EOF 1>&2 - -*** Warning: The releases 2.8.* of the GNU linker cannot reliably -*** create shared libraries on Solaris systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.9.1 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs=no - fi - ;; - - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) - ld_shlibs=no - cat <<_LT_EOF 1>&2 - -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not -*** reliably create shared libraries on SCO systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.16.91.0.3 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - ;; - *) - # For security reasons, it is highly recommended that you always - # use absolute paths for naming shared libraries, and exclude the - # DT_RUNPATH tag from executables and libraries. But doing so - # requires that you compile everything twice, which is a pain. - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs=no - fi - ;; - esac - ;; - - sunos4*) - archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' - wlarc= - hardcode_direct=yes - hardcode_shlibpath_var=no - ;; - - *) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs=no - fi - ;; - esac - - if test "$ld_shlibs" = no; then - runpath_var= - hardcode_libdir_flag_spec= - export_dynamic_flag_spec= - whole_archive_flag_spec= - fi - else - # PORTME fill in a description of your system's linker (not GNU ld) - case $host_os in - aix3*) - allow_undefined_flag=unsupported - always_export_symbols=yes - archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' - # Note: this linker hardcodes the directories in LIBPATH if there - # are no directories specified by -L. - hardcode_minus_L=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then - # Neither direct hardcoding nor static linking is supported with a - # broken collect2. - hardcode_direct=unsupported - fi - ;; - - aix[4-9]*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - else - export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - fi - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) - for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then - aix_use_runtimelinking=yes - break - fi - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - archive_cmds='' - hardcode_direct=yes - hardcode_direct_absolute=yes - hardcode_libdir_separator=':' - link_all_deplibs=yes - file_list_spec='${wl}-f,' - - if test "$GCC" = yes; then - case $host_os in aix4.[012]|aix4.[012].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && - strings "$collect2name" | $GREP resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - hardcode_direct=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - hardcode_minus_L=yes - hardcode_libdir_flag_spec='-L$libdir' - hardcode_libdir_separator= - fi - ;; - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - link_all_deplibs=no - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - export_dynamic_flag_spec='${wl}-bexpall' - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - always_export_symbols=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - allow_undefined_flag='-berok' - # Determine the default libpath from the value encoded in an - # empty executable. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi - - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" - archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' - allow_undefined_flag="-z nodefs" - archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an - # empty executable. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi - - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - no_undefined_flag=' ${wl}-bernotok' - allow_undefined_flag=' ${wl}-berok' - # Exported symbols can be pulled into shared objects from archives - whole_archive_flag_spec='$convenience' - archive_cmds_need_lc=yes - # This is similar to how AIX traditionally builds its shared libraries. - archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='' - ;; - m68k) - archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - ;; - esac - ;; - - bsdi[45]*) - export_dynamic_flag_spec=-rdynamic - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - hardcode_libdir_flag_spec=' ' - allow_undefined_flag=unsupported - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" - # FIXME: Setting linknames here is a bad hack. - archive_cmds='$CC -o $lib $libobjs $compiler_flags `$ECHO "X$deplibs" | $Xsed -e '\''s/ -lc$//'\''` -link -dll~linknames=' - # The linker will automatically build a .lib file if we build a DLL. - old_archive_from_new_cmds='true' - # FIXME: Should let the user specify the lib program. - old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' - fix_srcfile_path='`cygpath -w "$srcfile"`' - enable_shared_with_static_runtimes=yes - ;; - - darwin* | rhapsody*) - - - archive_cmds_need_lc=no - hardcode_direct=no - hardcode_automatic=yes - hardcode_shlibpath_var=unsupported - whole_archive_flag_spec='' - link_all_deplibs=yes - allow_undefined_flag="$_lt_dar_allow_undefined" - case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; - *) _lt_dar_can_shared=$GCC ;; - esac - if test "$_lt_dar_can_shared" = "yes"; then - output_verbose_link_cmd=echo - archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" - - else - ld_shlibs=no - fi - - ;; - - dgux*) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec='-L$libdir' - hardcode_shlibpath_var=no - ;; - - freebsd1*) - ld_shlibs=no - ;; - - # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor - # support. Future versions do this automatically, but an explicit c++rt0.o - # does not break anything, and helps significantly (at the cost of a little - # extra space). - freebsd2.2*) - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - hardcode_shlibpath_var=no - ;; - - # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2*) - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct=yes - hardcode_minus_L=yes - hardcode_shlibpath_var=no - ;; - - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | dragonfly*) - archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - hardcode_shlibpath_var=no - ;; - - hpux9*) - if test "$GCC" = yes; then - archive_cmds='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - fi - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_separator=: - hardcode_direct=yes - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - export_dynamic_flag_spec='${wl}-E' - ;; - - hpux10*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' - fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_flag_spec_ld='+b $libdir' - hardcode_libdir_separator=: - hardcode_direct=yes - hardcode_direct_absolute=yes - export_dynamic_flag_spec='${wl}-E' - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - fi - ;; - - hpux11*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - case $host_cpu in - hppa*64*) - archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - else - case $host_cpu in - hppa*64*) - archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_separator=: - - case $host_cpu in - hppa*64*|ia64*) - hardcode_direct=no - hardcode_shlibpath_var=no - ;; - *) - hardcode_direct=yes - hardcode_direct_absolute=yes - export_dynamic_flag_spec='${wl}-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - ;; - esac - fi - ;; - - irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - # Try to use the -exported_symbol ld option, if it does not - # work, assume that -exports_file does not work either and - # implicitly export all symbols. - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -int foo(void) {} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' - -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS="$save_LDFLAGS" - else - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' - fi - archive_cmds_need_lc='no' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - inherit_rpath=yes - link_all_deplibs=yes - ;; - - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out - else - archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF - fi - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - hardcode_shlibpath_var=no - ;; - - newsos6) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct=yes - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - hardcode_shlibpath_var=no - ;; - - *nto* | *qnx*) - ;; - - openbsd*) - if test -f /usr/libexec/ld.so; then - hardcode_direct=yes - hardcode_shlibpath_var=no - hardcode_direct_absolute=yes - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - export_dynamic_flag_spec='${wl}-E' - else - case $host_os in - openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec='-R$libdir' - ;; - *) - archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - ;; - esac - fi - else - ld_shlibs=no - fi - ;; - - os2*) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - allow_undefined_flag=unsupported - archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$ECHO DATA >> $output_objdir/$libname.def~$ECHO " SINGLE NONSHARED" >> $output_objdir/$libname.def~$ECHO EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' - ;; - - osf3*) - if test "$GCC" = yes; then - allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - allow_undefined_flag=' -expect_unresolved \*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - fi - archive_cmds_need_lc='no' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - ;; - - osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - else - allow_undefined_flag=' -expect_unresolved \*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ - $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' - - # Both c and cxx compiler support -rpath directly - hardcode_libdir_flag_spec='-rpath $libdir' - fi - archive_cmds_need_lc='no' - hardcode_libdir_separator=: - ;; - - solaris*) - no_undefined_flag=' -z defs' - if test "$GCC" = yes; then - wlarc='${wl}' - archive_cmds='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' - else - case `$CC -V 2>&1` in - *"Compilers 5.0"*) - wlarc='' - archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' - archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' - ;; - *) - wlarc='${wl}' - archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' - ;; - esac - fi - hardcode_libdir_flag_spec='-R$libdir' - hardcode_shlibpath_var=no - case $host_os in - solaris2.[0-5] | solaris2.[0-5].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', - # but is careful enough not to reorder. - # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' - else - whole_archive_flag_spec='-z allextract$convenience -z defaultextract' - fi - ;; - esac - link_all_deplibs=yes - ;; - - sunos4*) - if test "x$host_vendor" = xsequent; then - # Use $CC to link under sequent, because it throws in some extra .o - # files that make .init and .fini sections work. - archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' - fi - hardcode_libdir_flag_spec='-L$libdir' - hardcode_direct=yes - hardcode_minus_L=yes - hardcode_shlibpath_var=no - ;; - - sysv4) - case $host_vendor in - sni) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct=yes # is this really true??? - ;; - siemens) - ## LD is ld it makes a PLAMLIB - ## CC just makes a GrossModule. - archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' - reload_cmds='$CC -r -o $output$reload_objs' - hardcode_direct=no - ;; - motorola) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct=no #Motorola manual says yes, but my tests say they lie - ;; - esac - runpath_var='LD_RUN_PATH' - hardcode_shlibpath_var=no - ;; - - sysv4.3*) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_shlibpath_var=no - export_dynamic_flag_spec='-Bexport' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_shlibpath_var=no - runpath_var=LD_RUN_PATH - hardcode_runpath_var=yes - ld_shlibs=yes - fi - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag='${wl}-z,text' - archive_cmds_need_lc=no - hardcode_shlibpath_var=no - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - no_undefined_flag='${wl}-z,text' - allow_undefined_flag='${wl}-z,nodefs' - archive_cmds_need_lc=no - hardcode_shlibpath_var=no - hardcode_libdir_flag_spec='${wl}-R,$libdir' - hardcode_libdir_separator=':' - link_all_deplibs=yes - export_dynamic_flag_spec='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - uts4*) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec='-L$libdir' - hardcode_shlibpath_var=no - ;; - - *) - ld_shlibs=no - ;; - esac - - if test x$host_vendor = xsni; then - case $host in - sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - export_dynamic_flag_spec='${wl}-Blargedynsym' - ;; - esac - fi - fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 -$as_echo "$ld_shlibs" >&6; } -test "$ld_shlibs" = no && can_build_shared=no - -with_gnu_ld=$with_gnu_ld - - - - - - - - - - - - - - - -# -# Do we need to explicitly link libc? -# -case "x$archive_cmds_need_lc" in -x|xyes) - # Assume -lc should be added - archive_cmds_need_lc=yes - - if test "$enable_shared" = yes && test "$GCC" = yes; then - case $archive_cmds in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 -$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } - $RM conftest* - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } 2>conftest.err; then - soname=conftest - lib=conftest - libobjs=conftest.$ac_objext - deplibs= - wl=$lt_prog_compiler_wl - pic_flag=$lt_prog_compiler_pic - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$allow_undefined_flag - allow_undefined_flag= - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 - (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - then - archive_cmds_need_lc=no - else - archive_cmds_need_lc=yes - fi - allow_undefined_flag=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $RM conftest* - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc" >&5 -$as_echo "$archive_cmds_need_lc" >&6; } - ;; - esac - fi - ;; -esac - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 -$as_echo_n "checking dynamic linker characteristics... " >&6; } - -if test "$GCC" = yes; then - case $host_os in - darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; - *) lt_awk_arg="/^libraries:/" ;; - esac - lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if $ECHO "$lt_search_path_spec" | $GREP ';' >/dev/null ; then - # if the path contains ";" then we assume it to be the separator - # otherwise default to the standard path separator (i.e. ":") - it is - # assumed that no part of a normal pathname contains ";" but that should - # okay in the real world where ";" in dirpaths is itself problematic. - lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e 's/;/ /g'` - else - lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - # Ok, now we have the path, separated by spaces, we can step through it - # and add multilib dir if necessary. - lt_tmp_lt_search_path_spec= - lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` - for lt_sys_path in $lt_search_path_spec; do - if test -d "$lt_sys_path/$lt_multi_os_dir"; then - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" - else - test -d "$lt_sys_path" && \ - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" - fi - done - lt_search_path_spec=`$ECHO $lt_tmp_lt_search_path_spec | awk ' -BEGIN {RS=" "; FS="/|\n";} { - lt_foo=""; - lt_count=0; - for (lt_i = NF; lt_i > 0; lt_i--) { - if ($lt_i != "" && $lt_i != ".") { - if ($lt_i == "..") { - lt_count++; - } else { - if (lt_count == 0) { - lt_foo="/" $lt_i lt_foo; - } else { - lt_count--; - } - } - } - } - if (lt_foo != "") { lt_freq[lt_foo]++; } - if (lt_freq[lt_foo] == 1) { print lt_foo; } -}'` - sys_lib_search_path_spec=`$ECHO $lt_search_path_spec` -else - sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" -fi -library_names_spec= -libname_spec='lib$name' -soname_spec= -shrext_cmds=".so" -postinstall_cmds= -postuninstall_cmds= -finish_cmds= -finish_eval= -shlibpath_var= -shlibpath_overrides_runpath=unknown -version_type=none -dynamic_linker="$host_os ld.so" -sys_lib_dlsearch_path_spec="/lib /usr/lib" -need_lib_prefix=unknown -hardcode_into_libs=no - -# when you set need_version to no, make sure it does not cause -set_version -# flags to be left without arguments -need_version=unknown - -case $host_os in -aix3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' - ;; - -aix[4-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - hardcode_into_libs=yes - if test "$host_cpu" = ia64; then - # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - else - # With GCC up to 2.95.x, collect2 would create an import file - # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in - # development snapshots of GCC prior to 3.0. - case $host_os in - aix4 | aix4.[01] | aix4.[01].*) - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' - echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then - : - else - can_build_shared=no - fi - ;; - esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct - # soname into executable. Probably we can add versioning support to - # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then - # If using run time linking (on AIX 4.2 or later) use lib.so - # instead of lib.a to let people know that these are not - # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else - # We preserve .a as extension for shared libraries through AIX4.2 - # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi - shlibpath_var=LIBPATH - fi - ;; - -amigaos*) - case $host_cpu in - powerpc) - # Since July 2007 AmigaOS4 officially supports .so libraries. - # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - ;; - m68k) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; - esac - ;; - -beos*) - library_names_spec='${libname}${shared_ext}' - dynamic_linker="$host_os ld.so" - shlibpath_var=LIBRARY_PATH - ;; - -bsdi[45]*) - version_type=linux - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; - -cygwin* | mingw* | pw32* | cegcc*) - version_type=windows - shrext_cmds=".dll" - need_version=no - need_lib_prefix=no - - case $GCC,$host_os in - yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname~ - if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then - eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; - fi' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - shlibpath_overrides_runpath=yes - - case $host_os in - cygwin*) - # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" - ;; - mingw* | cegcc*) - # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then - # It is most probably a Windows format PATH printed by - # mingw gcc, but we are running on Cygwin. Gcc prints its search - # path with ; separators, and with drive letters. We can handle the - # drive letters (cygwin fileutils understands them), so leave them, - # especially as we might pass files found there to a mingw objdump, - # which wouldn't understand a cygwinified path. Ahh. - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - ;; - pw32*) - # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - ;; - esac - ;; - - *) - library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' - ;; - esac - dynamic_linker='Win32 ld.exe' - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; - -darwin* | rhapsody*) - dynamic_linker="$host_os dyld" - version_type=darwin - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' - shlibpath_overrides_runpath=yes - shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' - - sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' - ;; - -dgux*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -freebsd1*) - dynamic_linker=no - ;; - -freebsd* | dragonfly*) - # DragonFly does not have aout. When/if they implement a new - # versioning mechanism, adjust this. - if test -x /usr/bin/objformat; then - objformat=`/usr/bin/objformat` - else - case $host_os in - freebsd[123]*) objformat=aout ;; - *) objformat=elf ;; - esac - fi - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - need_version=no - need_lib_prefix=no - ;; - freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' - need_version=yes - ;; - esac - shlibpath_var=LD_LIBRARY_PATH - case $host_os in - freebsd2*) - shlibpath_overrides_runpath=yes - ;; - freebsd3.[01]* | freebsdelf3.[01]*) - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ - freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - *) # from 4.6 on, and DragonFly - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - esac - ;; - -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - ;; - -hpux9* | hpux10* | hpux11*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - version_type=sunos - need_lib_prefix=no - need_version=no - case $host_cpu in - ia64*) - shrext_cmds='.so' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.so" - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - else - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - ;; - esac - # HP-UX runs *really* slowly unless shared libraries are mode 555. - postinstall_cmds='chmod 555 $lib' - ;; - -interix[3-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -irix5* | irix6* | nonstopux*) - case $host_os in - nonstopux*) version_type=nonstopux ;; - *) - if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux - else - version_type=irix - fi ;; - esac - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' - case $host_os in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in # libtool.m4 will add one of these switches to LD - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") - libsuff= shlibsuff= libmagic=32-bit;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") - libsuff=32 shlibsuff=N32 libmagic=N32;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") - libsuff=64 shlibsuff=64 libmagic=64-bit;; - *) libsuff= shlibsuff= libmagic=never-match;; - esac - ;; - esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - hardcode_into_libs=yes - ;; - -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - # Some binutils ld are patched to set DT_RUNPATH - save_LDFLAGS=$LDFLAGS - save_libdir=$libdir - eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ - LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : - shlibpath_overrides_runpath=yes -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$save_LDFLAGS - libdir=$save_libdir - - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - # Append ld.so.conf contents to the search path - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" - fi - - # We used to test for /lib/ld.so.1 and disable shared libraries on - # powerpc, because MkLinux only supported shared libraries with the - # GNU dynamic linker. Since this was broken with cross compilers, - # most powerpc-linux boxes support dynamic linking these days and - # people can always --disable-shared, the test was removed, and we - # assume the GNU/Linux dynamic linker is in use. - dynamic_linker='GNU/Linux ld.so' - ;; - -netbsdelf*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='NetBSD ld.elf_so' - ;; - -netbsd*) - version_type=sunos - need_lib_prefix=no - need_version=no - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - dynamic_linker='NetBSD (a.out) ld.so' - else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='NetBSD ld.elf_so' - fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - -newsos6) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -*nto* | *qnx*) - version_type=qnx - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='ldqnx.so' - ;; - -openbsd*) - version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" - need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[89] | openbsd2.[89].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi - ;; - -os2*) - libname_spec='$name' - shrext_cmds=".dll" - need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH - ;; - -osf3* | osf4* | osf5*) - version_type=osf - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" - ;; - -rdos*) - dynamic_linker=no - ;; - -solaris*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - # ldd complains unless libraries are executable - postinstall_cmds='chmod +x $lib' - ;; - -sunos4*) - version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then - need_lib_prefix=no - fi - need_version=yes - ;; - -sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - case $host_vendor in - sni) - shlibpath_overrides_runpath=no - need_lib_prefix=no - runpath_var=LD_RUN_PATH - ;; - siemens) - need_lib_prefix=no - ;; - motorola) - need_lib_prefix=no - need_version=no - shlibpath_overrides_runpath=no - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' - ;; - esac - ;; - -sysv4*MP*) - if test -d /usr/nec ;then - version_type=linux - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' - shlibpath_var=LD_LIBRARY_PATH - fi - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then - sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - case $host_os in - sco3.2v5*) - sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" - ;; - esac - fi - sys_lib_dlsearch_path_spec='/usr/lib' - ;; - -tpf*) - # TPF is a cross-target only. Preferred cross-host = GNU/Linux. - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -uts4*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -*) - dynamic_linker=no - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 -$as_echo "$dynamic_linker" >&6; } -test "$dynamic_linker" = no && can_build_shared=no - -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -fi - -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" -fi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 -$as_echo_n "checking how to hardcode library paths into programs... " >&6; } -hardcode_action= -if test -n "$hardcode_libdir_flag_spec" || - test -n "$runpath_var" || - test "X$hardcode_automatic" = "Xyes" ; then - - # We can hardcode non-existent directories. - if test "$hardcode_direct" != no && - # If the only mechanism to avoid hardcoding is shlibpath_var, we - # have to relink, otherwise we might link with an installed library - # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && - test "$hardcode_minus_L" != no; then - # Linking always hardcodes the temporary library directory. - hardcode_action=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - hardcode_action=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - hardcode_action=unsupported -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 -$as_echo "$hardcode_action" >&6; } - -if test "$hardcode_action" = relink || - test "$inherit_rpath" = yes; then - # Fast installation is not supported - enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then - # Fast installation is not necessary - enable_fast_install=needless -fi - - - - - - - if test "x$enable_dlopen" != xyes; then - enable_dlopen=unknown - enable_dlopen_self=unknown - enable_dlopen_self_static=unknown -else - lt_cv_dlopen=no - lt_cv_dlopen_libs= - - case $host_os in - beos*) - lt_cv_dlopen="load_add_on" - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - ;; - - mingw* | pw32* | cegcc*) - lt_cv_dlopen="LoadLibrary" - lt_cv_dlopen_libs= - ;; - - cygwin*) - lt_cv_dlopen="dlopen" - lt_cv_dlopen_libs= - ;; - - darwin*) - # if libdl is installed we need to link against it - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 -$as_echo_n "checking for dlopen in -ldl... " >&6; } -if test "${ac_cv_lib_dl_dlopen+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldl $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dlopen (); -int -main () -{ -return dlopen (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dl_dlopen=yes -else - ac_cv_lib_dl_dlopen=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 -$as_echo "$ac_cv_lib_dl_dlopen" >&6; } -if test "x$ac_cv_lib_dl_dlopen" = x""yes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" -else - - lt_cv_dlopen="dyld" - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - -fi - - ;; - - *) - ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" -if test "x$ac_cv_func_shl_load" = x""yes; then : - lt_cv_dlopen="shl_load" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 -$as_echo_n "checking for shl_load in -ldld... " >&6; } -if test "${ac_cv_lib_dld_shl_load+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldld $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char shl_load (); -int -main () -{ -return shl_load (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dld_shl_load=yes -else - ac_cv_lib_dld_shl_load=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 -$as_echo "$ac_cv_lib_dld_shl_load" >&6; } -if test "x$ac_cv_lib_dld_shl_load" = x""yes; then : - lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" -else - ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" -if test "x$ac_cv_func_dlopen" = x""yes; then : - lt_cv_dlopen="dlopen" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 -$as_echo_n "checking for dlopen in -ldl... " >&6; } -if test "${ac_cv_lib_dl_dlopen+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldl $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dlopen (); -int -main () -{ -return dlopen (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dl_dlopen=yes -else - ac_cv_lib_dl_dlopen=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 -$as_echo "$ac_cv_lib_dl_dlopen" >&6; } -if test "x$ac_cv_lib_dl_dlopen" = x""yes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 -$as_echo_n "checking for dlopen in -lsvld... " >&6; } -if test "${ac_cv_lib_svld_dlopen+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lsvld $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dlopen (); -int -main () -{ -return dlopen (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_svld_dlopen=yes -else - ac_cv_lib_svld_dlopen=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 -$as_echo "$ac_cv_lib_svld_dlopen" >&6; } -if test "x$ac_cv_lib_svld_dlopen" = x""yes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 -$as_echo_n "checking for dld_link in -ldld... " >&6; } -if test "${ac_cv_lib_dld_dld_link+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldld $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dld_link (); -int -main () -{ -return dld_link (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dld_dld_link=yes -else - ac_cv_lib_dld_dld_link=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 -$as_echo "$ac_cv_lib_dld_dld_link" >&6; } -if test "x$ac_cv_lib_dld_dld_link" = x""yes; then : - lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" -fi - - -fi - - -fi - - -fi - - -fi - - -fi - - ;; - esac - - if test "x$lt_cv_dlopen" != xno; then - enable_dlopen=yes - else - enable_dlopen=no - fi - - case $lt_cv_dlopen in - dlopen) - save_CPPFLAGS="$CPPFLAGS" - test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - - save_LDFLAGS="$LDFLAGS" - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - - save_LIBS="$LIBS" - LIBS="$lt_cv_dlopen_libs $LIBS" - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 -$as_echo_n "checking whether a program can dlopen itself... " >&6; } -if test "${lt_cv_dlopen_self+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test "$cross_compiling" = yes; then : - lt_cv_dlopen_self=cross -else - lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 - lt_status=$lt_dlunknown - cat > conftest.$ac_ext <<_LT_EOF -#line 12102 "configure" -#include "confdefs.h" - -#if HAVE_DLFCN_H -#include -#endif - -#include - -#ifdef RTLD_GLOBAL -# define LT_DLGLOBAL RTLD_GLOBAL -#else -# ifdef DL_GLOBAL -# define LT_DLGLOBAL DL_GLOBAL -# else -# define LT_DLGLOBAL 0 -# endif -#endif - -/* We may have to define LT_DLLAZY_OR_NOW in the command line if we - find out it does not work in some platform. */ -#ifndef LT_DLLAZY_OR_NOW -# ifdef RTLD_LAZY -# define LT_DLLAZY_OR_NOW RTLD_LAZY -# else -# ifdef DL_LAZY -# define LT_DLLAZY_OR_NOW DL_LAZY -# else -# ifdef RTLD_NOW -# define LT_DLLAZY_OR_NOW RTLD_NOW -# else -# ifdef DL_NOW -# define LT_DLLAZY_OR_NOW DL_NOW -# else -# define LT_DLLAZY_OR_NOW 0 -# endif -# endif -# endif -# endif -#endif - -void fnord() { int i=42;} -int main () -{ - void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); - int status = $lt_dlunknown; - - if (self) - { - if (dlsym (self,"fnord")) status = $lt_dlno_uscore; - else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; - /* dlclose (self); */ - } - else - puts (dlerror ()); - - return status; -} -_LT_EOF - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 - (eval $ac_link) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) >&5 2>/dev/null - lt_status=$? - case x$lt_status in - x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; - x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; - x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; - esac - else : - # compilation failed - lt_cv_dlopen_self=no - fi -fi -rm -fr conftest* - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 -$as_echo "$lt_cv_dlopen_self" >&6; } - - if test "x$lt_cv_dlopen_self" = xyes; then - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 -$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } -if test "${lt_cv_dlopen_self_static+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test "$cross_compiling" = yes; then : - lt_cv_dlopen_self_static=cross -else - lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 - lt_status=$lt_dlunknown - cat > conftest.$ac_ext <<_LT_EOF -#line 12198 "configure" -#include "confdefs.h" - -#if HAVE_DLFCN_H -#include -#endif - -#include - -#ifdef RTLD_GLOBAL -# define LT_DLGLOBAL RTLD_GLOBAL -#else -# ifdef DL_GLOBAL -# define LT_DLGLOBAL DL_GLOBAL -# else -# define LT_DLGLOBAL 0 -# endif -#endif - -/* We may have to define LT_DLLAZY_OR_NOW in the command line if we - find out it does not work in some platform. */ -#ifndef LT_DLLAZY_OR_NOW -# ifdef RTLD_LAZY -# define LT_DLLAZY_OR_NOW RTLD_LAZY -# else -# ifdef DL_LAZY -# define LT_DLLAZY_OR_NOW DL_LAZY -# else -# ifdef RTLD_NOW -# define LT_DLLAZY_OR_NOW RTLD_NOW -# else -# ifdef DL_NOW -# define LT_DLLAZY_OR_NOW DL_NOW -# else -# define LT_DLLAZY_OR_NOW 0 -# endif -# endif -# endif -# endif -#endif - -void fnord() { int i=42;} -int main () -{ - void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); - int status = $lt_dlunknown; - - if (self) - { - if (dlsym (self,"fnord")) status = $lt_dlno_uscore; - else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; - /* dlclose (self); */ - } - else - puts (dlerror ()); - - return status; -} -_LT_EOF - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 - (eval $ac_link) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) >&5 2>/dev/null - lt_status=$? - case x$lt_status in - x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; - x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; - x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; - esac - else : - # compilation failed - lt_cv_dlopen_self_static=no - fi -fi -rm -fr conftest* - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 -$as_echo "$lt_cv_dlopen_self_static" >&6; } - fi - - CPPFLAGS="$save_CPPFLAGS" - LDFLAGS="$save_LDFLAGS" - LIBS="$save_LIBS" - ;; - esac - - case $lt_cv_dlopen_self in - yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; - *) enable_dlopen_self=unknown ;; - esac - - case $lt_cv_dlopen_self_static in - yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; - *) enable_dlopen_self_static=unknown ;; - esac -fi - - - - - - - - - - - - - - - - - -striplib= -old_striplib= -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 -$as_echo_n "checking whether stripping libraries is possible... " >&6; } -if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then - test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" - test -z "$striplib" && striplib="$STRIP --strip-unneeded" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -else -# FIXME - insert some real tests, host_os isn't really good enough - case $host_os in - darwin*) - if test -n "$STRIP" ; then - striplib="$STRIP -x" - old_striplib="$STRIP -S" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - fi - ;; - *) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - ;; - esac -fi - - - - - - - - - - - - - # Report which library types will actually be built - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 -$as_echo_n "checking if libtool supports shared libraries... " >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 -$as_echo "$can_build_shared" >&6; } - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 -$as_echo_n "checking whether to build shared libraries... " >&6; } - test "$can_build_shared" = "no" && enable_shared=no - - # On AIX, shared libraries and static libraries use the same namespace, and - # are all built from PIC. - case $host_os in - aix3*) - test "$enable_shared" = yes && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - - aix[4-9]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no - fi - ;; - esac - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 -$as_echo "$enable_shared" >&6; } - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 -$as_echo_n "checking whether to build static libraries... " >&6; } - # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 -$as_echo "$enable_static" >&6; } - - - - -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -CC="$lt_save_CC" - - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - -archive_cmds_need_lc_CXX=no -allow_undefined_flag_CXX= -always_export_symbols_CXX=no -archive_expsym_cmds_CXX= -compiler_needs_object_CXX=no -export_dynamic_flag_spec_CXX= -hardcode_direct_CXX=no -hardcode_direct_absolute_CXX=no -hardcode_libdir_flag_spec_CXX= -hardcode_libdir_flag_spec_ld_CXX= -hardcode_libdir_separator_CXX= -hardcode_minus_L_CXX=no -hardcode_shlibpath_var_CXX=unsupported -hardcode_automatic_CXX=no -inherit_rpath_CXX=no -module_cmds_CXX= -module_expsym_cmds_CXX= -link_all_deplibs_CXX=unknown -old_archive_cmds_CXX=$old_archive_cmds -no_undefined_flag_CXX= -whole_archive_flag_spec_CXX= -enable_shared_with_static_runtimes_CXX=no - -# Source file extension for C++ test sources. -ac_ext=cpp - -# Object file extension for compiled C++ test sources. -objext=o -objext_CXX=$objext - -# No sense in running all these tests if we already determined that -# the CXX compiler isn't working. Some variables (like enable_shared) -# are currently assumed to apply to all compilers on this platform, -# and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_caught_CXX_error" != yes; then - # Code to be used in simple compile tests - lt_simple_compile_test_code="int some_variable = 0;" - - # Code to be used in simple link tests - lt_simple_link_test_code='int main(int, char *[]) { return(0); }' - - # ltmain only uses $CC for tagged configurations so make sure $CC is set. - - - - - - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC - - - # save warnings/boilerplate of simple test code - ac_outfile=conftest.$ac_objext -echo "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$RM conftest* - - ac_outfile=conftest.$ac_objext -echo "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$RM -r conftest* - - - # Allow CC to be a program name with arguments. - lt_save_CC=$CC - lt_save_LD=$LD - lt_save_GCC=$GCC - GCC=$GXX - lt_save_with_gnu_ld=$with_gnu_ld - lt_save_path_LD=$lt_cv_path_LD - if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then - lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx - else - $as_unset lt_cv_prog_gnu_ld - fi - if test -n "${lt_cv_path_LDCXX+set}"; then - lt_cv_path_LD=$lt_cv_path_LDCXX - else - $as_unset lt_cv_path_LD - fi - test -z "${LDCXX+set}" || LD=$LDCXX - CC=${CXX-"c++"} - compiler=$CC - compiler_CXX=$CC - for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` - - - if test -n "$compiler"; then - # We don't want -fno-exception when compiling C++ code, so set the - # no_builtin_flag separately - if test "$GXX" = yes; then - lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' - else - lt_prog_compiler_no_builtin_flag_CXX= - fi - - if test "$GXX" = yes; then - # Set up default GNU C++ configuration - - - -# Check whether --with-gnu-ld was given. -if test "${with_gnu_ld+set}" = set; then : - withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes -else - with_gnu_ld=no -fi - -ac_prog=ld -if test "$GCC" = yes; then - # Check if gcc -print-prog-name=ld gives a path. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 -$as_echo_n "checking for ld used by $CC... " >&6; } - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw - ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $ac_prog in - # Accept absolute paths. - [\\/]* | ?:[\\/]*) - re_direlt='/[^/][^/]*/\.\./' - # Canonicalize the pathname of ld - ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` - while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do - ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` - done - test -z "$LD" && LD="$ac_prog" - ;; - "") - # If it fails, then pretend we aren't using GCC. - ac_prog=ld - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac -elif test "$with_gnu_ld" = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 -$as_echo_n "checking for GNU ld... " >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 -$as_echo_n "checking for non-GNU ld... " >&6; } -fi -if test "${lt_cv_path_LD+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some variants of GNU ld only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$lt_cv_path_LD" -v 2>&1 &5 -$as_echo "$LD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi -test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 -$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -if test "${lt_cv_prog_gnu_ld+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - # I'd rather use --version here, but apparently some GNU lds only accept -v. -case `$LD -v 2>&1 &5 -$as_echo "$lt_cv_prog_gnu_ld" >&6; } -with_gnu_ld=$lt_cv_prog_gnu_ld - - - - - - - - # Check if GNU C++ uses GNU ld as the underlying linker, since the - # archiving commands below assume that GNU ld is being used. - if test "$with_gnu_ld" = yes; then - archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' - - # If archive_cmds runs LD, not CC, wlarc should be empty - # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to - # investigate it a little bit more. (MM) - wlarc='${wl}' - - # ancient GNU ld didn't support --whole-archive et. al. - if eval "`$CC -print-prog-name=ld` --help 2>&1" | - $GREP 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - whole_archive_flag_spec_CXX= - fi - else - with_gnu_ld=no - wlarc= - - # A generic and very simple default shared library creation - # command for GNU C++ for the case where it uses the native - # linker, instead of GNU ld. If possible, this setting should - # overridden to take advantage of the native linker features on - # the platform it is being used on. - archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - fi - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' - - else - GXX=no - with_gnu_ld=no - wlarc= - fi - - # PORTME: fill in a description of your system's C++ link characteristics - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } - ld_shlibs_CXX=yes - case $host_os in - aix3*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - aix[4-9]*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) - for ld_flag in $LDFLAGS; do - case $ld_flag in - *-brtl*) - aix_use_runtimelinking=yes - break - ;; - esac - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - archive_cmds_CXX='' - hardcode_direct_CXX=yes - hardcode_direct_absolute_CXX=yes - hardcode_libdir_separator_CXX=':' - link_all_deplibs_CXX=yes - file_list_spec_CXX='${wl}-f,' - - if test "$GXX" = yes; then - case $host_os in aix4.[012]|aix4.[012].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && - strings "$collect2name" | $GREP resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - hardcode_direct_CXX=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - hardcode_minus_L_CXX=yes - hardcode_libdir_flag_spec_CXX='-L$libdir' - hardcode_libdir_separator_CXX= - fi - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - export_dynamic_flag_spec_CXX='${wl}-bexpall' - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to - # export. - always_export_symbols_CXX=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - allow_undefined_flag_CXX='-berok' - # Determine the default libpath from the value encoded in an empty - # executable. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi - - hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" - - archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' - allow_undefined_flag_CXX="-z nodefs" - archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an - # empty executable. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi - - hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - no_undefined_flag_CXX=' ${wl}-bernotok' - allow_undefined_flag_CXX=' ${wl}-berok' - # Exported symbols can be pulled into shared objects from archives - whole_archive_flag_spec_CXX='$convenience' - archive_cmds_need_lc_CXX=yes - # This is similar to how AIX traditionally builds its shared - # libraries. - archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - beos*) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - allow_undefined_flag_CXX=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - ld_shlibs_CXX=no - fi - ;; - - chorus*) - case $cc_basename in - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, - # as there is no search path for DLLs. - hardcode_libdir_flag_spec_CXX='-L$libdir' - allow_undefined_flag_CXX=unsupported - always_export_symbols_CXX=no - enable_shared_with_static_runtimes_CXX=yes - - if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - ld_shlibs_CXX=no - fi - ;; - darwin* | rhapsody*) - - - archive_cmds_need_lc_CXX=no - hardcode_direct_CXX=no - hardcode_automatic_CXX=yes - hardcode_shlibpath_var_CXX=unsupported - whole_archive_flag_spec_CXX='' - link_all_deplibs_CXX=yes - allow_undefined_flag_CXX="$_lt_dar_allow_undefined" - case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; - *) _lt_dar_can_shared=$GCC ;; - esac - if test "$_lt_dar_can_shared" = "yes"; then - output_verbose_link_cmd=echo - archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" - if test "$lt_cv_apple_cc_single_mod" != "yes"; then - archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" - archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" - fi - - else - ld_shlibs_CXX=no - fi - - ;; - - dgux*) - case $cc_basename in - ec++*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - ghcx*) - # Green Hills C++ Compiler - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - ;; - - freebsd[12]*) - # C++ shared libraries reported to be fairly broken before - # switch to ELF - ld_shlibs_CXX=no - ;; - - freebsd-elf*) - archive_cmds_need_lc_CXX=no - ;; - - freebsd* | dragonfly*) - # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF - # conventions - ld_shlibs_CXX=yes - ;; - - gnu*) - ;; - - hpux9*) - hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' - hardcode_libdir_separator_CXX=: - export_dynamic_flag_spec_CXX='${wl}-E' - hardcode_direct_CXX=yes - hardcode_minus_L_CXX=yes # Not in the search PATH, - # but as the default - # location of the library. - - case $cc_basename in - CC*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - aCC*) - archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' - ;; - *) - if test "$GXX" = yes; then - archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - fi - ;; - esac - ;; - - hpux10*|hpux11*) - if test $with_gnu_ld = no; then - hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' - hardcode_libdir_separator_CXX=: - - case $host_cpu in - hppa*64*|ia64*) - ;; - *) - export_dynamic_flag_spec_CXX='${wl}-E' - ;; - esac - fi - case $host_cpu in - hppa*64*|ia64*) - hardcode_direct_CXX=no - hardcode_shlibpath_var_CXX=no - ;; - *) - hardcode_direct_CXX=yes - hardcode_direct_absolute_CXX=yes - hardcode_minus_L_CXX=yes # Not in the search PATH, - # but as the default - # location of the library. - ;; - esac - - case $cc_basename in - CC*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - aCC*) - case $host_cpu in - hppa*64*) - archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - esac - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' - ;; - *) - if test "$GXX" = yes; then - if test $with_gnu_ld = no; then - case $host_cpu in - hppa*64*) - archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - esac - fi - else - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - fi - ;; - esac - ;; - - interix[3-9]*) - hardcode_direct_CXX=no - hardcode_shlibpath_var_CXX=no - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - export_dynamic_flag_spec_CXX='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - irix5* | irix6*) - case $cc_basename in - CC*) - # SGI C++ - archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - - # Archives containing C++ object files must be created using - # "CC -ar", where "CC" is the IRIX C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' - ;; - *) - if test "$GXX" = yes; then - if test "$with_gnu_ld" = no; then - archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` -o $lib' - fi - fi - link_all_deplibs_CXX=yes - ;; - esac - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_CXX=: - inherit_rpath_CXX=yes - ;; - - linux* | k*bsd*-gnu | kopensolaris*-gnu) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' - - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' - - # Archives containing C++ object files must be created using - # "CC -Bstatic", where "CC" is the KAI C++ compiler. - old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' - ;; - icpc* | ecpc* ) - # Intel C++ - with_gnu_ld=yes - # version 8.0 and above of icpc choke on multiply defined symbols - # if we add $predep_objects and $postdep_objects, however 7.1 and - # earlier do not add the objects themselves. - case `$CC -V 2>&1` in - *"Version 7."*) - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - ;; - *) # Version 8.0 or newer - tmp_idyn= - case $host_cpu in - ia64*) tmp_idyn=' -i_dynamic';; - esac - archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - ;; - esac - archive_cmds_need_lc_CXX=no - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' - whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' - ;; - pgCC* | pgcpp*) - # Portland Group C++ compiler - case `$CC -V` in - *pgCC\ [1-5]* | *pgcpp\ [1-5]*) - prelink_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ - compile_command="$compile_command `find $tpldir -name \*.o | $NL2SP`"' - old_archive_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ - $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | $NL2SP`~ - $RANLIB $oldlib' - archive_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' - archive_expsym_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' - ;; - *) # Version 6 will use weak symbols - archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' - ;; - esac - - hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' - whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' - ;; - cxx*) - # Compaq C++ - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' - - runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec_CXX='-rpath $libdir' - hardcode_libdir_separator_CXX=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' - ;; - xl*) - # IBM XL 8.0 on PPC, with GNU ld - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' - archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then - archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - no_undefined_flag_CXX=' -zdefs' - archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' - hardcode_libdir_flag_spec_CXX='-R$libdir' - whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' - compiler_needs_object_CXX=yes - - # Not sure whether something based on - # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 - # would be better. - output_verbose_link_cmd='echo' - - # Archives containing C++ object files must be created using - # "CC -xar", where "CC" is the Sun C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' - ;; - esac - ;; - esac - ;; - - lynxos*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - - m88k*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - - mvs*) - case $cc_basename in - cxx*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' - wlarc= - hardcode_libdir_flag_spec_CXX='-R$libdir' - hardcode_direct_CXX=yes - hardcode_shlibpath_var_CXX=no - fi - # Workaround some broken pre-1.5 toolchains - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' - ;; - - *nto* | *qnx*) - ld_shlibs_CXX=yes - ;; - - openbsd2*) - # C++ shared libraries are fairly broken - ld_shlibs_CXX=no - ;; - - openbsd*) - if test -f /usr/libexec/ld.so; then - hardcode_direct_CXX=yes - hardcode_shlibpath_var_CXX=no - hardcode_direct_absolute_CXX=yes - archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' - export_dynamic_flag_spec_CXX='${wl}-E' - whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - fi - output_verbose_link_cmd=echo - else - ld_shlibs_CXX=no - fi - ;; - - osf3* | osf4* | osf5*) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - hardcode_libdir_separator_CXX=: - - # Archives containing C++ object files must be created using - # the KAI C++ compiler. - case $host in - osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; - *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; - esac - ;; - RCC*) - # Rational C++ 2.4.1 - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - cxx*) - case $host in - osf3*) - allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && $ECHO "X${wl}-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' - ;; - *) - allow_undefined_flag_CXX=' -expect_unresolved \*' - archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ - echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~ - $RM $lib.exp' - hardcode_libdir_flag_spec_CXX='-rpath $libdir' - ;; - esac - - hardcode_libdir_separator_CXX=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' - ;; - *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' - case $host in - osf3*) - archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - ;; - *) - archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - ;; - esac - - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_CXX=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' - - else - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - fi - ;; - esac - ;; - - psos*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - lcc*) - # Lucid - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - ;; - - solaris*) - case $cc_basename in - CC*) - # Sun C++ 4.2, 5.x and Centerline C++ - archive_cmds_need_lc_CXX=yes - no_undefined_flag_CXX=' -zdefs' - archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' - - hardcode_libdir_flag_spec_CXX='-R$libdir' - hardcode_shlibpath_var_CXX=no - case $host_os in - solaris2.[0-5] | solaris2.[0-5].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. - # Supported since Solaris 2.6 (maybe 2.5.1?) - whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' - ;; - esac - link_all_deplibs_CXX=yes - - output_verbose_link_cmd='echo' - - # Archives containing C++ object files must be created using - # "CC -xar", where "CC" is the Sun C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' - ;; - gcx*) - # Green Hills C++ Compiler - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - - # The C++ compiler must be used to create the archive. - old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' - ;; - *) - # GNU C++ compiler with Solaris linker - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - no_undefined_flag_CXX=' ${wl}-z ${wl}defs' - if $CC --version | $GREP -v '^2\.7' > /dev/null; then - archive_cmds_CXX='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' - else - # g++ 2.7 appears to require `-G' NOT `-shared' on this - # platform. - archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' - fi - - hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' - case $host_os in - solaris2.[0-5] | solaris2.[0-5].*) ;; - *) - whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' - ;; - esac - fi - ;; - esac - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag_CXX='${wl}-z,text' - archive_cmds_need_lc_CXX=no - hardcode_shlibpath_var_CXX=no - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - no_undefined_flag_CXX='${wl}-z,text' - allow_undefined_flag_CXX='${wl}-z,nodefs' - archive_cmds_need_lc_CXX=no - hardcode_shlibpath_var_CXX=no - hardcode_libdir_flag_spec_CXX='${wl}-R,$libdir' - hardcode_libdir_separator_CXX=':' - link_all_deplibs_CXX=yes - export_dynamic_flag_spec_CXX='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - ;; - - vxworks*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 -$as_echo "$ld_shlibs_CXX" >&6; } - test "$ld_shlibs_CXX" = no && can_build_shared=no - - GCC_CXX="$GXX" - LD_CXX="$LD" - - ## CAVEAT EMPTOR: - ## There is no encapsulation within the following macros, do not change - ## the running order or otherwise move them around unless you know exactly - ## what you are doing... - # Dependencies to place before and after the object being linked: -predep_objects_CXX= -postdep_objects_CXX= -predeps_CXX= -postdeps_CXX= -compiler_lib_search_path_CXX= - -cat > conftest.$ac_ext <<_LT_EOF -class Foo -{ -public: - Foo (void) { a = 0; } -private: - int a; -}; -_LT_EOF - -if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - # Parse the compiler output and extract the necessary - # objects, libraries and library flags. - - # Sentinel used to keep track of whether or not we are before - # the conftest object file. - pre_test_object_deps_done=no - - for p in `eval "$output_verbose_link_cmd"`; do - case $p in - - -L* | -R* | -l*) - # Some compilers place space between "-{L,R}" and the path. - # Remove the space. - if test $p = "-L" || - test $p = "-R"; then - prev=$p - continue - else - prev= - fi - - if test "$pre_test_object_deps_done" = no; then - case $p in - -L* | -R*) - # Internal compiler library paths should come after those - # provided the user. The postdeps already come after the - # user supplied libs so there is no need to process them. - if test -z "$compiler_lib_search_path_CXX"; then - compiler_lib_search_path_CXX="${prev}${p}" - else - compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" - fi - ;; - # The "-l" case would never come before the object being - # linked, so don't bother handling this case. - esac - else - if test -z "$postdeps_CXX"; then - postdeps_CXX="${prev}${p}" - else - postdeps_CXX="${postdeps_CXX} ${prev}${p}" - fi - fi - ;; - - *.$objext) - # This assumes that the test object file only shows up - # once in the compiler output. - if test "$p" = "conftest.$objext"; then - pre_test_object_deps_done=yes - continue - fi - - if test "$pre_test_object_deps_done" = no; then - if test -z "$predep_objects_CXX"; then - predep_objects_CXX="$p" - else - predep_objects_CXX="$predep_objects_CXX $p" - fi - else - if test -z "$postdep_objects_CXX"; then - postdep_objects_CXX="$p" - else - postdep_objects_CXX="$postdep_objects_CXX $p" - fi - fi - ;; - - *) ;; # Ignore the rest. - - esac - done - - # Clean up. - rm -f a.out a.exe -else - echo "libtool.m4: error: problem compiling CXX test program" -fi - -$RM -f confest.$objext - -# PORTME: override above test on systems where it is broken -case $host_os in -interix[3-9]*) - # Interix 3.5 installs completely hosed .la files for C++, so rather than - # hack all around it, let's just trust "g++" to DTRT. - predep_objects_CXX= - postdep_objects_CXX= - postdeps_CXX= - ;; - -linux*) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - if test "$solaris_use_stlport4" != yes; then - postdeps_CXX='-library=Cstd -library=Crun' - fi - ;; - esac - ;; - -solaris*) - case $cc_basename in - CC*) - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - # Adding this requires a known-good setup of shared libraries for - # Sun compiler versions before 5.6, else PIC objects from an old - # archive will be linked into the output, leading to subtle bugs. - if test "$solaris_use_stlport4" != yes; then - postdeps_CXX='-library=Cstd -library=Crun' - fi - ;; - esac - ;; -esac - - -case " $postdeps_CXX " in -*" -lc "*) archive_cmds_need_lc_CXX=no ;; -esac - compiler_lib_search_dirs_CXX= -if test -n "${compiler_lib_search_path_CXX}"; then - compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` -fi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - lt_prog_compiler_wl_CXX= -lt_prog_compiler_pic_CXX= -lt_prog_compiler_static_CXX= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 -$as_echo_n "checking for $compiler option to produce PIC... " >&6; } - - # C++ specific cases for pic, static, wl, etc. - if test "$GXX" = yes; then - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static_CXX='-Bstatic' - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - lt_prog_compiler_pic_CXX='-fPIC' - ;; - m68k) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' - ;; - esac - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - mingw* | cygwin* | os2* | pw32* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - lt_prog_compiler_pic_CXX='-DDLL_EXPORT' - ;; - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - lt_prog_compiler_pic_CXX='-fno-common' - ;; - *djgpp*) - # DJGPP does not support shared libraries at all - lt_prog_compiler_pic_CXX= - ;; - interix[3-9]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - sysv4*MP*) - if test -d /usr/nec; then - lt_prog_compiler_pic_CXX=-Kconform_pic - fi - ;; - hpux*) - # PIC is the default for 64-bit PA HP-UX, but not for 32-bit - # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag - # sets the default TLS model and affects inlining. - case $host_cpu in - hppa*64*) - ;; - *) - lt_prog_compiler_pic_CXX='-fPIC' - ;; - esac - ;; - *qnx* | *nto*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - lt_prog_compiler_pic_CXX='-fPIC -shared' - ;; - *) - lt_prog_compiler_pic_CXX='-fPIC' - ;; - esac - else - case $host_os in - aix[4-9]*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static_CXX='-Bstatic' - else - lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' - fi - ;; - chorus*) - case $cc_basename in - cxch68*) - # Green Hills C++ Compiler - # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" - ;; - esac - ;; - dgux*) - case $cc_basename in - ec++*) - lt_prog_compiler_pic_CXX='-KPIC' - ;; - ghcx*) - # Green Hills C++ Compiler - lt_prog_compiler_pic_CXX='-pic' - ;; - *) - ;; - esac - ;; - freebsd* | dragonfly*) - # FreeBSD uses GNU C++ - ;; - hpux9* | hpux10* | hpux11*) - case $cc_basename in - CC*) - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' - if test "$host_cpu" != ia64; then - lt_prog_compiler_pic_CXX='+Z' - fi - ;; - aCC*) - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic_CXX='+Z' - ;; - esac - ;; - *) - ;; - esac - ;; - interix*) - # This is c89, which is MS Visual C++ (no shared libs) - # Anyone wants to do a port? - ;; - irix5* | irix6* | nonstopux*) - case $cc_basename in - CC*) - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='-non_shared' - # CC pic flag -KPIC is the default. - ;; - *) - ;; - esac - ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) - case $cc_basename in - KCC*) - # KAI C++ Compiler - lt_prog_compiler_wl_CXX='--backend -Wl,' - lt_prog_compiler_pic_CXX='-fPIC' - ;; - ecpc* ) - # old Intel C++ for x86_64 which still supported -KPIC. - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_pic_CXX='-KPIC' - lt_prog_compiler_static_CXX='-static' - ;; - icpc* ) - # Intel C++, used to be incompatible with GCC. - # ICC 10 doesn't accept -KPIC any more. - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_pic_CXX='-fPIC' - lt_prog_compiler_static_CXX='-static' - ;; - pgCC* | pgcpp*) - # Portland Group C++ compiler - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_pic_CXX='-fpic' - lt_prog_compiler_static_CXX='-Bstatic' - ;; - cxx*) - # Compaq C++ - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - lt_prog_compiler_pic_CXX= - lt_prog_compiler_static_CXX='-non_shared' - ;; - xlc* | xlC*) - # IBM XL 8.0 on PPC - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_pic_CXX='-qpic' - lt_prog_compiler_static_CXX='-qstaticlink' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - lt_prog_compiler_pic_CXX='-KPIC' - lt_prog_compiler_static_CXX='-Bstatic' - lt_prog_compiler_wl_CXX='-Qoption ld ' - ;; - esac - ;; - esac - ;; - lynxos*) - ;; - m88k*) - ;; - mvs*) - case $cc_basename in - cxx*) - lt_prog_compiler_pic_CXX='-W c,exportall' - ;; - *) - ;; - esac - ;; - netbsd* | netbsdelf*-gnu) - ;; - *qnx* | *nto*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - lt_prog_compiler_pic_CXX='-fPIC -shared' - ;; - osf3* | osf4* | osf5*) - case $cc_basename in - KCC*) - lt_prog_compiler_wl_CXX='--backend -Wl,' - ;; - RCC*) - # Rational C++ 2.4.1 - lt_prog_compiler_pic_CXX='-pic' - ;; - cxx*) - # Digital/Compaq C++ - lt_prog_compiler_wl_CXX='-Wl,' - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - lt_prog_compiler_pic_CXX= - lt_prog_compiler_static_CXX='-non_shared' - ;; - *) - ;; - esac - ;; - psos*) - ;; - solaris*) - case $cc_basename in - CC*) - # Sun C++ 4.2, 5.x and Centerline C++ - lt_prog_compiler_pic_CXX='-KPIC' - lt_prog_compiler_static_CXX='-Bstatic' - lt_prog_compiler_wl_CXX='-Qoption ld ' - ;; - gcx*) - # Green Hills C++ Compiler - lt_prog_compiler_pic_CXX='-PIC' - ;; - *) - ;; - esac - ;; - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - lt_prog_compiler_pic_CXX='-pic' - lt_prog_compiler_static_CXX='-Bstatic' - ;; - lcc*) - # Lucid - lt_prog_compiler_pic_CXX='-pic' - ;; - *) - ;; - esac - ;; - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - case $cc_basename in - CC*) - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_pic_CXX='-KPIC' - lt_prog_compiler_static_CXX='-Bstatic' - ;; - esac - ;; - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - lt_prog_compiler_pic_CXX='-KPIC' - ;; - *) - ;; - esac - ;; - vxworks*) - ;; - *) - lt_prog_compiler_can_build_shared_CXX=no - ;; - esac - fi - -case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: - *djgpp*) - lt_prog_compiler_pic_CXX= - ;; - *) - lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic_CXX" >&5 -$as_echo "$lt_prog_compiler_pic_CXX" >&6; } - - - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$lt_prog_compiler_pic_CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 -$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } -if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_pic_works_CXX=no - ac_outfile=conftest.$ac_objext - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:14154: $lt_compile\"" >&5) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&5 - echo "$as_me:14158: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_pic_works_CXX=yes - fi - fi - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 -$as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } - -if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then - case $lt_prog_compiler_pic_CXX in - "" | " "*) ;; - *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; - esac -else - lt_prog_compiler_pic_CXX= - lt_prog_compiler_can_build_shared_CXX=no -fi - -fi - - - -# -# Check to make sure the static flag actually works. -# -wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 -$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -if test "${lt_cv_prog_compiler_static_works_CXX+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_static_works_CXX=no - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS $lt_tmp_static_flag" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&5 - $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_static_works_CXX=yes - fi - else - lt_cv_prog_compiler_static_works_CXX=yes - fi - fi - $RM -r conftest* - LDFLAGS="$save_LDFLAGS" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 -$as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } - -if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then - : -else - lt_prog_compiler_static_CXX= -fi - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o_CXX=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:14253: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:14257: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o_CXX=yes - fi - fi - chmod u+w . 2>&5 - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 -$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o_CXX=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:14305: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:14309: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o_CXX=yes - fi - fi - chmod u+w . 2>&5 - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 -$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } - - - - -hard_links="nottested" -if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then - # do not overwrite the value of need_locks provided by the user - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 -$as_echo_n "checking if we can lock with hard links... " >&6; } - hard_links=yes - $RM conftest* - ln conftest.a conftest.b 2>/dev/null && hard_links=no - touch conftest.a - ln conftest.a conftest.b 2>&5 || hard_links=no - ln conftest.a conftest.b 2>/dev/null && hard_links=no - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 -$as_echo "$hard_links" >&6; } - if test "$hard_links" = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} - need_locks=warn - fi -else - need_locks=no -fi - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } - - export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - case $host_os in - aix[4-9]*) - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - else - export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - fi - ;; - pw32*) - export_symbols_cmds_CXX="$ltdll_cmds" - ;; - cygwin* | mingw* | cegcc*) - export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;/^.*[ ]__nm__/s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' - ;; - linux* | k*bsd*-gnu) - link_all_deplibs_CXX=no - ;; - *) - export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - ;; - esac - exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 -$as_echo "$ld_shlibs_CXX" >&6; } -test "$ld_shlibs_CXX" = no && can_build_shared=no - -with_gnu_ld_CXX=$with_gnu_ld - - - - - - -# -# Do we need to explicitly link libc? -# -case "x$archive_cmds_need_lc_CXX" in -x|xyes) - # Assume -lc should be added - archive_cmds_need_lc_CXX=yes - - if test "$enable_shared" = yes && test "$GCC" = yes; then - case $archive_cmds_CXX in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 -$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } - $RM conftest* - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } 2>conftest.err; then - soname=conftest - lib=conftest - libobjs=conftest.$ac_objext - deplibs= - wl=$lt_prog_compiler_wl_CXX - pic_flag=$lt_prog_compiler_pic_CXX - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$allow_undefined_flag_CXX - allow_undefined_flag_CXX= - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 - (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - then - archive_cmds_need_lc_CXX=no - else - archive_cmds_need_lc_CXX=yes - fi - allow_undefined_flag_CXX=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $RM conftest* - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc_CXX" >&5 -$as_echo "$archive_cmds_need_lc_CXX" >&6; } - ;; - esac - fi - ;; -esac - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 -$as_echo_n "checking dynamic linker characteristics... " >&6; } - -library_names_spec= -libname_spec='lib$name' -soname_spec= -shrext_cmds=".so" -postinstall_cmds= -postuninstall_cmds= -finish_cmds= -finish_eval= -shlibpath_var= -shlibpath_overrides_runpath=unknown -version_type=none -dynamic_linker="$host_os ld.so" -sys_lib_dlsearch_path_spec="/lib /usr/lib" -need_lib_prefix=unknown -hardcode_into_libs=no - -# when you set need_version to no, make sure it does not cause -set_version -# flags to be left without arguments -need_version=unknown - -case $host_os in -aix3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' - ;; - -aix[4-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - hardcode_into_libs=yes - if test "$host_cpu" = ia64; then - # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - else - # With GCC up to 2.95.x, collect2 would create an import file - # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in - # development snapshots of GCC prior to 3.0. - case $host_os in - aix4 | aix4.[01] | aix4.[01].*) - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' - echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then - : - else - can_build_shared=no - fi - ;; - esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct - # soname into executable. Probably we can add versioning support to - # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then - # If using run time linking (on AIX 4.2 or later) use lib.so - # instead of lib.a to let people know that these are not - # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else - # We preserve .a as extension for shared libraries through AIX4.2 - # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi - shlibpath_var=LIBPATH - fi - ;; - -amigaos*) - case $host_cpu in - powerpc) - # Since July 2007 AmigaOS4 officially supports .so libraries. - # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - ;; - m68k) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; - esac - ;; - -beos*) - library_names_spec='${libname}${shared_ext}' - dynamic_linker="$host_os ld.so" - shlibpath_var=LIBRARY_PATH - ;; - -bsdi[45]*) - version_type=linux - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; - -cygwin* | mingw* | pw32* | cegcc*) - version_type=windows - shrext_cmds=".dll" - need_version=no - need_lib_prefix=no - - case $GCC,$host_os in - yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname~ - if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then - eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; - fi' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - shlibpath_overrides_runpath=yes - - case $host_os in - cygwin*) - # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" - ;; - mingw* | cegcc*) - # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then - # It is most probably a Windows format PATH printed by - # mingw gcc, but we are running on Cygwin. Gcc prints its search - # path with ; separators, and with drive letters. We can handle the - # drive letters (cygwin fileutils understands them), so leave them, - # especially as we might pass files found there to a mingw objdump, - # which wouldn't understand a cygwinified path. Ahh. - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - ;; - pw32*) - # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - ;; - esac - ;; - - *) - library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' - ;; - esac - dynamic_linker='Win32 ld.exe' - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; - -darwin* | rhapsody*) - dynamic_linker="$host_os dyld" - version_type=darwin - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' - shlibpath_overrides_runpath=yes - shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' - - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' - ;; - -dgux*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -freebsd1*) - dynamic_linker=no - ;; - -freebsd* | dragonfly*) - # DragonFly does not have aout. When/if they implement a new - # versioning mechanism, adjust this. - if test -x /usr/bin/objformat; then - objformat=`/usr/bin/objformat` - else - case $host_os in - freebsd[123]*) objformat=aout ;; - *) objformat=elf ;; - esac - fi - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - need_version=no - need_lib_prefix=no - ;; - freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' - need_version=yes - ;; - esac - shlibpath_var=LD_LIBRARY_PATH - case $host_os in - freebsd2*) - shlibpath_overrides_runpath=yes - ;; - freebsd3.[01]* | freebsdelf3.[01]*) - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ - freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - *) # from 4.6 on, and DragonFly - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - esac - ;; - -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - ;; - -hpux9* | hpux10* | hpux11*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - version_type=sunos - need_lib_prefix=no - need_version=no - case $host_cpu in - ia64*) - shrext_cmds='.so' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.so" - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - else - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - ;; - esac - # HP-UX runs *really* slowly unless shared libraries are mode 555. - postinstall_cmds='chmod 555 $lib' - ;; - -interix[3-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -irix5* | irix6* | nonstopux*) - case $host_os in - nonstopux*) version_type=nonstopux ;; - *) - if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux - else - version_type=irix - fi ;; - esac - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' - case $host_os in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in # libtool.m4 will add one of these switches to LD - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") - libsuff= shlibsuff= libmagic=32-bit;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") - libsuff=32 shlibsuff=N32 libmagic=N32;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") - libsuff=64 shlibsuff=64 libmagic=64-bit;; - *) libsuff= shlibsuff= libmagic=never-match;; - esac - ;; - esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - hardcode_into_libs=yes - ;; - -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - # Some binutils ld are patched to set DT_RUNPATH - save_LDFLAGS=$LDFLAGS - save_libdir=$libdir - eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \ - LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : - shlibpath_overrides_runpath=yes -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$save_LDFLAGS - libdir=$save_libdir - - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - # Append ld.so.conf contents to the search path - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" - fi - - # We used to test for /lib/ld.so.1 and disable shared libraries on - # powerpc, because MkLinux only supported shared libraries with the - # GNU dynamic linker. Since this was broken with cross compilers, - # most powerpc-linux boxes support dynamic linking these days and - # people can always --disable-shared, the test was removed, and we - # assume the GNU/Linux dynamic linker is in use. - dynamic_linker='GNU/Linux ld.so' - ;; - -netbsdelf*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='NetBSD ld.elf_so' - ;; - -netbsd*) - version_type=sunos - need_lib_prefix=no - need_version=no - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - dynamic_linker='NetBSD (a.out) ld.so' - else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='NetBSD ld.elf_so' - fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - -newsos6) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -*nto* | *qnx*) - version_type=qnx - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='ldqnx.so' - ;; - -openbsd*) - version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" - need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[89] | openbsd2.[89].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi - ;; - -os2*) - libname_spec='$name' - shrext_cmds=".dll" - need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH - ;; - -osf3* | osf4* | osf5*) - version_type=osf - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" - ;; - -rdos*) - dynamic_linker=no - ;; - -solaris*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - # ldd complains unless libraries are executable - postinstall_cmds='chmod +x $lib' - ;; - -sunos4*) - version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then - need_lib_prefix=no - fi - need_version=yes - ;; - -sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - case $host_vendor in - sni) - shlibpath_overrides_runpath=no - need_lib_prefix=no - runpath_var=LD_RUN_PATH - ;; - siemens) - need_lib_prefix=no - ;; - motorola) - need_lib_prefix=no - need_version=no - shlibpath_overrides_runpath=no - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' - ;; - esac - ;; - -sysv4*MP*) - if test -d /usr/nec ;then - version_type=linux - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' - shlibpath_var=LD_LIBRARY_PATH - fi - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then - sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - case $host_os in - sco3.2v5*) - sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" - ;; - esac - fi - sys_lib_dlsearch_path_spec='/usr/lib' - ;; - -tpf*) - # TPF is a cross-target only. Preferred cross-host = GNU/Linux. - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -uts4*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -*) - dynamic_linker=no - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 -$as_echo "$dynamic_linker" >&6; } -test "$dynamic_linker" = no && can_build_shared=no - -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -fi - -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" -fi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 -$as_echo_n "checking how to hardcode library paths into programs... " >&6; } -hardcode_action_CXX= -if test -n "$hardcode_libdir_flag_spec_CXX" || - test -n "$runpath_var_CXX" || - test "X$hardcode_automatic_CXX" = "Xyes" ; then - - # We can hardcode non-existent directories. - if test "$hardcode_direct_CXX" != no && - # If the only mechanism to avoid hardcoding is shlibpath_var, we - # have to relink, otherwise we might link with an installed library - # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" != no && - test "$hardcode_minus_L_CXX" != no; then - # Linking always hardcodes the temporary library directory. - hardcode_action_CXX=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - hardcode_action_CXX=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - hardcode_action_CXX=unsupported -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 -$as_echo "$hardcode_action_CXX" >&6; } - -if test "$hardcode_action_CXX" = relink || - test "$inherit_rpath_CXX" = yes; then - # Fast installation is not supported - enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then - # Fast installation is not necessary - enable_fast_install=needless -fi - - - - - - - - fi # test -n "$compiler" - - CC=$lt_save_CC - LDCXX=$LD - LD=$lt_save_LD - GCC=$lt_save_GCC - with_gnu_ld=$lt_save_with_gnu_ld - lt_cv_path_LDCXX=$lt_cv_path_LD - lt_cv_path_LD=$lt_save_path_LD - lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld - lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -fi # test "$_lt_caught_CXX_error" != yes - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - - ac_ext=f -ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' -ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_f77_compiler_gnu - - -archive_cmds_need_lc_F77=no -allow_undefined_flag_F77= -always_export_symbols_F77=no -archive_expsym_cmds_F77= -export_dynamic_flag_spec_F77= -hardcode_direct_F77=no -hardcode_direct_absolute_F77=no -hardcode_libdir_flag_spec_F77= -hardcode_libdir_flag_spec_ld_F77= -hardcode_libdir_separator_F77= -hardcode_minus_L_F77=no -hardcode_automatic_F77=no -inherit_rpath_F77=no -module_cmds_F77= -module_expsym_cmds_F77= -link_all_deplibs_F77=unknown -old_archive_cmds_F77=$old_archive_cmds -no_undefined_flag_F77= -whole_archive_flag_spec_F77= -enable_shared_with_static_runtimes_F77=no - -# Source file extension for f77 test sources. -ac_ext=f - -# Object file extension for compiled f77 test sources. -objext=o -objext_F77=$objext - -# No sense in running all these tests if we already determined that -# the F77 compiler isn't working. Some variables (like enable_shared) -# are currently assumed to apply to all compilers on this platform, -# and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_disable_F77" != yes; then - # Code to be used in simple compile tests - lt_simple_compile_test_code="\ - subroutine t - return - end -" - - # Code to be used in simple link tests - lt_simple_link_test_code="\ - program t - end -" - - # ltmain only uses $CC for tagged configurations so make sure $CC is set. - - - - - - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC - - - # save warnings/boilerplate of simple test code - ac_outfile=conftest.$ac_objext -echo "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$RM conftest* - - ac_outfile=conftest.$ac_objext -echo "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$RM -r conftest* - - - # Allow CC to be a program name with arguments. - lt_save_CC="$CC" - lt_save_GCC=$GCC - CC=${F77-"f77"} - compiler=$CC - compiler_F77=$CC - for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` - - GCC=$G77 - if test -n "$compiler"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 -$as_echo_n "checking if libtool supports shared libraries... " >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 -$as_echo "$can_build_shared" >&6; } - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 -$as_echo_n "checking whether to build shared libraries... " >&6; } - test "$can_build_shared" = "no" && enable_shared=no - - # On AIX, shared libraries and static libraries use the same namespace, and - # are all built from PIC. - case $host_os in - aix3*) - test "$enable_shared" = yes && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - aix[4-9]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no - fi - ;; - esac - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 -$as_echo "$enable_shared" >&6; } - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 -$as_echo_n "checking whether to build static libraries... " >&6; } - # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 -$as_echo "$enable_static" >&6; } - - GCC_F77="$G77" - LD_F77="$LD" - - ## CAVEAT EMPTOR: - ## There is no encapsulation within the following macros, do not change - ## the running order or otherwise move them around unless you know exactly - ## what you are doing... - lt_prog_compiler_wl_F77= -lt_prog_compiler_pic_F77= -lt_prog_compiler_static_F77= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 -$as_echo_n "checking for $compiler option to produce PIC... " >&6; } - - if test "$GCC" = yes; then - lt_prog_compiler_wl_F77='-Wl,' - lt_prog_compiler_static_F77='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static_F77='-Bstatic' - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - lt_prog_compiler_pic_F77='-fPIC' - ;; - m68k) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - lt_prog_compiler_pic_F77='-m68020 -resident32 -malways-restore-a4' - ;; - esac - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - - mingw* | cygwin* | pw32* | os2* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - lt_prog_compiler_pic_F77='-DDLL_EXPORT' - ;; - - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - lt_prog_compiler_pic_F77='-fno-common' - ;; - - hpux*) - # PIC is the default for 64-bit PA HP-UX, but not for 32-bit - # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag - # sets the default TLS model and affects inlining. - case $host_cpu in - hppa*64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic_F77='-fPIC' - ;; - esac - ;; - - interix[3-9]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - - msdosdjgpp*) - # Just because we use GCC doesn't mean we suddenly get shared libraries - # on systems that don't support them. - lt_prog_compiler_can_build_shared_F77=no - enable_shared=no - ;; - - *nto* | *qnx*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - lt_prog_compiler_pic_F77='-fPIC -shared' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - lt_prog_compiler_pic_F77=-Kconform_pic - fi - ;; - - *) - lt_prog_compiler_pic_F77='-fPIC' - ;; - esac - else - # PORTME Check for flag to pass linker flags through the system compiler. - case $host_os in - aix*) - lt_prog_compiler_wl_F77='-Wl,' - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static_F77='-Bstatic' - else - lt_prog_compiler_static_F77='-bnso -bI:/lib/syscalls.exp' - fi - ;; - - mingw* | cygwin* | pw32* | os2* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - lt_prog_compiler_pic_F77='-DDLL_EXPORT' - ;; - - hpux9* | hpux10* | hpux11*) - lt_prog_compiler_wl_F77='-Wl,' - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic_F77='+Z' - ;; - esac - # Is there a better lt_prog_compiler_static that works with the bundled CC? - lt_prog_compiler_static_F77='${wl}-a ${wl}archive' - ;; - - irix5* | irix6* | nonstopux*) - lt_prog_compiler_wl_F77='-Wl,' - # PIC (with -KPIC) is the default. - lt_prog_compiler_static_F77='-non_shared' - ;; - - linux* | k*bsd*-gnu | kopensolaris*-gnu) - case $cc_basename in - # old Intel for x86_64 which still supported -KPIC. - ecc*) - lt_prog_compiler_wl_F77='-Wl,' - lt_prog_compiler_pic_F77='-KPIC' - lt_prog_compiler_static_F77='-static' - ;; - # icc used to be incompatible with GCC. - # ICC 10 doesn't accept -KPIC any more. - icc* | ifort*) - lt_prog_compiler_wl_F77='-Wl,' - lt_prog_compiler_pic_F77='-fPIC' - lt_prog_compiler_static_F77='-static' - ;; - # Lahey Fortran 8.1. - lf95*) - lt_prog_compiler_wl_F77='-Wl,' - lt_prog_compiler_pic_F77='--shared' - lt_prog_compiler_static_F77='--static' - ;; - pgcc* | pgf77* | pgf90* | pgf95*) - # Portland Group compilers (*not* the Pentium gcc compiler, - # which looks to be a dead project) - lt_prog_compiler_wl_F77='-Wl,' - lt_prog_compiler_pic_F77='-fpic' - lt_prog_compiler_static_F77='-Bstatic' - ;; - ccc*) - lt_prog_compiler_wl_F77='-Wl,' - # All Alpha code is PIC. - lt_prog_compiler_static_F77='-non_shared' - ;; - xl*) - # IBM XL C 8.0/Fortran 10.1 on PPC - lt_prog_compiler_wl_F77='-Wl,' - lt_prog_compiler_pic_F77='-qpic' - lt_prog_compiler_static_F77='-qstaticlink' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C 5.9 - lt_prog_compiler_pic_F77='-KPIC' - lt_prog_compiler_static_F77='-Bstatic' - lt_prog_compiler_wl_F77='-Wl,' - ;; - *Sun\ F*) - # Sun Fortran 8.3 passes all unrecognized flags to the linker - lt_prog_compiler_pic_F77='-KPIC' - lt_prog_compiler_static_F77='-Bstatic' - lt_prog_compiler_wl_F77='' - ;; - esac - ;; - esac - ;; - - newsos6) - lt_prog_compiler_pic_F77='-KPIC' - lt_prog_compiler_static_F77='-Bstatic' - ;; - - *nto* | *qnx*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - lt_prog_compiler_pic_F77='-fPIC -shared' - ;; - - osf3* | osf4* | osf5*) - lt_prog_compiler_wl_F77='-Wl,' - # All OSF/1 code is PIC. - lt_prog_compiler_static_F77='-non_shared' - ;; - - rdos*) - lt_prog_compiler_static_F77='-non_shared' - ;; - - solaris*) - lt_prog_compiler_pic_F77='-KPIC' - lt_prog_compiler_static_F77='-Bstatic' - case $cc_basename in - f77* | f90* | f95*) - lt_prog_compiler_wl_F77='-Qoption ld ';; - *) - lt_prog_compiler_wl_F77='-Wl,';; - esac - ;; - - sunos4*) - lt_prog_compiler_wl_F77='-Qoption ld ' - lt_prog_compiler_pic_F77='-PIC' - lt_prog_compiler_static_F77='-Bstatic' - ;; - - sysv4 | sysv4.2uw2* | sysv4.3*) - lt_prog_compiler_wl_F77='-Wl,' - lt_prog_compiler_pic_F77='-KPIC' - lt_prog_compiler_static_F77='-Bstatic' - ;; - - sysv4*MP*) - if test -d /usr/nec ;then - lt_prog_compiler_pic_F77='-Kconform_pic' - lt_prog_compiler_static_F77='-Bstatic' - fi - ;; - - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - lt_prog_compiler_wl_F77='-Wl,' - lt_prog_compiler_pic_F77='-KPIC' - lt_prog_compiler_static_F77='-Bstatic' - ;; - - unicos*) - lt_prog_compiler_wl_F77='-Wl,' - lt_prog_compiler_can_build_shared_F77=no - ;; - - uts4*) - lt_prog_compiler_pic_F77='-pic' - lt_prog_compiler_static_F77='-Bstatic' - ;; - - *) - lt_prog_compiler_can_build_shared_F77=no - ;; - esac - fi - -case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: - *djgpp*) - lt_prog_compiler_pic_F77= - ;; - *) - lt_prog_compiler_pic_F77="$lt_prog_compiler_pic_F77" - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic_F77" >&5 -$as_echo "$lt_prog_compiler_pic_F77" >&6; } - - - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$lt_prog_compiler_pic_F77"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5 -$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... " >&6; } -if test "${lt_cv_prog_compiler_pic_works_F77+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_pic_works_F77=no - ac_outfile=conftest.$ac_objext - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$lt_prog_compiler_pic_F77" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:15700: $lt_compile\"" >&5) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&5 - echo "$as_me:15704: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_pic_works_F77=yes - fi - fi - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_F77" >&5 -$as_echo "$lt_cv_prog_compiler_pic_works_F77" >&6; } - -if test x"$lt_cv_prog_compiler_pic_works_F77" = xyes; then - case $lt_prog_compiler_pic_F77 in - "" | " "*) ;; - *) lt_prog_compiler_pic_F77=" $lt_prog_compiler_pic_F77" ;; - esac -else - lt_prog_compiler_pic_F77= - lt_prog_compiler_can_build_shared_F77=no -fi - -fi - - - -# -# Check to make sure the static flag actually works. -# -wl=$lt_prog_compiler_wl_F77 eval lt_tmp_static_flag=\"$lt_prog_compiler_static_F77\" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 -$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -if test "${lt_cv_prog_compiler_static_works_F77+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_static_works_F77=no - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS $lt_tmp_static_flag" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&5 - $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_static_works_F77=yes - fi - else - lt_cv_prog_compiler_static_works_F77=yes - fi - fi - $RM -r conftest* - LDFLAGS="$save_LDFLAGS" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_F77" >&5 -$as_echo "$lt_cv_prog_compiler_static_works_F77" >&6; } - -if test x"$lt_cv_prog_compiler_static_works_F77" = xyes; then - : -else - lt_prog_compiler_static_F77= -fi - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o_F77=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:15799: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:15803: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o_F77=yes - fi - fi - chmod u+w . 2>&5 - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_F77" >&5 -$as_echo "$lt_cv_prog_compiler_c_o_F77" >&6; } - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o_F77=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:15851: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:15855: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o_F77=yes - fi - fi - chmod u+w . 2>&5 - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_F77" >&5 -$as_echo "$lt_cv_prog_compiler_c_o_F77" >&6; } - - - - -hard_links="nottested" -if test "$lt_cv_prog_compiler_c_o_F77" = no && test "$need_locks" != no; then - # do not overwrite the value of need_locks provided by the user - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 -$as_echo_n "checking if we can lock with hard links... " >&6; } - hard_links=yes - $RM conftest* - ln conftest.a conftest.b 2>/dev/null && hard_links=no - touch conftest.a - ln conftest.a conftest.b 2>&5 || hard_links=no - ln conftest.a conftest.b 2>/dev/null && hard_links=no - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 -$as_echo "$hard_links" >&6; } - if test "$hard_links" = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} - need_locks=warn - fi -else - need_locks=no -fi - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } - - runpath_var= - allow_undefined_flag_F77= - always_export_symbols_F77=no - archive_cmds_F77= - archive_expsym_cmds_F77= - compiler_needs_object_F77=no - enable_shared_with_static_runtimes_F77=no - export_dynamic_flag_spec_F77= - export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - hardcode_automatic_F77=no - hardcode_direct_F77=no - hardcode_direct_absolute_F77=no - hardcode_libdir_flag_spec_F77= - hardcode_libdir_flag_spec_ld_F77= - hardcode_libdir_separator_F77= - hardcode_minus_L_F77=no - hardcode_shlibpath_var_F77=unsupported - inherit_rpath_F77=no - link_all_deplibs_F77=unknown - module_cmds_F77= - module_expsym_cmds_F77= - old_archive_from_new_cmds_F77= - old_archive_from_expsyms_cmds_F77= - thread_safe_flag_spec_F77= - whole_archive_flag_spec_F77= - # include_expsyms should be a list of space-separated symbols to be *always* - # included in the symbol list - include_expsyms_F77= - # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. - exclude_expsyms_F77='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' - # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out - # platforms (ab)use it in PIC code, but their linkers get confused if - # the symbol is explicitly referenced. Since portable code cannot - # rely on this symbol name, it's probably fine to never include it in - # preloaded symbol tables. - # Exclude shared library initialization/finalization symbols. - extract_expsyms_cmds= - - case $host_os in - cygwin* | mingw* | pw32* | cegcc*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test "$GCC" != yes; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd*) - with_gnu_ld=no - ;; - linux* | k*bsd*-gnu) - link_all_deplibs_F77=no - ;; - esac - - ld_shlibs_F77=yes - if test "$with_gnu_ld" = yes; then - # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' - - # Set some defaults for GNU ld with shared library support. These - # are reset later if shared libraries are not supported. Putting them - # here allows them to be overridden if necessary. - runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' - export_dynamic_flag_spec_F77='${wl}--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec_F77="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - whole_archive_flag_spec_F77= - fi - supports_anon_versioning=no - case `$LD -v 2>&1` in - *GNU\ gold*) supports_anon_versioning=yes ;; - *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - - # See if GNU ld supports shared libraries. - case $host_os in - aix[3-9]*) - # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then - ld_shlibs_F77=no - cat <<_LT_EOF 1>&2 - -*** Warning: the GNU linker, at least up to release 2.9.1, is reported -*** to be unable to reliably create shared libraries on AIX. -*** Therefore, libtool is disabling shared libraries support. If you -*** really care for shared libraries, you may want to modify your PATH -*** so that a non-GNU linker is found, and then restart. - -_LT_EOF - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_F77='' - ;; - m68k) - archive_cmds_F77='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - hardcode_libdir_flag_spec_F77='-L$libdir' - hardcode_minus_L_F77=yes - ;; - esac - ;; - - beos*) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - allow_undefined_flag_F77=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - archive_cmds_F77='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - ld_shlibs_F77=no - fi - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # _LT_TAGVAR(hardcode_libdir_flag_spec, F77) is actually meaningless, - # as there is no search path for DLLs. - hardcode_libdir_flag_spec_F77='-L$libdir' - allow_undefined_flag_F77=unsupported - always_export_symbols_F77=no - enable_shared_with_static_runtimes_F77=yes - export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' - - if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - archive_expsym_cmds_F77='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - ld_shlibs_F77=no - fi - ;; - - interix[3-9]*) - hardcode_direct_F77=no - hardcode_shlibpath_var_F77=no - hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' - export_dynamic_flag_spec_F77='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - archive_expsym_cmds_F77='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - - gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) - tmp_diet=no - if test "$host_os" = linux-dietlibc; then - case $cc_basename in - diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) - esac - fi - if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ - && test "$tmp_diet" = no - then - tmp_addflag= - tmp_sharedflag='-shared' - case $cc_basename,$host_cpu in - pgcc*) # Portland Group C compiler - whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag' - ;; - pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers - whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag -Mnomain' ;; - ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 - tmp_addflag=' -i_dynamic' ;; - efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 - tmp_addflag=' -i_dynamic -nofor_main' ;; - ifc* | ifort*) # Intel Fortran compiler - tmp_addflag=' -nofor_main' ;; - lf95*) # Lahey Fortran 8.1 - whole_archive_flag_spec_F77= - tmp_sharedflag='--shared' ;; - xl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) - tmp_sharedflag='-qmkshrobj' - tmp_addflag= ;; - esac - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) # Sun C 5.9 - whole_archive_flag_spec_F77='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' - compiler_needs_object_F77=yes - tmp_sharedflag='-G' ;; - *Sun\ F*) # Sun Fortran 8.3 - tmp_sharedflag='-G' ;; - esac - archive_cmds_F77='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - - if test "x$supports_anon_versioning" = xyes; then - archive_expsym_cmds_F77='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi - - case $cc_basename in - xlf*) - # IBM XL Fortran 10.1 on PPC cannot create shared libs itself - whole_archive_flag_spec_F77='--whole-archive$convenience --no-whole-archive' - hardcode_libdir_flag_spec_F77= - hardcode_libdir_flag_spec_ld_F77='-rpath $libdir' - archive_cmds_F77='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then - archive_expsym_cmds_F77='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' - fi - ;; - esac - else - ld_shlibs_F77=no - fi - ;; - - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - archive_cmds_F77='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' - wlarc= - else - archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - fi - ;; - - solaris*) - if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then - ld_shlibs_F77=no - cat <<_LT_EOF 1>&2 - -*** Warning: The releases 2.8.* of the GNU linker cannot reliably -*** create shared libraries on Solaris systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.9.1 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs_F77=no - fi - ;; - - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) - ld_shlibs_F77=no - cat <<_LT_EOF 1>&2 - -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not -*** reliably create shared libraries on SCO systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.16.91.0.3 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - ;; - *) - # For security reasons, it is highly recommended that you always - # use absolute paths for naming shared libraries, and exclude the - # DT_RUNPATH tag from executables and libraries. But doing so - # requires that you compile everything twice, which is a pain. - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' - archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs_F77=no - fi - ;; - esac - ;; - - sunos4*) - archive_cmds_F77='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' - wlarc= - hardcode_direct_F77=yes - hardcode_shlibpath_var_F77=no - ;; - - *) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs_F77=no - fi - ;; - esac - - if test "$ld_shlibs_F77" = no; then - runpath_var= - hardcode_libdir_flag_spec_F77= - export_dynamic_flag_spec_F77= - whole_archive_flag_spec_F77= - fi - else - # PORTME fill in a description of your system's linker (not GNU ld) - case $host_os in - aix3*) - allow_undefined_flag_F77=unsupported - always_export_symbols_F77=yes - archive_expsym_cmds_F77='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' - # Note: this linker hardcodes the directories in LIBPATH if there - # are no directories specified by -L. - hardcode_minus_L_F77=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then - # Neither direct hardcoding nor static linking is supported with a - # broken collect2. - hardcode_direct_F77=unsupported - fi - ;; - - aix[4-9]*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - export_symbols_cmds_F77='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - else - export_symbols_cmds_F77='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - fi - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) - for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then - aix_use_runtimelinking=yes - break - fi - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - archive_cmds_F77='' - hardcode_direct_F77=yes - hardcode_direct_absolute_F77=yes - hardcode_libdir_separator_F77=':' - link_all_deplibs_F77=yes - file_list_spec_F77='${wl}-f,' - - if test "$GCC" = yes; then - case $host_os in aix4.[012]|aix4.[012].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && - strings "$collect2name" | $GREP resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - hardcode_direct_F77=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - hardcode_minus_L_F77=yes - hardcode_libdir_flag_spec_F77='-L$libdir' - hardcode_libdir_separator_F77= - fi - ;; - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - link_all_deplibs_F77=no - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - export_dynamic_flag_spec_F77='${wl}-bexpall' - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - always_export_symbols_F77=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - allow_undefined_flag_F77='-berok' - # Determine the default libpath from the value encoded in an - # empty executable. - cat > conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -if ac_fn_f77_try_link "$LINENO"; then : - -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi - - hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" - archive_expsym_cmds_F77='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec_F77='${wl}-R $libdir:/usr/lib:/lib' - allow_undefined_flag_F77="-z nodefs" - archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an - # empty executable. - cat > conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -if ac_fn_f77_try_link "$LINENO"; then : - -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi - - hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - no_undefined_flag_F77=' ${wl}-bernotok' - allow_undefined_flag_F77=' ${wl}-berok' - # Exported symbols can be pulled into shared objects from archives - whole_archive_flag_spec_F77='$convenience' - archive_cmds_need_lc_F77=yes - # This is similar to how AIX traditionally builds its shared libraries. - archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_F77='' - ;; - m68k) - archive_cmds_F77='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - hardcode_libdir_flag_spec_F77='-L$libdir' - hardcode_minus_L_F77=yes - ;; - esac - ;; - - bsdi[45]*) - export_dynamic_flag_spec_F77=-rdynamic - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - hardcode_libdir_flag_spec_F77=' ' - allow_undefined_flag_F77=unsupported - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" - # FIXME: Setting linknames here is a bad hack. - archive_cmds_F77='$CC -o $lib $libobjs $compiler_flags `$ECHO "X$deplibs" | $Xsed -e '\''s/ -lc$//'\''` -link -dll~linknames=' - # The linker will automatically build a .lib file if we build a DLL. - old_archive_from_new_cmds_F77='true' - # FIXME: Should let the user specify the lib program. - old_archive_cmds_F77='lib -OUT:$oldlib$oldobjs$old_deplibs' - fix_srcfile_path_F77='`cygpath -w "$srcfile"`' - enable_shared_with_static_runtimes_F77=yes - ;; - - darwin* | rhapsody*) - - - archive_cmds_need_lc_F77=no - hardcode_direct_F77=no - hardcode_automatic_F77=yes - hardcode_shlibpath_var_F77=unsupported - whole_archive_flag_spec_F77='' - link_all_deplibs_F77=yes - allow_undefined_flag_F77="$_lt_dar_allow_undefined" - case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; - *) _lt_dar_can_shared=$GCC ;; - esac - if test "$_lt_dar_can_shared" = "yes"; then - output_verbose_link_cmd=echo - archive_cmds_F77="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - module_cmds_F77="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - archive_expsym_cmds_F77="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - module_expsym_cmds_F77="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" - - else - ld_shlibs_F77=no - fi - - ;; - - dgux*) - archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec_F77='-L$libdir' - hardcode_shlibpath_var_F77=no - ;; - - freebsd1*) - ld_shlibs_F77=no - ;; - - # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor - # support. Future versions do this automatically, but an explicit c++rt0.o - # does not break anything, and helps significantly (at the cost of a little - # extra space). - freebsd2.2*) - archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' - hardcode_libdir_flag_spec_F77='-R$libdir' - hardcode_direct_F77=yes - hardcode_shlibpath_var_F77=no - ;; - - # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2*) - archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct_F77=yes - hardcode_minus_L_F77=yes - hardcode_shlibpath_var_F77=no - ;; - - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | dragonfly*) - archive_cmds_F77='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec_F77='-R$libdir' - hardcode_direct_F77=yes - hardcode_shlibpath_var_F77=no - ;; - - hpux9*) - if test "$GCC" = yes; then - archive_cmds_F77='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - archive_cmds_F77='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - fi - hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' - hardcode_libdir_separator_F77=: - hardcode_direct_F77=yes - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L_F77=yes - export_dynamic_flag_spec_F77='${wl}-E' - ;; - - hpux10*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds_F77='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' - fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' - hardcode_libdir_flag_spec_ld_F77='+b $libdir' - hardcode_libdir_separator_F77=: - hardcode_direct_F77=yes - hardcode_direct_absolute_F77=yes - export_dynamic_flag_spec_F77='${wl}-E' - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L_F77=yes - fi - ;; - - hpux11*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - case $host_cpu in - hppa*64*) - archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - else - case $host_cpu in - hppa*64*) - archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' - hardcode_libdir_separator_F77=: - - case $host_cpu in - hppa*64*|ia64*) - hardcode_direct_F77=no - hardcode_shlibpath_var_F77=no - ;; - *) - hardcode_direct_F77=yes - hardcode_direct_absolute_F77=yes - export_dynamic_flag_spec_F77='${wl}-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L_F77=yes - ;; - esac - fi - ;; - - irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - # Try to use the -exported_symbol ld option, if it does not - # work, assume that -exports_file does not work either and - # implicitly export all symbols. - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" - cat > conftest.$ac_ext <<_ACEOF -int foo(void) {} -_ACEOF -if ac_fn_f77_try_link "$LINENO"; then : - archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' - -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS="$save_LDFLAGS" - else - archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' - fi - archive_cmds_need_lc_F77='no' - hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_F77=: - inherit_rpath_F77=yes - link_all_deplibs_F77=yes - ;; - - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out - else - archive_cmds_F77='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF - fi - hardcode_libdir_flag_spec_F77='-R$libdir' - hardcode_direct_F77=yes - hardcode_shlibpath_var_F77=no - ;; - - newsos6) - archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct_F77=yes - hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_F77=: - hardcode_shlibpath_var_F77=no - ;; - - *nto* | *qnx*) - ;; - - openbsd*) - if test -f /usr/libexec/ld.so; then - hardcode_direct_F77=yes - hardcode_shlibpath_var_F77=no - hardcode_direct_absolute_F77=yes - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' - export_dynamic_flag_spec_F77='${wl}-E' - else - case $host_os in - openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) - archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec_F77='-R$libdir' - ;; - *) - archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' - ;; - esac - fi - else - ld_shlibs_F77=no - fi - ;; - - os2*) - hardcode_libdir_flag_spec_F77='-L$libdir' - hardcode_minus_L_F77=yes - allow_undefined_flag_F77=unsupported - archive_cmds_F77='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$ECHO DATA >> $output_objdir/$libname.def~$ECHO " SINGLE NONSHARED" >> $output_objdir/$libname.def~$ECHO EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - old_archive_from_new_cmds_F77='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' - ;; - - osf3*) - if test "$GCC" = yes; then - allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - allow_undefined_flag_F77=' -expect_unresolved \*' - archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - fi - archive_cmds_need_lc_F77='no' - hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_F77=: - ;; - - osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' - else - allow_undefined_flag_F77=' -expect_unresolved \*' - archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - archive_expsym_cmds_F77='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ - $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' - - # Both c and cxx compiler support -rpath directly - hardcode_libdir_flag_spec_F77='-rpath $libdir' - fi - archive_cmds_need_lc_F77='no' - hardcode_libdir_separator_F77=: - ;; - - solaris*) - no_undefined_flag_F77=' -z defs' - if test "$GCC" = yes; then - wlarc='${wl}' - archive_cmds_F77='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_F77='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' - else - case `$CC -V 2>&1` in - *"Compilers 5.0"*) - wlarc='' - archive_cmds_F77='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' - archive_expsym_cmds_F77='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' - ;; - *) - wlarc='${wl}' - archive_cmds_F77='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_F77='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' - ;; - esac - fi - hardcode_libdir_flag_spec_F77='-R$libdir' - hardcode_shlibpath_var_F77=no - case $host_os in - solaris2.[0-5] | solaris2.[0-5].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', - # but is careful enough not to reorder. - # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - whole_archive_flag_spec_F77='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' - else - whole_archive_flag_spec_F77='-z allextract$convenience -z defaultextract' - fi - ;; - esac - link_all_deplibs_F77=yes - ;; - - sunos4*) - if test "x$host_vendor" = xsequent; then - # Use $CC to link under sequent, because it throws in some extra .o - # files that make .init and .fini sections work. - archive_cmds_F77='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds_F77='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' - fi - hardcode_libdir_flag_spec_F77='-L$libdir' - hardcode_direct_F77=yes - hardcode_minus_L_F77=yes - hardcode_shlibpath_var_F77=no - ;; - - sysv4) - case $host_vendor in - sni) - archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct_F77=yes # is this really true??? - ;; - siemens) - ## LD is ld it makes a PLAMLIB - ## CC just makes a GrossModule. - archive_cmds_F77='$LD -G -o $lib $libobjs $deplibs $linker_flags' - reload_cmds_F77='$CC -r -o $output$reload_objs' - hardcode_direct_F77=no - ;; - motorola) - archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct_F77=no #Motorola manual says yes, but my tests say they lie - ;; - esac - runpath_var='LD_RUN_PATH' - hardcode_shlibpath_var_F77=no - ;; - - sysv4.3*) - archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_shlibpath_var_F77=no - export_dynamic_flag_spec_F77='-Bexport' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_shlibpath_var_F77=no - runpath_var=LD_RUN_PATH - hardcode_runpath_var=yes - ld_shlibs_F77=yes - fi - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag_F77='${wl}-z,text' - archive_cmds_need_lc_F77=no - hardcode_shlibpath_var_F77=no - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - archive_cmds_F77='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds_F77='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - no_undefined_flag_F77='${wl}-z,text' - allow_undefined_flag_F77='${wl}-z,nodefs' - archive_cmds_need_lc_F77=no - hardcode_shlibpath_var_F77=no - hardcode_libdir_flag_spec_F77='${wl}-R,$libdir' - hardcode_libdir_separator_F77=':' - link_all_deplibs_F77=yes - export_dynamic_flag_spec_F77='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - archive_cmds_F77='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds_F77='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - uts4*) - archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec_F77='-L$libdir' - hardcode_shlibpath_var_F77=no - ;; - - *) - ld_shlibs_F77=no - ;; - esac - - if test x$host_vendor = xsni; then - case $host in - sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - export_dynamic_flag_spec_F77='${wl}-Blargedynsym' - ;; - esac - fi - fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_F77" >&5 -$as_echo "$ld_shlibs_F77" >&6; } -test "$ld_shlibs_F77" = no && can_build_shared=no - -with_gnu_ld_F77=$with_gnu_ld - - - - - - -# -# Do we need to explicitly link libc? -# -case "x$archive_cmds_need_lc_F77" in -x|xyes) - # Assume -lc should be added - archive_cmds_need_lc_F77=yes - - if test "$enable_shared" = yes && test "$GCC" = yes; then - case $archive_cmds_F77 in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 -$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } - $RM conftest* - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } 2>conftest.err; then - soname=conftest - lib=conftest - libobjs=conftest.$ac_objext - deplibs= - wl=$lt_prog_compiler_wl_F77 - pic_flag=$lt_prog_compiler_pic_F77 - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$allow_undefined_flag_F77 - allow_undefined_flag_F77= - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_F77 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 - (eval $archive_cmds_F77 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - then - archive_cmds_need_lc_F77=no - else - archive_cmds_need_lc_F77=yes - fi - allow_undefined_flag_F77=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $RM conftest* - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc_F77" >&5 -$as_echo "$archive_cmds_need_lc_F77" >&6; } - ;; - esac - fi - ;; -esac - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 -$as_echo_n "checking dynamic linker characteristics... " >&6; } - -library_names_spec= -libname_spec='lib$name' -soname_spec= -shrext_cmds=".so" -postinstall_cmds= -postuninstall_cmds= -finish_cmds= -finish_eval= -shlibpath_var= -shlibpath_overrides_runpath=unknown -version_type=none -dynamic_linker="$host_os ld.so" -sys_lib_dlsearch_path_spec="/lib /usr/lib" -need_lib_prefix=unknown -hardcode_into_libs=no - -# when you set need_version to no, make sure it does not cause -set_version -# flags to be left without arguments -need_version=unknown - -case $host_os in -aix3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' - ;; - -aix[4-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - hardcode_into_libs=yes - if test "$host_cpu" = ia64; then - # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - else - # With GCC up to 2.95.x, collect2 would create an import file - # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in - # development snapshots of GCC prior to 3.0. - case $host_os in - aix4 | aix4.[01] | aix4.[01].*) - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' - echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then - : - else - can_build_shared=no - fi - ;; - esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct - # soname into executable. Probably we can add versioning support to - # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then - # If using run time linking (on AIX 4.2 or later) use lib.so - # instead of lib.a to let people know that these are not - # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else - # We preserve .a as extension for shared libraries through AIX4.2 - # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi - shlibpath_var=LIBPATH - fi - ;; - -amigaos*) - case $host_cpu in - powerpc) - # Since July 2007 AmigaOS4 officially supports .so libraries. - # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - ;; - m68k) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; - esac - ;; - -beos*) - library_names_spec='${libname}${shared_ext}' - dynamic_linker="$host_os ld.so" - shlibpath_var=LIBRARY_PATH - ;; - -bsdi[45]*) - version_type=linux - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; - -cygwin* | mingw* | pw32* | cegcc*) - version_type=windows - shrext_cmds=".dll" - need_version=no - need_lib_prefix=no - - case $GCC,$host_os in - yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname~ - if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then - eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; - fi' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - shlibpath_overrides_runpath=yes - - case $host_os in - cygwin*) - # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" - ;; - mingw* | cegcc*) - # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then - # It is most probably a Windows format PATH printed by - # mingw gcc, but we are running on Cygwin. Gcc prints its search - # path with ; separators, and with drive letters. We can handle the - # drive letters (cygwin fileutils understands them), so leave them, - # especially as we might pass files found there to a mingw objdump, - # which wouldn't understand a cygwinified path. Ahh. - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - ;; - pw32*) - # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - ;; - esac - ;; - - *) - library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' - ;; - esac - dynamic_linker='Win32 ld.exe' - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; - -darwin* | rhapsody*) - dynamic_linker="$host_os dyld" - version_type=darwin - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' - shlibpath_overrides_runpath=yes - shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' - - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' - ;; - -dgux*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -freebsd1*) - dynamic_linker=no - ;; - -freebsd* | dragonfly*) - # DragonFly does not have aout. When/if they implement a new - # versioning mechanism, adjust this. - if test -x /usr/bin/objformat; then - objformat=`/usr/bin/objformat` - else - case $host_os in - freebsd[123]*) objformat=aout ;; - *) objformat=elf ;; - esac - fi - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - need_version=no - need_lib_prefix=no - ;; - freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' - need_version=yes - ;; - esac - shlibpath_var=LD_LIBRARY_PATH - case $host_os in - freebsd2*) - shlibpath_overrides_runpath=yes - ;; - freebsd3.[01]* | freebsdelf3.[01]*) - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ - freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - *) # from 4.6 on, and DragonFly - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - esac - ;; - -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - ;; - -hpux9* | hpux10* | hpux11*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - version_type=sunos - need_lib_prefix=no - need_version=no - case $host_cpu in - ia64*) - shrext_cmds='.so' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.so" - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - else - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - ;; - esac - # HP-UX runs *really* slowly unless shared libraries are mode 555. - postinstall_cmds='chmod 555 $lib' - ;; - -interix[3-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -irix5* | irix6* | nonstopux*) - case $host_os in - nonstopux*) version_type=nonstopux ;; - *) - if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux - else - version_type=irix - fi ;; - esac - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' - case $host_os in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in # libtool.m4 will add one of these switches to LD - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") - libsuff= shlibsuff= libmagic=32-bit;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") - libsuff=32 shlibsuff=N32 libmagic=N32;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") - libsuff=64 shlibsuff=64 libmagic=64-bit;; - *) libsuff= shlibsuff= libmagic=never-match;; - esac - ;; - esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - hardcode_into_libs=yes - ;; - -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - # Some binutils ld are patched to set DT_RUNPATH - save_LDFLAGS=$LDFLAGS - save_libdir=$libdir - eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_F77\"; \ - LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_F77\"" - cat > conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -if ac_fn_f77_try_link "$LINENO"; then : - if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : - shlibpath_overrides_runpath=yes -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$save_LDFLAGS - libdir=$save_libdir - - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - # Append ld.so.conf contents to the search path - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" - fi - - # We used to test for /lib/ld.so.1 and disable shared libraries on - # powerpc, because MkLinux only supported shared libraries with the - # GNU dynamic linker. Since this was broken with cross compilers, - # most powerpc-linux boxes support dynamic linking these days and - # people can always --disable-shared, the test was removed, and we - # assume the GNU/Linux dynamic linker is in use. - dynamic_linker='GNU/Linux ld.so' - ;; - -netbsdelf*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='NetBSD ld.elf_so' - ;; - -netbsd*) - version_type=sunos - need_lib_prefix=no - need_version=no - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - dynamic_linker='NetBSD (a.out) ld.so' - else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='NetBSD ld.elf_so' - fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - -newsos6) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -*nto* | *qnx*) - version_type=qnx - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='ldqnx.so' - ;; - -openbsd*) - version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" - need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[89] | openbsd2.[89].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi - ;; - -os2*) - libname_spec='$name' - shrext_cmds=".dll" - need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH - ;; - -osf3* | osf4* | osf5*) - version_type=osf - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" - ;; - -rdos*) - dynamic_linker=no - ;; - -solaris*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - # ldd complains unless libraries are executable - postinstall_cmds='chmod +x $lib' - ;; - -sunos4*) - version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then - need_lib_prefix=no - fi - need_version=yes - ;; - -sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - case $host_vendor in - sni) - shlibpath_overrides_runpath=no - need_lib_prefix=no - runpath_var=LD_RUN_PATH - ;; - siemens) - need_lib_prefix=no - ;; - motorola) - need_lib_prefix=no - need_version=no - shlibpath_overrides_runpath=no - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' - ;; - esac - ;; - -sysv4*MP*) - if test -d /usr/nec ;then - version_type=linux - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' - shlibpath_var=LD_LIBRARY_PATH - fi - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then - sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - case $host_os in - sco3.2v5*) - sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" - ;; - esac - fi - sys_lib_dlsearch_path_spec='/usr/lib' - ;; - -tpf*) - # TPF is a cross-target only. Preferred cross-host = GNU/Linux. - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -uts4*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -*) - dynamic_linker=no - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 -$as_echo "$dynamic_linker" >&6; } -test "$dynamic_linker" = no && can_build_shared=no - -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -fi - -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" -fi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 -$as_echo_n "checking how to hardcode library paths into programs... " >&6; } -hardcode_action_F77= -if test -n "$hardcode_libdir_flag_spec_F77" || - test -n "$runpath_var_F77" || - test "X$hardcode_automatic_F77" = "Xyes" ; then - - # We can hardcode non-existent directories. - if test "$hardcode_direct_F77" != no && - # If the only mechanism to avoid hardcoding is shlibpath_var, we - # have to relink, otherwise we might link with an installed library - # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, F77)" != no && - test "$hardcode_minus_L_F77" != no; then - # Linking always hardcodes the temporary library directory. - hardcode_action_F77=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - hardcode_action_F77=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - hardcode_action_F77=unsupported -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_F77" >&5 -$as_echo "$hardcode_action_F77" >&6; } - -if test "$hardcode_action_F77" = relink || - test "$inherit_rpath_F77" = yes; then - # Fast installation is not supported - enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then - # Fast installation is not necessary - enable_fast_install=needless -fi - - - - - - - - fi # test -n "$compiler" - - GCC=$lt_save_GCC - CC="$lt_save_CC" -fi # test "$_lt_disable_F77" != yes - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - - ac_ext=${ac_fc_srcext-f} -ac_compile='$FC -c $FCFLAGS $ac_fcflags_srcext conftest.$ac_ext >&5' -ac_link='$FC -o conftest$ac_exeext $FCFLAGS $LDFLAGS $ac_fcflags_srcext conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_fc_compiler_gnu - - -archive_cmds_need_lc_FC=no -allow_undefined_flag_FC= -always_export_symbols_FC=no -archive_expsym_cmds_FC= -export_dynamic_flag_spec_FC= -hardcode_direct_FC=no -hardcode_direct_absolute_FC=no -hardcode_libdir_flag_spec_FC= -hardcode_libdir_flag_spec_ld_FC= -hardcode_libdir_separator_FC= -hardcode_minus_L_FC=no -hardcode_automatic_FC=no -inherit_rpath_FC=no -module_cmds_FC= -module_expsym_cmds_FC= -link_all_deplibs_FC=unknown -old_archive_cmds_FC=$old_archive_cmds -no_undefined_flag_FC= -whole_archive_flag_spec_FC= -enable_shared_with_static_runtimes_FC=no - -# Source file extension for fc test sources. -ac_ext=${ac_fc_srcext-f} - -# Object file extension for compiled fc test sources. -objext=o -objext_FC=$objext - -# No sense in running all these tests if we already determined that -# the FC compiler isn't working. Some variables (like enable_shared) -# are currently assumed to apply to all compilers on this platform, -# and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_disable_FC" != yes; then - # Code to be used in simple compile tests - lt_simple_compile_test_code="\ - subroutine t - return - end -" - - # Code to be used in simple link tests - lt_simple_link_test_code="\ - program t - end -" - - # ltmain only uses $CC for tagged configurations so make sure $CC is set. - - - - - - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC - - - # save warnings/boilerplate of simple test code - ac_outfile=conftest.$ac_objext -echo "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$RM conftest* - - ac_outfile=conftest.$ac_objext -echo "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$RM -r conftest* - - - # Allow CC to be a program name with arguments. - lt_save_CC="$CC" - lt_save_GCC=$GCC - CC=${FC-"f95"} - compiler=$CC - GCC=$ac_cv_fc_compiler_gnu - - compiler_FC=$CC - for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` - - - if test -n "$compiler"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 -$as_echo_n "checking if libtool supports shared libraries... " >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 -$as_echo "$can_build_shared" >&6; } - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 -$as_echo_n "checking whether to build shared libraries... " >&6; } - test "$can_build_shared" = "no" && enable_shared=no - - # On AIX, shared libraries and static libraries use the same namespace, and - # are all built from PIC. - case $host_os in - aix3*) - test "$enable_shared" = yes && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - aix[4-9]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no - fi - ;; - esac - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 -$as_echo "$enable_shared" >&6; } - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 -$as_echo_n "checking whether to build static libraries... " >&6; } - # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 -$as_echo "$enable_static" >&6; } - - GCC_FC="$ac_cv_fc_compiler_gnu" - LD_FC="$LD" - - ## CAVEAT EMPTOR: - ## There is no encapsulation within the following macros, do not change - ## the running order or otherwise move them around unless you know exactly - ## what you are doing... - # Dependencies to place before and after the object being linked: -predep_objects_FC= -postdep_objects_FC= -predeps_FC= -postdeps_FC= -compiler_lib_search_path_FC= - -cat > conftest.$ac_ext <<_LT_EOF - subroutine foo - implicit none - integer a - a=0 - return - end -_LT_EOF - -if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - # Parse the compiler output and extract the necessary - # objects, libraries and library flags. - - # Sentinel used to keep track of whether or not we are before - # the conftest object file. - pre_test_object_deps_done=no - - for p in `eval "$output_verbose_link_cmd"`; do - case $p in - - -L* | -R* | -l*) - # Some compilers place space between "-{L,R}" and the path. - # Remove the space. - if test $p = "-L" || - test $p = "-R"; then - prev=$p - continue - else - prev= - fi - - if test "$pre_test_object_deps_done" = no; then - case $p in - -L* | -R*) - # Internal compiler library paths should come after those - # provided the user. The postdeps already come after the - # user supplied libs so there is no need to process them. - if test -z "$compiler_lib_search_path_FC"; then - compiler_lib_search_path_FC="${prev}${p}" - else - compiler_lib_search_path_FC="${compiler_lib_search_path_FC} ${prev}${p}" - fi - ;; - # The "-l" case would never come before the object being - # linked, so don't bother handling this case. - esac - else - if test -z "$postdeps_FC"; then - postdeps_FC="${prev}${p}" - else - postdeps_FC="${postdeps_FC} ${prev}${p}" - fi - fi - ;; - - *.$objext) - # This assumes that the test object file only shows up - # once in the compiler output. - if test "$p" = "conftest.$objext"; then - pre_test_object_deps_done=yes - continue - fi - - if test "$pre_test_object_deps_done" = no; then - if test -z "$predep_objects_FC"; then - predep_objects_FC="$p" - else - predep_objects_FC="$predep_objects_FC $p" - fi - else - if test -z "$postdep_objects_FC"; then - postdep_objects_FC="$p" - else - postdep_objects_FC="$postdep_objects_FC $p" - fi - fi - ;; - - *) ;; # Ignore the rest. - - esac - done - - # Clean up. - rm -f a.out a.exe -else - echo "libtool.m4: error: problem compiling FC test program" -fi - -$RM -f confest.$objext - -# PORTME: override above test on systems where it is broken - - -case " $postdeps_FC " in -*" -lc "*) archive_cmds_need_lc_FC=no ;; -esac - compiler_lib_search_dirs_FC= -if test -n "${compiler_lib_search_path_FC}"; then - compiler_lib_search_dirs_FC=`echo " ${compiler_lib_search_path_FC}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` -fi - - - - - - - - - - - - - - lt_prog_compiler_wl_FC= -lt_prog_compiler_pic_FC= -lt_prog_compiler_static_FC= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 -$as_echo_n "checking for $compiler option to produce PIC... " >&6; } - - if test "$GCC" = yes; then - lt_prog_compiler_wl_FC='-Wl,' - lt_prog_compiler_static_FC='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static_FC='-Bstatic' - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - lt_prog_compiler_pic_FC='-fPIC' - ;; - m68k) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - lt_prog_compiler_pic_FC='-m68020 -resident32 -malways-restore-a4' - ;; - esac - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - - mingw* | cygwin* | pw32* | os2* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - lt_prog_compiler_pic_FC='-DDLL_EXPORT' - ;; - - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - lt_prog_compiler_pic_FC='-fno-common' - ;; - - hpux*) - # PIC is the default for 64-bit PA HP-UX, but not for 32-bit - # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag - # sets the default TLS model and affects inlining. - case $host_cpu in - hppa*64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic_FC='-fPIC' - ;; - esac - ;; - - interix[3-9]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - - msdosdjgpp*) - # Just because we use GCC doesn't mean we suddenly get shared libraries - # on systems that don't support them. - lt_prog_compiler_can_build_shared_FC=no - enable_shared=no - ;; - - *nto* | *qnx*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - lt_prog_compiler_pic_FC='-fPIC -shared' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - lt_prog_compiler_pic_FC=-Kconform_pic - fi - ;; - - *) - lt_prog_compiler_pic_FC='-fPIC' - ;; - esac - else - # PORTME Check for flag to pass linker flags through the system compiler. - case $host_os in - aix*) - lt_prog_compiler_wl_FC='-Wl,' - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static_FC='-Bstatic' - else - lt_prog_compiler_static_FC='-bnso -bI:/lib/syscalls.exp' - fi - ;; - - mingw* | cygwin* | pw32* | os2* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - lt_prog_compiler_pic_FC='-DDLL_EXPORT' - ;; - - hpux9* | hpux10* | hpux11*) - lt_prog_compiler_wl_FC='-Wl,' - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic_FC='+Z' - ;; - esac - # Is there a better lt_prog_compiler_static that works with the bundled CC? - lt_prog_compiler_static_FC='${wl}-a ${wl}archive' - ;; - - irix5* | irix6* | nonstopux*) - lt_prog_compiler_wl_FC='-Wl,' - # PIC (with -KPIC) is the default. - lt_prog_compiler_static_FC='-non_shared' - ;; - - linux* | k*bsd*-gnu | kopensolaris*-gnu) - case $cc_basename in - # old Intel for x86_64 which still supported -KPIC. - ecc*) - lt_prog_compiler_wl_FC='-Wl,' - lt_prog_compiler_pic_FC='-KPIC' - lt_prog_compiler_static_FC='-static' - ;; - # icc used to be incompatible with GCC. - # ICC 10 doesn't accept -KPIC any more. - icc* | ifort*) - lt_prog_compiler_wl_FC='-Wl,' - lt_prog_compiler_pic_FC='-fPIC' - lt_prog_compiler_static_FC='-static' - ;; - # Lahey Fortran 8.1. - lf95*) - lt_prog_compiler_wl_FC='-Wl,' - lt_prog_compiler_pic_FC='--shared' - lt_prog_compiler_static_FC='--static' - ;; - pgcc* | pgf77* | pgf90* | pgf95*) - # Portland Group compilers (*not* the Pentium gcc compiler, - # which looks to be a dead project) - lt_prog_compiler_wl_FC='-Wl,' - lt_prog_compiler_pic_FC='-fpic' - lt_prog_compiler_static_FC='-Bstatic' - ;; - ccc*) - lt_prog_compiler_wl_FC='-Wl,' - # All Alpha code is PIC. - lt_prog_compiler_static_FC='-non_shared' - ;; - xl*) - # IBM XL C 8.0/Fortran 10.1 on PPC - lt_prog_compiler_wl_FC='-Wl,' - lt_prog_compiler_pic_FC='-qpic' - lt_prog_compiler_static_FC='-qstaticlink' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C 5.9 - lt_prog_compiler_pic_FC='-KPIC' - lt_prog_compiler_static_FC='-Bstatic' - lt_prog_compiler_wl_FC='-Wl,' - ;; - *Sun\ F*) - # Sun Fortran 8.3 passes all unrecognized flags to the linker - lt_prog_compiler_pic_FC='-KPIC' - lt_prog_compiler_static_FC='-Bstatic' - lt_prog_compiler_wl_FC='' - ;; - esac - ;; - esac - ;; - - newsos6) - lt_prog_compiler_pic_FC='-KPIC' - lt_prog_compiler_static_FC='-Bstatic' - ;; - - *nto* | *qnx*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - lt_prog_compiler_pic_FC='-fPIC -shared' - ;; - - osf3* | osf4* | osf5*) - lt_prog_compiler_wl_FC='-Wl,' - # All OSF/1 code is PIC. - lt_prog_compiler_static_FC='-non_shared' - ;; - - rdos*) - lt_prog_compiler_static_FC='-non_shared' - ;; - - solaris*) - lt_prog_compiler_pic_FC='-KPIC' - lt_prog_compiler_static_FC='-Bstatic' - case $cc_basename in - f77* | f90* | f95*) - lt_prog_compiler_wl_FC='-Qoption ld ';; - *) - lt_prog_compiler_wl_FC='-Wl,';; - esac - ;; - - sunos4*) - lt_prog_compiler_wl_FC='-Qoption ld ' - lt_prog_compiler_pic_FC='-PIC' - lt_prog_compiler_static_FC='-Bstatic' - ;; - - sysv4 | sysv4.2uw2* | sysv4.3*) - lt_prog_compiler_wl_FC='-Wl,' - lt_prog_compiler_pic_FC='-KPIC' - lt_prog_compiler_static_FC='-Bstatic' - ;; - - sysv4*MP*) - if test -d /usr/nec ;then - lt_prog_compiler_pic_FC='-Kconform_pic' - lt_prog_compiler_static_FC='-Bstatic' - fi - ;; - - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - lt_prog_compiler_wl_FC='-Wl,' - lt_prog_compiler_pic_FC='-KPIC' - lt_prog_compiler_static_FC='-Bstatic' - ;; - - unicos*) - lt_prog_compiler_wl_FC='-Wl,' - lt_prog_compiler_can_build_shared_FC=no - ;; - - uts4*) - lt_prog_compiler_pic_FC='-pic' - lt_prog_compiler_static_FC='-Bstatic' - ;; - - *) - lt_prog_compiler_can_build_shared_FC=no - ;; - esac - fi - -case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: - *djgpp*) - lt_prog_compiler_pic_FC= - ;; - *) - lt_prog_compiler_pic_FC="$lt_prog_compiler_pic_FC" - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic_FC" >&5 -$as_echo "$lt_prog_compiler_pic_FC" >&6; } - - - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$lt_prog_compiler_pic_FC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_FC works" >&5 -$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_FC works... " >&6; } -if test "${lt_cv_prog_compiler_pic_works_FC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_pic_works_FC=no - ac_outfile=conftest.$ac_objext - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$lt_prog_compiler_pic_FC" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:18309: $lt_compile\"" >&5) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&5 - echo "$as_me:18313: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_pic_works_FC=yes - fi - fi - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_FC" >&5 -$as_echo "$lt_cv_prog_compiler_pic_works_FC" >&6; } - -if test x"$lt_cv_prog_compiler_pic_works_FC" = xyes; then - case $lt_prog_compiler_pic_FC in - "" | " "*) ;; - *) lt_prog_compiler_pic_FC=" $lt_prog_compiler_pic_FC" ;; - esac -else - lt_prog_compiler_pic_FC= - lt_prog_compiler_can_build_shared_FC=no -fi - -fi - - - -# -# Check to make sure the static flag actually works. -# -wl=$lt_prog_compiler_wl_FC eval lt_tmp_static_flag=\"$lt_prog_compiler_static_FC\" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 -$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -if test "${lt_cv_prog_compiler_static_works_FC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_static_works_FC=no - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS $lt_tmp_static_flag" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&5 - $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_static_works_FC=yes - fi - else - lt_cv_prog_compiler_static_works_FC=yes - fi - fi - $RM -r conftest* - LDFLAGS="$save_LDFLAGS" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_FC" >&5 -$as_echo "$lt_cv_prog_compiler_static_works_FC" >&6; } - -if test x"$lt_cv_prog_compiler_static_works_FC" = xyes; then - : -else - lt_prog_compiler_static_FC= -fi - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if test "${lt_cv_prog_compiler_c_o_FC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o_FC=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:18408: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:18412: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o_FC=yes - fi - fi - chmod u+w . 2>&5 - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_FC" >&5 -$as_echo "$lt_cv_prog_compiler_c_o_FC" >&6; } - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if test "${lt_cv_prog_compiler_c_o_FC+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o_FC=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:18460: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:18464: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o_FC=yes - fi - fi - chmod u+w . 2>&5 - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_FC" >&5 -$as_echo "$lt_cv_prog_compiler_c_o_FC" >&6; } - - - - -hard_links="nottested" -if test "$lt_cv_prog_compiler_c_o_FC" = no && test "$need_locks" != no; then - # do not overwrite the value of need_locks provided by the user - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 -$as_echo_n "checking if we can lock with hard links... " >&6; } - hard_links=yes - $RM conftest* - ln conftest.a conftest.b 2>/dev/null && hard_links=no - touch conftest.a - ln conftest.a conftest.b 2>&5 || hard_links=no - ln conftest.a conftest.b 2>/dev/null && hard_links=no - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 -$as_echo "$hard_links" >&6; } - if test "$hard_links" = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} - need_locks=warn - fi -else - need_locks=no -fi - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } - - runpath_var= - allow_undefined_flag_FC= - always_export_symbols_FC=no - archive_cmds_FC= - archive_expsym_cmds_FC= - compiler_needs_object_FC=no - enable_shared_with_static_runtimes_FC=no - export_dynamic_flag_spec_FC= - export_symbols_cmds_FC='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - hardcode_automatic_FC=no - hardcode_direct_FC=no - hardcode_direct_absolute_FC=no - hardcode_libdir_flag_spec_FC= - hardcode_libdir_flag_spec_ld_FC= - hardcode_libdir_separator_FC= - hardcode_minus_L_FC=no - hardcode_shlibpath_var_FC=unsupported - inherit_rpath_FC=no - link_all_deplibs_FC=unknown - module_cmds_FC= - module_expsym_cmds_FC= - old_archive_from_new_cmds_FC= - old_archive_from_expsyms_cmds_FC= - thread_safe_flag_spec_FC= - whole_archive_flag_spec_FC= - # include_expsyms should be a list of space-separated symbols to be *always* - # included in the symbol list - include_expsyms_FC= - # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. - exclude_expsyms_FC='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' - # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out - # platforms (ab)use it in PIC code, but their linkers get confused if - # the symbol is explicitly referenced. Since portable code cannot - # rely on this symbol name, it's probably fine to never include it in - # preloaded symbol tables. - # Exclude shared library initialization/finalization symbols. - extract_expsyms_cmds= - - case $host_os in - cygwin* | mingw* | pw32* | cegcc*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test "$GCC" != yes; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd*) - with_gnu_ld=no - ;; - linux* | k*bsd*-gnu) - link_all_deplibs_FC=no - ;; - esac - - ld_shlibs_FC=yes - if test "$with_gnu_ld" = yes; then - # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' - - # Set some defaults for GNU ld with shared library support. These - # are reset later if shared libraries are not supported. Putting them - # here allows them to be overridden if necessary. - runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec_FC='${wl}-rpath ${wl}$libdir' - export_dynamic_flag_spec_FC='${wl}--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec_FC="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - whole_archive_flag_spec_FC= - fi - supports_anon_versioning=no - case `$LD -v 2>&1` in - *GNU\ gold*) supports_anon_versioning=yes ;; - *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - - # See if GNU ld supports shared libraries. - case $host_os in - aix[3-9]*) - # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then - ld_shlibs_FC=no - cat <<_LT_EOF 1>&2 - -*** Warning: the GNU linker, at least up to release 2.9.1, is reported -*** to be unable to reliably create shared libraries on AIX. -*** Therefore, libtool is disabling shared libraries support. If you -*** really care for shared libraries, you may want to modify your PATH -*** so that a non-GNU linker is found, and then restart. - -_LT_EOF - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_FC='' - ;; - m68k) - archive_cmds_FC='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - hardcode_libdir_flag_spec_FC='-L$libdir' - hardcode_minus_L_FC=yes - ;; - esac - ;; - - beos*) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - allow_undefined_flag_FC=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - archive_cmds_FC='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - ld_shlibs_FC=no - fi - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # _LT_TAGVAR(hardcode_libdir_flag_spec, FC) is actually meaningless, - # as there is no search path for DLLs. - hardcode_libdir_flag_spec_FC='-L$libdir' - allow_undefined_flag_FC=unsupported - always_export_symbols_FC=no - enable_shared_with_static_runtimes_FC=yes - export_symbols_cmds_FC='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' - - if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - archive_expsym_cmds_FC='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - ld_shlibs_FC=no - fi - ;; - - interix[3-9]*) - hardcode_direct_FC=no - hardcode_shlibpath_var_FC=no - hardcode_libdir_flag_spec_FC='${wl}-rpath,$libdir' - export_dynamic_flag_spec_FC='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds_FC='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - archive_expsym_cmds_FC='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - - gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) - tmp_diet=no - if test "$host_os" = linux-dietlibc; then - case $cc_basename in - diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) - esac - fi - if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ - && test "$tmp_diet" = no - then - tmp_addflag= - tmp_sharedflag='-shared' - case $cc_basename,$host_cpu in - pgcc*) # Portland Group C compiler - whole_archive_flag_spec_FC='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag' - ;; - pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers - whole_archive_flag_spec_FC='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag -Mnomain' ;; - ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 - tmp_addflag=' -i_dynamic' ;; - efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 - tmp_addflag=' -i_dynamic -nofor_main' ;; - ifc* | ifort*) # Intel Fortran compiler - tmp_addflag=' -nofor_main' ;; - lf95*) # Lahey Fortran 8.1 - whole_archive_flag_spec_FC= - tmp_sharedflag='--shared' ;; - xl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) - tmp_sharedflag='-qmkshrobj' - tmp_addflag= ;; - esac - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) # Sun C 5.9 - whole_archive_flag_spec_FC='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' - compiler_needs_object_FC=yes - tmp_sharedflag='-G' ;; - *Sun\ F*) # Sun Fortran 8.3 - tmp_sharedflag='-G' ;; - esac - archive_cmds_FC='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - - if test "x$supports_anon_versioning" = xyes; then - archive_expsym_cmds_FC='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi - - case $cc_basename in - xlf*) - # IBM XL Fortran 10.1 on PPC cannot create shared libs itself - whole_archive_flag_spec_FC='--whole-archive$convenience --no-whole-archive' - hardcode_libdir_flag_spec_FC= - hardcode_libdir_flag_spec_ld_FC='-rpath $libdir' - archive_cmds_FC='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then - archive_expsym_cmds_FC='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' - fi - ;; - esac - else - ld_shlibs_FC=no - fi - ;; - - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - archive_cmds_FC='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' - wlarc= - else - archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - fi - ;; - - solaris*) - if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then - ld_shlibs_FC=no - cat <<_LT_EOF 1>&2 - -*** Warning: The releases 2.8.* of the GNU linker cannot reliably -*** create shared libraries on Solaris systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.9.1 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs_FC=no - fi - ;; - - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) - ld_shlibs_FC=no - cat <<_LT_EOF 1>&2 - -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not -*** reliably create shared libraries on SCO systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.16.91.0.3 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - ;; - *) - # For security reasons, it is highly recommended that you always - # use absolute paths for naming shared libraries, and exclude the - # DT_RUNPATH tag from executables and libraries. But doing so - # requires that you compile everything twice, which is a pain. - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - hardcode_libdir_flag_spec_FC='${wl}-rpath ${wl}$libdir' - archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs_FC=no - fi - ;; - esac - ;; - - sunos4*) - archive_cmds_FC='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' - wlarc= - hardcode_direct_FC=yes - hardcode_shlibpath_var_FC=no - ;; - - *) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs_FC=no - fi - ;; - esac - - if test "$ld_shlibs_FC" = no; then - runpath_var= - hardcode_libdir_flag_spec_FC= - export_dynamic_flag_spec_FC= - whole_archive_flag_spec_FC= - fi - else - # PORTME fill in a description of your system's linker (not GNU ld) - case $host_os in - aix3*) - allow_undefined_flag_FC=unsupported - always_export_symbols_FC=yes - archive_expsym_cmds_FC='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' - # Note: this linker hardcodes the directories in LIBPATH if there - # are no directories specified by -L. - hardcode_minus_L_FC=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then - # Neither direct hardcoding nor static linking is supported with a - # broken collect2. - hardcode_direct_FC=unsupported - fi - ;; - - aix[4-9]*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - export_symbols_cmds_FC='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - else - export_symbols_cmds_FC='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - fi - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) - for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then - aix_use_runtimelinking=yes - break - fi - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - archive_cmds_FC='' - hardcode_direct_FC=yes - hardcode_direct_absolute_FC=yes - hardcode_libdir_separator_FC=':' - link_all_deplibs_FC=yes - file_list_spec_FC='${wl}-f,' - - if test "$GCC" = yes; then - case $host_os in aix4.[012]|aix4.[012].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && - strings "$collect2name" | $GREP resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - hardcode_direct_FC=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - hardcode_minus_L_FC=yes - hardcode_libdir_flag_spec_FC='-L$libdir' - hardcode_libdir_separator_FC= - fi - ;; - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - link_all_deplibs_FC=no - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - export_dynamic_flag_spec_FC='${wl}-bexpall' - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - always_export_symbols_FC=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - allow_undefined_flag_FC='-berok' - # Determine the default libpath from the value encoded in an - # empty executable. - cat > conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -if ac_fn_fc_try_link "$LINENO"; then : - -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi - - hardcode_libdir_flag_spec_FC='${wl}-blibpath:$libdir:'"$aix_libpath" - archive_expsym_cmds_FC='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec_FC='${wl}-R $libdir:/usr/lib:/lib' - allow_undefined_flag_FC="-z nodefs" - archive_expsym_cmds_FC="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an - # empty executable. - cat > conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -if ac_fn_fc_try_link "$LINENO"; then : - -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi - - hardcode_libdir_flag_spec_FC='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - no_undefined_flag_FC=' ${wl}-bernotok' - allow_undefined_flag_FC=' ${wl}-berok' - # Exported symbols can be pulled into shared objects from archives - whole_archive_flag_spec_FC='$convenience' - archive_cmds_need_lc_FC=yes - # This is similar to how AIX traditionally builds its shared libraries. - archive_expsym_cmds_FC="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_FC='' - ;; - m68k) - archive_cmds_FC='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - hardcode_libdir_flag_spec_FC='-L$libdir' - hardcode_minus_L_FC=yes - ;; - esac - ;; - - bsdi[45]*) - export_dynamic_flag_spec_FC=-rdynamic - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - hardcode_libdir_flag_spec_FC=' ' - allow_undefined_flag_FC=unsupported - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" - # FIXME: Setting linknames here is a bad hack. - archive_cmds_FC='$CC -o $lib $libobjs $compiler_flags `$ECHO "X$deplibs" | $Xsed -e '\''s/ -lc$//'\''` -link -dll~linknames=' - # The linker will automatically build a .lib file if we build a DLL. - old_archive_from_new_cmds_FC='true' - # FIXME: Should let the user specify the lib program. - old_archive_cmds_FC='lib -OUT:$oldlib$oldobjs$old_deplibs' - fix_srcfile_path_FC='`cygpath -w "$srcfile"`' - enable_shared_with_static_runtimes_FC=yes - ;; - - darwin* | rhapsody*) - - - archive_cmds_need_lc_FC=no - hardcode_direct_FC=no - hardcode_automatic_FC=yes - hardcode_shlibpath_var_FC=unsupported - whole_archive_flag_spec_FC='' - link_all_deplibs_FC=yes - allow_undefined_flag_FC="$_lt_dar_allow_undefined" - case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; - *) _lt_dar_can_shared=$GCC ;; - esac - if test "$_lt_dar_can_shared" = "yes"; then - output_verbose_link_cmd=echo - archive_cmds_FC="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - module_cmds_FC="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - archive_expsym_cmds_FC="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - module_expsym_cmds_FC="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" - - else - ld_shlibs_FC=no - fi - - ;; - - dgux*) - archive_cmds_FC='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec_FC='-L$libdir' - hardcode_shlibpath_var_FC=no - ;; - - freebsd1*) - ld_shlibs_FC=no - ;; - - # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor - # support. Future versions do this automatically, but an explicit c++rt0.o - # does not break anything, and helps significantly (at the cost of a little - # extra space). - freebsd2.2*) - archive_cmds_FC='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' - hardcode_libdir_flag_spec_FC='-R$libdir' - hardcode_direct_FC=yes - hardcode_shlibpath_var_FC=no - ;; - - # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2*) - archive_cmds_FC='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct_FC=yes - hardcode_minus_L_FC=yes - hardcode_shlibpath_var_FC=no - ;; - - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | dragonfly*) - archive_cmds_FC='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec_FC='-R$libdir' - hardcode_direct_FC=yes - hardcode_shlibpath_var_FC=no - ;; - - hpux9*) - if test "$GCC" = yes; then - archive_cmds_FC='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - archive_cmds_FC='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - fi - hardcode_libdir_flag_spec_FC='${wl}+b ${wl}$libdir' - hardcode_libdir_separator_FC=: - hardcode_direct_FC=yes - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L_FC=yes - export_dynamic_flag_spec_FC='${wl}-E' - ;; - - hpux10*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - archive_cmds_FC='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds_FC='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' - fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec_FC='${wl}+b ${wl}$libdir' - hardcode_libdir_flag_spec_ld_FC='+b $libdir' - hardcode_libdir_separator_FC=: - hardcode_direct_FC=yes - hardcode_direct_absolute_FC=yes - export_dynamic_flag_spec_FC='${wl}-E' - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L_FC=yes - fi - ;; - - hpux11*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - case $host_cpu in - hppa*64*) - archive_cmds_FC='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - archive_cmds_FC='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds_FC='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - else - case $host_cpu in - hppa*64*) - archive_cmds_FC='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - archive_cmds_FC='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds_FC='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec_FC='${wl}+b ${wl}$libdir' - hardcode_libdir_separator_FC=: - - case $host_cpu in - hppa*64*|ia64*) - hardcode_direct_FC=no - hardcode_shlibpath_var_FC=no - ;; - *) - hardcode_direct_FC=yes - hardcode_direct_absolute_FC=yes - export_dynamic_flag_spec_FC='${wl}-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L_FC=yes - ;; - esac - fi - ;; - - irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - # Try to use the -exported_symbol ld option, if it does not - # work, assume that -exports_file does not work either and - # implicitly export all symbols. - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" - cat > conftest.$ac_ext <<_ACEOF -int foo(void) {} -_ACEOF -if ac_fn_fc_try_link "$LINENO"; then : - archive_expsym_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' - -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS="$save_LDFLAGS" - else - archive_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - archive_expsym_cmds_FC='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' - fi - archive_cmds_need_lc_FC='no' - hardcode_libdir_flag_spec_FC='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_FC=: - inherit_rpath_FC=yes - link_all_deplibs_FC=yes - ;; - - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - archive_cmds_FC='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out - else - archive_cmds_FC='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF - fi - hardcode_libdir_flag_spec_FC='-R$libdir' - hardcode_direct_FC=yes - hardcode_shlibpath_var_FC=no - ;; - - newsos6) - archive_cmds_FC='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct_FC=yes - hardcode_libdir_flag_spec_FC='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_FC=: - hardcode_shlibpath_var_FC=no - ;; - - *nto* | *qnx*) - ;; - - openbsd*) - if test -f /usr/libexec/ld.so; then - hardcode_direct_FC=yes - hardcode_shlibpath_var_FC=no - hardcode_direct_absolute_FC=yes - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - archive_cmds_FC='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_FC='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - hardcode_libdir_flag_spec_FC='${wl}-rpath,$libdir' - export_dynamic_flag_spec_FC='${wl}-E' - else - case $host_os in - openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) - archive_cmds_FC='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec_FC='-R$libdir' - ;; - *) - archive_cmds_FC='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec_FC='${wl}-rpath,$libdir' - ;; - esac - fi - else - ld_shlibs_FC=no - fi - ;; - - os2*) - hardcode_libdir_flag_spec_FC='-L$libdir' - hardcode_minus_L_FC=yes - allow_undefined_flag_FC=unsupported - archive_cmds_FC='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$ECHO DATA >> $output_objdir/$libname.def~$ECHO " SINGLE NONSHARED" >> $output_objdir/$libname.def~$ECHO EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - old_archive_from_new_cmds_FC='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' - ;; - - osf3*) - if test "$GCC" = yes; then - allow_undefined_flag_FC=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_FC='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - allow_undefined_flag_FC=' -expect_unresolved \*' - archive_cmds_FC='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - fi - archive_cmds_need_lc_FC='no' - hardcode_libdir_flag_spec_FC='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_FC=: - ;; - - osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - allow_undefined_flag_FC=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_FC='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec_FC='${wl}-rpath ${wl}$libdir' - else - allow_undefined_flag_FC=' -expect_unresolved \*' - archive_cmds_FC='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - archive_expsym_cmds_FC='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ - $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' - - # Both c and cxx compiler support -rpath directly - hardcode_libdir_flag_spec_FC='-rpath $libdir' - fi - archive_cmds_need_lc_FC='no' - hardcode_libdir_separator_FC=: - ;; - - solaris*) - no_undefined_flag_FC=' -z defs' - if test "$GCC" = yes; then - wlarc='${wl}' - archive_cmds_FC='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_FC='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' - else - case `$CC -V 2>&1` in - *"Compilers 5.0"*) - wlarc='' - archive_cmds_FC='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' - archive_expsym_cmds_FC='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' - ;; - *) - wlarc='${wl}' - archive_cmds_FC='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_FC='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' - ;; - esac - fi - hardcode_libdir_flag_spec_FC='-R$libdir' - hardcode_shlibpath_var_FC=no - case $host_os in - solaris2.[0-5] | solaris2.[0-5].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', - # but is careful enough not to reorder. - # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - whole_archive_flag_spec_FC='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' - else - whole_archive_flag_spec_FC='-z allextract$convenience -z defaultextract' - fi - ;; - esac - link_all_deplibs_FC=yes - ;; - - sunos4*) - if test "x$host_vendor" = xsequent; then - # Use $CC to link under sequent, because it throws in some extra .o - # files that make .init and .fini sections work. - archive_cmds_FC='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds_FC='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' - fi - hardcode_libdir_flag_spec_FC='-L$libdir' - hardcode_direct_FC=yes - hardcode_minus_L_FC=yes - hardcode_shlibpath_var_FC=no - ;; - - sysv4) - case $host_vendor in - sni) - archive_cmds_FC='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct_FC=yes # is this really true??? - ;; - siemens) - ## LD is ld it makes a PLAMLIB - ## CC just makes a GrossModule. - archive_cmds_FC='$LD -G -o $lib $libobjs $deplibs $linker_flags' - reload_cmds_FC='$CC -r -o $output$reload_objs' - hardcode_direct_FC=no - ;; - motorola) - archive_cmds_FC='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct_FC=no #Motorola manual says yes, but my tests say they lie - ;; - esac - runpath_var='LD_RUN_PATH' - hardcode_shlibpath_var_FC=no - ;; - - sysv4.3*) - archive_cmds_FC='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_shlibpath_var_FC=no - export_dynamic_flag_spec_FC='-Bexport' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - archive_cmds_FC='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_shlibpath_var_FC=no - runpath_var=LD_RUN_PATH - hardcode_runpath_var=yes - ld_shlibs_FC=yes - fi - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag_FC='${wl}-z,text' - archive_cmds_need_lc_FC=no - hardcode_shlibpath_var_FC=no - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - archive_cmds_FC='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_FC='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds_FC='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_FC='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - no_undefined_flag_FC='${wl}-z,text' - allow_undefined_flag_FC='${wl}-z,nodefs' - archive_cmds_need_lc_FC=no - hardcode_shlibpath_var_FC=no - hardcode_libdir_flag_spec_FC='${wl}-R,$libdir' - hardcode_libdir_separator_FC=':' - link_all_deplibs_FC=yes - export_dynamic_flag_spec_FC='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - archive_cmds_FC='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_FC='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds_FC='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_FC='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - uts4*) - archive_cmds_FC='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec_FC='-L$libdir' - hardcode_shlibpath_var_FC=no - ;; - - *) - ld_shlibs_FC=no - ;; - esac - - if test x$host_vendor = xsni; then - case $host in - sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - export_dynamic_flag_spec_FC='${wl}-Blargedynsym' - ;; - esac - fi - fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_FC" >&5 -$as_echo "$ld_shlibs_FC" >&6; } -test "$ld_shlibs_FC" = no && can_build_shared=no - -with_gnu_ld_FC=$with_gnu_ld - - - - - - -# -# Do we need to explicitly link libc? -# -case "x$archive_cmds_need_lc_FC" in -x|xyes) - # Assume -lc should be added - archive_cmds_need_lc_FC=yes - - if test "$enable_shared" = yes && test "$GCC" = yes; then - case $archive_cmds_FC in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 -$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } - $RM conftest* - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } 2>conftest.err; then - soname=conftest - lib=conftest - libobjs=conftest.$ac_objext - deplibs= - wl=$lt_prog_compiler_wl_FC - pic_flag=$lt_prog_compiler_pic_FC - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$allow_undefined_flag_FC - allow_undefined_flag_FC= - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_FC 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 - (eval $archive_cmds_FC 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - then - archive_cmds_need_lc_FC=no - else - archive_cmds_need_lc_FC=yes - fi - allow_undefined_flag_FC=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $RM conftest* - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc_FC" >&5 -$as_echo "$archive_cmds_need_lc_FC" >&6; } - ;; - esac - fi - ;; -esac - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 -$as_echo_n "checking dynamic linker characteristics... " >&6; } - -library_names_spec= -libname_spec='lib$name' -soname_spec= -shrext_cmds=".so" -postinstall_cmds= -postuninstall_cmds= -finish_cmds= -finish_eval= -shlibpath_var= -shlibpath_overrides_runpath=unknown -version_type=none -dynamic_linker="$host_os ld.so" -sys_lib_dlsearch_path_spec="/lib /usr/lib" -need_lib_prefix=unknown -hardcode_into_libs=no - -# when you set need_version to no, make sure it does not cause -set_version -# flags to be left without arguments -need_version=unknown - -case $host_os in -aix3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' - ;; - -aix[4-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - hardcode_into_libs=yes - if test "$host_cpu" = ia64; then - # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - else - # With GCC up to 2.95.x, collect2 would create an import file - # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in - # development snapshots of GCC prior to 3.0. - case $host_os in - aix4 | aix4.[01] | aix4.[01].*) - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' - echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then - : - else - can_build_shared=no - fi - ;; - esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct - # soname into executable. Probably we can add versioning support to - # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then - # If using run time linking (on AIX 4.2 or later) use lib.so - # instead of lib.a to let people know that these are not - # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else - # We preserve .a as extension for shared libraries through AIX4.2 - # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi - shlibpath_var=LIBPATH - fi - ;; - -amigaos*) - case $host_cpu in - powerpc) - # Since July 2007 AmigaOS4 officially supports .so libraries. - # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - ;; - m68k) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; - esac - ;; - -beos*) - library_names_spec='${libname}${shared_ext}' - dynamic_linker="$host_os ld.so" - shlibpath_var=LIBRARY_PATH - ;; - -bsdi[45]*) - version_type=linux - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; - -cygwin* | mingw* | pw32* | cegcc*) - version_type=windows - shrext_cmds=".dll" - need_version=no - need_lib_prefix=no - - case $GCC,$host_os in - yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname~ - if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then - eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; - fi' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - shlibpath_overrides_runpath=yes - - case $host_os in - cygwin*) - # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" - ;; - mingw* | cegcc*) - # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then - # It is most probably a Windows format PATH printed by - # mingw gcc, but we are running on Cygwin. Gcc prints its search - # path with ; separators, and with drive letters. We can handle the - # drive letters (cygwin fileutils understands them), so leave them, - # especially as we might pass files found there to a mingw objdump, - # which wouldn't understand a cygwinified path. Ahh. - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - ;; - pw32*) - # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - ;; - esac - ;; - - *) - library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' - ;; - esac - dynamic_linker='Win32 ld.exe' - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; - -darwin* | rhapsody*) - dynamic_linker="$host_os dyld" - version_type=darwin - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' - shlibpath_overrides_runpath=yes - shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' - - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' - ;; - -dgux*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -freebsd1*) - dynamic_linker=no - ;; - -freebsd* | dragonfly*) - # DragonFly does not have aout. When/if they implement a new - # versioning mechanism, adjust this. - if test -x /usr/bin/objformat; then - objformat=`/usr/bin/objformat` - else - case $host_os in - freebsd[123]*) objformat=aout ;; - *) objformat=elf ;; - esac - fi - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - need_version=no - need_lib_prefix=no - ;; - freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' - need_version=yes - ;; - esac - shlibpath_var=LD_LIBRARY_PATH - case $host_os in - freebsd2*) - shlibpath_overrides_runpath=yes - ;; - freebsd3.[01]* | freebsdelf3.[01]*) - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ - freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - *) # from 4.6 on, and DragonFly - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - esac - ;; - -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - ;; - -hpux9* | hpux10* | hpux11*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - version_type=sunos - need_lib_prefix=no - need_version=no - case $host_cpu in - ia64*) - shrext_cmds='.so' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.so" - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - else - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - ;; - esac - # HP-UX runs *really* slowly unless shared libraries are mode 555. - postinstall_cmds='chmod 555 $lib' - ;; - -interix[3-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -irix5* | irix6* | nonstopux*) - case $host_os in - nonstopux*) version_type=nonstopux ;; - *) - if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux - else - version_type=irix - fi ;; - esac - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' - case $host_os in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in # libtool.m4 will add one of these switches to LD - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") - libsuff= shlibsuff= libmagic=32-bit;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") - libsuff=32 shlibsuff=N32 libmagic=N32;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") - libsuff=64 shlibsuff=64 libmagic=64-bit;; - *) libsuff= shlibsuff= libmagic=never-match;; - esac - ;; - esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - hardcode_into_libs=yes - ;; - -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - # Some binutils ld are patched to set DT_RUNPATH - save_LDFLAGS=$LDFLAGS - save_libdir=$libdir - eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_FC\"; \ - LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_FC\"" - cat > conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -if ac_fn_fc_try_link "$LINENO"; then : - if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : - shlibpath_overrides_runpath=yes -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$save_LDFLAGS - libdir=$save_libdir - - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - # Append ld.so.conf contents to the search path - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" - fi - - # We used to test for /lib/ld.so.1 and disable shared libraries on - # powerpc, because MkLinux only supported shared libraries with the - # GNU dynamic linker. Since this was broken with cross compilers, - # most powerpc-linux boxes support dynamic linking these days and - # people can always --disable-shared, the test was removed, and we - # assume the GNU/Linux dynamic linker is in use. - dynamic_linker='GNU/Linux ld.so' - ;; - -netbsdelf*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='NetBSD ld.elf_so' - ;; - -netbsd*) - version_type=sunos - need_lib_prefix=no - need_version=no - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - dynamic_linker='NetBSD (a.out) ld.so' - else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='NetBSD ld.elf_so' - fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - -newsos6) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -*nto* | *qnx*) - version_type=qnx - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='ldqnx.so' - ;; - -openbsd*) - version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" - need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[89] | openbsd2.[89].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi - ;; - -os2*) - libname_spec='$name' - shrext_cmds=".dll" - need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH - ;; - -osf3* | osf4* | osf5*) - version_type=osf - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" - ;; - -rdos*) - dynamic_linker=no - ;; - -solaris*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - # ldd complains unless libraries are executable - postinstall_cmds='chmod +x $lib' - ;; - -sunos4*) - version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then - need_lib_prefix=no - fi - need_version=yes - ;; - -sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - case $host_vendor in - sni) - shlibpath_overrides_runpath=no - need_lib_prefix=no - runpath_var=LD_RUN_PATH - ;; - siemens) - need_lib_prefix=no - ;; - motorola) - need_lib_prefix=no - need_version=no - shlibpath_overrides_runpath=no - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' - ;; - esac - ;; - -sysv4*MP*) - if test -d /usr/nec ;then - version_type=linux - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' - shlibpath_var=LD_LIBRARY_PATH - fi - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then - sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - case $host_os in - sco3.2v5*) - sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" - ;; - esac - fi - sys_lib_dlsearch_path_spec='/usr/lib' - ;; - -tpf*) - # TPF is a cross-target only. Preferred cross-host = GNU/Linux. - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -uts4*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -*) - dynamic_linker=no - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 -$as_echo "$dynamic_linker" >&6; } -test "$dynamic_linker" = no && can_build_shared=no - -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -fi - -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" -fi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 -$as_echo_n "checking how to hardcode library paths into programs... " >&6; } -hardcode_action_FC= -if test -n "$hardcode_libdir_flag_spec_FC" || - test -n "$runpath_var_FC" || - test "X$hardcode_automatic_FC" = "Xyes" ; then - - # We can hardcode non-existent directories. - if test "$hardcode_direct_FC" != no && - # If the only mechanism to avoid hardcoding is shlibpath_var, we - # have to relink, otherwise we might link with an installed library - # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, FC)" != no && - test "$hardcode_minus_L_FC" != no; then - # Linking always hardcodes the temporary library directory. - hardcode_action_FC=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - hardcode_action_FC=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - hardcode_action_FC=unsupported -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_FC" >&5 -$as_echo "$hardcode_action_FC" >&6; } - -if test "$hardcode_action_FC" = relink || - test "$inherit_rpath_FC" = yes; then - # Fast installation is not supported - enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then - # Fast installation is not necessary - enable_fast_install=needless -fi - - - - - - - - fi # test -n "$compiler" - - GCC=$lt_save_GCC - CC="$lt_save_CC" -fi # test "$_lt_disable_FC" != yes - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - - - - - - - - ac_config_commands="$ac_config_commands libtool" - - - - -# Only expand once: - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 -$as_echo_n "checking whether build environment is sane... " >&6; } -# Just in case -sleep 1 -echo timestamp > conftest.file -# Reject unsafe characters in $srcdir or the absolute working directory -# name. Accept space and tab only in the latter. -am_lf=' -' -case `pwd` in - *[\\\"\#\$\&\'\`$am_lf]*) - as_fn_error "unsafe absolute working directory name" "$LINENO" 5;; -esac -case $srcdir in - *[\\\"\#\$\&\'\`$am_lf\ \ ]*) - as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; -esac - -# Do `set' in a subshell so we don't clobber the current shell's -# arguments. Must try -L first in case configure is actually a -# symlink; some systems play weird games with the mod time of symlinks -# (eg FreeBSD returns the mod time of the symlink's containing -# directory). -if ( - set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` - if test "$*" = "X"; then - # -L didn't work. - set X `ls -t "$srcdir/configure" conftest.file` - fi - rm -f conftest.file - if test "$*" != "X $srcdir/configure conftest.file" \ - && test "$*" != "X conftest.file $srcdir/configure"; then - - # If neither matched, then we have a broken ls. This can happen - # if, for instance, CONFIG_SHELL is bash and it inherits a - # broken ls alias from the environment. This has actually - # happened. Such a system could not be considered "sane". - as_fn_error "ls -t appears to fail. Make sure there is not a broken -alias in your environment" "$LINENO" 5 - fi - - test "$2" = conftest.file - ) -then - # Ok. - : -else - as_fn_error "newly created file is older than distributed files! -Check your system clock" "$LINENO" 5 -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -# ---------------- -# Doxygen support -# ---------------- - -# DX_DOXYGEN_FEATURE(ON) -# DX_HTML_FEATURE(ON) -# DX_CHM_FEATURE(OFF) -# DX_CHI_FEATURE(OFF) - -# DX_MAN_FEATURE(OFF) -# DX_RTF_FEATURE(OFF) -# DX_XML_FEATURE(OFF) -# DX_PDF_FEATURE(ON) -# DX_PS_FEATURE(OFF) -# DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) - -# Generate Output Files -ac_config_files="$ac_config_files Makefile Cantera/Makefile test_problems/Makefile examples/Makefile doxygen/Makefile" - -cat >confcache <<\_ACEOF -# This file is a shell script that caches the results of configure -# tests run on this system so they can be shared between configure -# scripts and configure runs, see configure's option --config-cache. -# It is not useful on other systems. If it contains results you don't -# want to keep, you may remove or edit it. -# -# config.status only pays attention to the cache file if you give it -# the --recheck option to rerun configure. -# -# `ac_cv_env_foo' variables (set or unset) will be overridden when -# loading this file, other *unset* `ac_cv_foo' will be assigned the -# following values. - -_ACEOF - -# The following way of writing the cache mishandles newlines in values, -# but we know of no workaround that is simple, portable, and efficient. -# So, we kill variables containing newlines. -# Ultrix sh set writes to stderr and can't be redirected directly, -# and sets the high bit in the cache file unless we assign to the vars. -( - for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) { eval $ac_var=; unset $ac_var;} ;; - esac ;; - esac - done - - (set) 2>&1 | - case $as_nl`(ac_space=' '; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - # `set' does not quote correctly, so add quotes: double-quote - # substitution turns \\\\ into \\, and sed turns \\ into \. - sed -n \ - "s/'/'\\\\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" - ;; #( - *) - # `set' quotes correctly as required by POSIX, so do not add quotes. - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) | - sed ' - /^ac_cv_env_/b end - t clear - :clear - s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ - t end - s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ - :end' >>confcache -if diff "$cache_file" confcache >/dev/null 2>&1; then :; else - if test -w "$cache_file"; then - test "x$cache_file" != "x/dev/null" && - { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 -$as_echo "$as_me: updating cache $cache_file" >&6;} - cat confcache >$cache_file - else - { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 -$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} - fi -fi -rm -f confcache - -test "x$prefix" = xNONE && prefix=$ac_default_prefix -# Let make expand exec_prefix. -test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - -DEFS=-DHAVE_CONFIG_H - -ac_libobjs= -ac_ltlibobjs= -for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue - # 1. Remove the extension, and $U if already installed. - ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' - ac_i=`$as_echo "$ac_i" | sed "$ac_script"` - # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR - # will be set to the directory where LIBOBJS objects are built. - as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" - as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' -done -LIBOBJS=$ac_libobjs - -LTLIBOBJS=$ac_ltlibobjs - - - if test -n "$EXEEXT"; then - am__EXEEXT_TRUE= - am__EXEEXT_FALSE='#' -else - am__EXEEXT_TRUE='#' - am__EXEEXT_FALSE= -fi - -if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then - as_fn_error "conditional \"AMDEP\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then - as_fn_error "conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then - as_fn_error "conditional \"am__fastdepCXX\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then - as_fn_error "conditional \"am__fastdepCXX\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi - -: ${CONFIG_STATUS=./config.status} -ac_write_fail=0 -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 -$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} -as_write_fail=0 -cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 -#! $SHELL -# Generated by $as_me. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false - -SHELL=\${CONFIG_SHELL-$SHELL} -export SHELL -_ASEOF -cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in #( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -case $0 in #(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - - -# as_fn_error ERROR [LINENO LOG_FD] -# --------------------------------- -# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are -# provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with status $?, using 1 if that was 0. -as_fn_error () -{ - as_status=$?; test $as_status -eq 0 && as_status=1 - if test "$3"; then - as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 - fi - $as_echo "$as_me: error: $1" >&2 - as_fn_exit $as_status -} # as_fn_error - - -# as_fn_set_status STATUS -# ----------------------- -# Set $? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} # as_fn_set_status - -# as_fn_exit STATUS -# ----------------- -# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} # as_fn_exit - -# as_fn_unset VAR -# --------------- -# Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset -# as_fn_append VAR VALUE -# ---------------------- -# Append the text in VALUE to the end of the definition contained in VAR. Take -# advantage of any shell optimizations that allow amortized linear growth over -# repeated appends, instead of the typical quadratic growth present in naive -# implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -# as_fn_arith ARG... -# ------------------ -# Perform arithmetic evaluation on the ARGs, and store the result in the -# global $as_val. Take advantage of shells that can avoid forks. The arguments -# must be portable across $(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in #((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -p' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -p' - fi -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - - -# as_fn_mkdir_p -# ------------- -# Create "$as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" - - -} # as_fn_mkdir_p -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -if test -x / >/dev/null 2>&1; then - as_test_x='test -x' -else - if ls -dL / >/dev/null 2>&1; then - as_ls_L_option=L - else - as_ls_L_option= - fi - as_test_x=' - eval sh -c '\'' - if test -d "$1"; then - test -d "$1/."; - else - case $1 in #( - -*)set "./$1";; - esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( - ???[sx]*):;;*)false;;esac;fi - '\'' sh - ' -fi -as_executable_p=$as_test_x - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -exec 6>&1 -## ----------------------------------- ## -## Main body of $CONFIG_STATUS script. ## -## ----------------------------------- ## -_ASEOF -test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# Save the log message, to keep $0 and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. -ac_log=" -This file was extended by cantera $as_me 1.8.0, which was -generated by GNU Autoconf 2.65. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS - CONFIG_LINKS = $CONFIG_LINKS - CONFIG_COMMANDS = $CONFIG_COMMANDS - $ $0 $@ - -on `(hostname || uname -n) 2>/dev/null | sed 1q` -" - -_ACEOF - -case $ac_config_files in *" -"*) set x $ac_config_files; shift; ac_config_files=$*;; -esac - -case $ac_config_headers in *" -"*) set x $ac_config_headers; shift; ac_config_headers=$*;; -esac - - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -# Files that config.status was made for. -config_files="$ac_config_files" -config_headers="$ac_config_headers" -config_commands="$ac_config_commands" - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -ac_cs_usage="\ -\`$as_me' instantiates files and other configuration actions -from templates according to the current configuration. Unless the files -and actions are specified as TAGs, all are instantiated by default. - -Usage: $0 [OPTION]... [TAG]... - - -h, --help print this help, then exit - -V, --version print version number and configuration settings, then exit - --config print configuration, then exit - -q, --quiet, --silent - do not print progress messages - -d, --debug don't remove temporary files - --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE - -Configuration files: -$config_files - -Configuration headers: -$config_headers - -Configuration commands: -$config_commands - -Report bugs to ." - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" -ac_cs_version="\\ -cantera config.status 1.8.0 -configured by $0, generated by GNU Autoconf 2.65, - with options \\"\$ac_cs_config\\" - -Copyright (C) 2009 Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." - -ac_pwd='$ac_pwd' -srcdir='$srcdir' -INSTALL='$INSTALL' -MKDIR_P='$MKDIR_P' -AWK='$AWK' -test -n "\$AWK" || AWK=awk -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# The default lists apply if the user does not specify any file. -ac_need_defaults=: -while test $# != 0 -do - case $1 in - --*=*) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` - ac_shift=: - ;; - *) - ac_option=$1 - ac_optarg=$2 - ac_shift=shift - ;; - esac - - case $ac_option in - # Handling of the options. - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - ac_cs_recheck=: ;; - --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) - $as_echo "$ac_cs_version"; exit ;; - --config | --confi | --conf | --con | --co | --c ) - $as_echo "$ac_cs_config"; exit ;; - --debug | --debu | --deb | --de | --d | -d ) - debug=: ;; - --file | --fil | --fi | --f ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - as_fn_append CONFIG_FILES " '$ac_optarg'" - ac_need_defaults=false;; - --header | --heade | --head | --hea ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - as_fn_append CONFIG_HEADERS " '$ac_optarg'" - ac_need_defaults=false;; - --he | --h) - # Conflict between --help and --header - as_fn_error "ambiguous option: \`$1' -Try \`$0 --help' for more information.";; - --help | --hel | -h ) - $as_echo "$ac_cs_usage"; exit ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil | --si | --s) - ac_cs_silent=: ;; - - # This is an error. - -*) as_fn_error "unrecognized option: \`$1' -Try \`$0 --help' for more information." ;; - - *) as_fn_append ac_config_targets " $1" - ac_need_defaults=false ;; - - esac - shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then - exec 6>/dev/null - ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -if \$ac_cs_recheck; then - set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion - shift - \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 - CONFIG_SHELL='$SHELL' - export CONFIG_SHELL - exec "\$@" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX - $as_echo "$ac_log" -} >&5 - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -# -# INIT-COMMANDS -# -AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" - - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -sed_quote_subst='$sed_quote_subst' -double_quote_subst='$double_quote_subst' -delay_variable_subst='$delay_variable_subst' -macro_version='`$ECHO "X$macro_version" | $Xsed -e "$delay_single_quote_subst"`' -macro_revision='`$ECHO "X$macro_revision" | $Xsed -e "$delay_single_quote_subst"`' -enable_shared='`$ECHO "X$enable_shared" | $Xsed -e "$delay_single_quote_subst"`' -enable_static='`$ECHO "X$enable_static" | $Xsed -e "$delay_single_quote_subst"`' -pic_mode='`$ECHO "X$pic_mode" | $Xsed -e "$delay_single_quote_subst"`' -enable_fast_install='`$ECHO "X$enable_fast_install" | $Xsed -e "$delay_single_quote_subst"`' -host_alias='`$ECHO "X$host_alias" | $Xsed -e "$delay_single_quote_subst"`' -host='`$ECHO "X$host" | $Xsed -e "$delay_single_quote_subst"`' -host_os='`$ECHO "X$host_os" | $Xsed -e "$delay_single_quote_subst"`' -build_alias='`$ECHO "X$build_alias" | $Xsed -e "$delay_single_quote_subst"`' -build='`$ECHO "X$build" | $Xsed -e "$delay_single_quote_subst"`' -build_os='`$ECHO "X$build_os" | $Xsed -e "$delay_single_quote_subst"`' -SED='`$ECHO "X$SED" | $Xsed -e "$delay_single_quote_subst"`' -Xsed='`$ECHO "X$Xsed" | $Xsed -e "$delay_single_quote_subst"`' -GREP='`$ECHO "X$GREP" | $Xsed -e "$delay_single_quote_subst"`' -EGREP='`$ECHO "X$EGREP" | $Xsed -e "$delay_single_quote_subst"`' -FGREP='`$ECHO "X$FGREP" | $Xsed -e "$delay_single_quote_subst"`' -LD='`$ECHO "X$LD" | $Xsed -e "$delay_single_quote_subst"`' -NM='`$ECHO "X$NM" | $Xsed -e "$delay_single_quote_subst"`' -LN_S='`$ECHO "X$LN_S" | $Xsed -e "$delay_single_quote_subst"`' -max_cmd_len='`$ECHO "X$max_cmd_len" | $Xsed -e "$delay_single_quote_subst"`' -ac_objext='`$ECHO "X$ac_objext" | $Xsed -e "$delay_single_quote_subst"`' -exeext='`$ECHO "X$exeext" | $Xsed -e "$delay_single_quote_subst"`' -lt_unset='`$ECHO "X$lt_unset" | $Xsed -e "$delay_single_quote_subst"`' -lt_SP2NL='`$ECHO "X$lt_SP2NL" | $Xsed -e "$delay_single_quote_subst"`' -lt_NL2SP='`$ECHO "X$lt_NL2SP" | $Xsed -e "$delay_single_quote_subst"`' -reload_flag='`$ECHO "X$reload_flag" | $Xsed -e "$delay_single_quote_subst"`' -reload_cmds='`$ECHO "X$reload_cmds" | $Xsed -e "$delay_single_quote_subst"`' -OBJDUMP='`$ECHO "X$OBJDUMP" | $Xsed -e "$delay_single_quote_subst"`' -deplibs_check_method='`$ECHO "X$deplibs_check_method" | $Xsed -e "$delay_single_quote_subst"`' -file_magic_cmd='`$ECHO "X$file_magic_cmd" | $Xsed -e "$delay_single_quote_subst"`' -AR='`$ECHO "X$AR" | $Xsed -e "$delay_single_quote_subst"`' -AR_FLAGS='`$ECHO "X$AR_FLAGS" | $Xsed -e "$delay_single_quote_subst"`' -STRIP='`$ECHO "X$STRIP" | $Xsed -e "$delay_single_quote_subst"`' -RANLIB='`$ECHO "X$RANLIB" | $Xsed -e "$delay_single_quote_subst"`' -old_postinstall_cmds='`$ECHO "X$old_postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' -old_postuninstall_cmds='`$ECHO "X$old_postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' -old_archive_cmds='`$ECHO "X$old_archive_cmds" | $Xsed -e "$delay_single_quote_subst"`' -CC='`$ECHO "X$CC" | $Xsed -e "$delay_single_quote_subst"`' -CFLAGS='`$ECHO "X$CFLAGS" | $Xsed -e "$delay_single_quote_subst"`' -compiler='`$ECHO "X$compiler" | $Xsed -e "$delay_single_quote_subst"`' -GCC='`$ECHO "X$GCC" | $Xsed -e "$delay_single_quote_subst"`' -lt_cv_sys_global_symbol_pipe='`$ECHO "X$lt_cv_sys_global_symbol_pipe" | $Xsed -e "$delay_single_quote_subst"`' -lt_cv_sys_global_symbol_to_cdecl='`$ECHO "X$lt_cv_sys_global_symbol_to_cdecl" | $Xsed -e "$delay_single_quote_subst"`' -lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address" | $Xsed -e "$delay_single_quote_subst"`' -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`' -objdir='`$ECHO "X$objdir" | $Xsed -e "$delay_single_quote_subst"`' -SHELL='`$ECHO "X$SHELL" | $Xsed -e "$delay_single_quote_subst"`' -ECHO='`$ECHO "X$ECHO" | $Xsed -e "$delay_single_quote_subst"`' -MAGIC_CMD='`$ECHO "X$MAGIC_CMD" | $Xsed -e "$delay_single_quote_subst"`' -lt_prog_compiler_no_builtin_flag='`$ECHO "X$lt_prog_compiler_no_builtin_flag" | $Xsed -e "$delay_single_quote_subst"`' -lt_prog_compiler_wl='`$ECHO "X$lt_prog_compiler_wl" | $Xsed -e "$delay_single_quote_subst"`' -lt_prog_compiler_pic='`$ECHO "X$lt_prog_compiler_pic" | $Xsed -e "$delay_single_quote_subst"`' -lt_prog_compiler_static='`$ECHO "X$lt_prog_compiler_static" | $Xsed -e "$delay_single_quote_subst"`' -lt_cv_prog_compiler_c_o='`$ECHO "X$lt_cv_prog_compiler_c_o" | $Xsed -e "$delay_single_quote_subst"`' -need_locks='`$ECHO "X$need_locks" | $Xsed -e "$delay_single_quote_subst"`' -DSYMUTIL='`$ECHO "X$DSYMUTIL" | $Xsed -e "$delay_single_quote_subst"`' -NMEDIT='`$ECHO "X$NMEDIT" | $Xsed -e "$delay_single_quote_subst"`' -LIPO='`$ECHO "X$LIPO" | $Xsed -e "$delay_single_quote_subst"`' -OTOOL='`$ECHO "X$OTOOL" | $Xsed -e "$delay_single_quote_subst"`' -OTOOL64='`$ECHO "X$OTOOL64" | $Xsed -e "$delay_single_quote_subst"`' -libext='`$ECHO "X$libext" | $Xsed -e "$delay_single_quote_subst"`' -shrext_cmds='`$ECHO "X$shrext_cmds" | $Xsed -e "$delay_single_quote_subst"`' -extract_expsyms_cmds='`$ECHO "X$extract_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`' -archive_cmds_need_lc='`$ECHO "X$archive_cmds_need_lc" | $Xsed -e "$delay_single_quote_subst"`' -enable_shared_with_static_runtimes='`$ECHO "X$enable_shared_with_static_runtimes" | $Xsed -e "$delay_single_quote_subst"`' -export_dynamic_flag_spec='`$ECHO "X$export_dynamic_flag_spec" | $Xsed -e "$delay_single_quote_subst"`' -whole_archive_flag_spec='`$ECHO "X$whole_archive_flag_spec" | $Xsed -e "$delay_single_quote_subst"`' -compiler_needs_object='`$ECHO "X$compiler_needs_object" | $Xsed -e "$delay_single_quote_subst"`' -old_archive_from_new_cmds='`$ECHO "X$old_archive_from_new_cmds" | $Xsed -e "$delay_single_quote_subst"`' -old_archive_from_expsyms_cmds='`$ECHO "X$old_archive_from_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`' -archive_cmds='`$ECHO "X$archive_cmds" | $Xsed -e "$delay_single_quote_subst"`' -archive_expsym_cmds='`$ECHO "X$archive_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`' -module_cmds='`$ECHO "X$module_cmds" | $Xsed -e "$delay_single_quote_subst"`' -module_expsym_cmds='`$ECHO "X$module_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`' -with_gnu_ld='`$ECHO "X$with_gnu_ld" | $Xsed -e "$delay_single_quote_subst"`' -allow_undefined_flag='`$ECHO "X$allow_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`' -no_undefined_flag='`$ECHO "X$no_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_libdir_flag_spec='`$ECHO "X$hardcode_libdir_flag_spec" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_libdir_flag_spec_ld='`$ECHO "X$hardcode_libdir_flag_spec_ld" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_libdir_separator='`$ECHO "X$hardcode_libdir_separator" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_direct='`$ECHO "X$hardcode_direct" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_direct_absolute='`$ECHO "X$hardcode_direct_absolute" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_minus_L='`$ECHO "X$hardcode_minus_L" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_shlibpath_var='`$ECHO "X$hardcode_shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_automatic='`$ECHO "X$hardcode_automatic" | $Xsed -e "$delay_single_quote_subst"`' -inherit_rpath='`$ECHO "X$inherit_rpath" | $Xsed -e "$delay_single_quote_subst"`' -link_all_deplibs='`$ECHO "X$link_all_deplibs" | $Xsed -e "$delay_single_quote_subst"`' -fix_srcfile_path='`$ECHO "X$fix_srcfile_path" | $Xsed -e "$delay_single_quote_subst"`' -always_export_symbols='`$ECHO "X$always_export_symbols" | $Xsed -e "$delay_single_quote_subst"`' -export_symbols_cmds='`$ECHO "X$export_symbols_cmds" | $Xsed -e "$delay_single_quote_subst"`' -exclude_expsyms='`$ECHO "X$exclude_expsyms" | $Xsed -e "$delay_single_quote_subst"`' -include_expsyms='`$ECHO "X$include_expsyms" | $Xsed -e "$delay_single_quote_subst"`' -prelink_cmds='`$ECHO "X$prelink_cmds" | $Xsed -e "$delay_single_quote_subst"`' -file_list_spec='`$ECHO "X$file_list_spec" | $Xsed -e "$delay_single_quote_subst"`' -variables_saved_for_relink='`$ECHO "X$variables_saved_for_relink" | $Xsed -e "$delay_single_quote_subst"`' -need_lib_prefix='`$ECHO "X$need_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`' -need_version='`$ECHO "X$need_version" | $Xsed -e "$delay_single_quote_subst"`' -version_type='`$ECHO "X$version_type" | $Xsed -e "$delay_single_quote_subst"`' -runpath_var='`$ECHO "X$runpath_var" | $Xsed -e "$delay_single_quote_subst"`' -shlibpath_var='`$ECHO "X$shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`' -shlibpath_overrides_runpath='`$ECHO "X$shlibpath_overrides_runpath" | $Xsed -e "$delay_single_quote_subst"`' -libname_spec='`$ECHO "X$libname_spec" | $Xsed -e "$delay_single_quote_subst"`' -library_names_spec='`$ECHO "X$library_names_spec" | $Xsed -e "$delay_single_quote_subst"`' -soname_spec='`$ECHO "X$soname_spec" | $Xsed -e "$delay_single_quote_subst"`' -postinstall_cmds='`$ECHO "X$postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' -postuninstall_cmds='`$ECHO "X$postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' -finish_cmds='`$ECHO "X$finish_cmds" | $Xsed -e "$delay_single_quote_subst"`' -finish_eval='`$ECHO "X$finish_eval" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_into_libs='`$ECHO "X$hardcode_into_libs" | $Xsed -e "$delay_single_quote_subst"`' -sys_lib_search_path_spec='`$ECHO "X$sys_lib_search_path_spec" | $Xsed -e "$delay_single_quote_subst"`' -sys_lib_dlsearch_path_spec='`$ECHO "X$sys_lib_dlsearch_path_spec" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_action='`$ECHO "X$hardcode_action" | $Xsed -e "$delay_single_quote_subst"`' -enable_dlopen='`$ECHO "X$enable_dlopen" | $Xsed -e "$delay_single_quote_subst"`' -enable_dlopen_self='`$ECHO "X$enable_dlopen_self" | $Xsed -e "$delay_single_quote_subst"`' -enable_dlopen_self_static='`$ECHO "X$enable_dlopen_self_static" | $Xsed -e "$delay_single_quote_subst"`' -old_striplib='`$ECHO "X$old_striplib" | $Xsed -e "$delay_single_quote_subst"`' -striplib='`$ECHO "X$striplib" | $Xsed -e "$delay_single_quote_subst"`' -compiler_lib_search_dirs='`$ECHO "X$compiler_lib_search_dirs" | $Xsed -e "$delay_single_quote_subst"`' -predep_objects='`$ECHO "X$predep_objects" | $Xsed -e "$delay_single_quote_subst"`' -postdep_objects='`$ECHO "X$postdep_objects" | $Xsed -e "$delay_single_quote_subst"`' -predeps='`$ECHO "X$predeps" | $Xsed -e "$delay_single_quote_subst"`' -postdeps='`$ECHO "X$postdeps" | $Xsed -e "$delay_single_quote_subst"`' -compiler_lib_search_path='`$ECHO "X$compiler_lib_search_path" | $Xsed -e "$delay_single_quote_subst"`' -LD_CXX='`$ECHO "X$LD_CXX" | $Xsed -e "$delay_single_quote_subst"`' -LD_F77='`$ECHO "X$LD_F77" | $Xsed -e "$delay_single_quote_subst"`' -LD_FC='`$ECHO "X$LD_FC" | $Xsed -e "$delay_single_quote_subst"`' -old_archive_cmds_CXX='`$ECHO "X$old_archive_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' -old_archive_cmds_F77='`$ECHO "X$old_archive_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' -old_archive_cmds_FC='`$ECHO "X$old_archive_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' -compiler_CXX='`$ECHO "X$compiler_CXX" | $Xsed -e "$delay_single_quote_subst"`' -compiler_F77='`$ECHO "X$compiler_F77" | $Xsed -e "$delay_single_quote_subst"`' -compiler_FC='`$ECHO "X$compiler_FC" | $Xsed -e "$delay_single_quote_subst"`' -GCC_CXX='`$ECHO "X$GCC_CXX" | $Xsed -e "$delay_single_quote_subst"`' -GCC_F77='`$ECHO "X$GCC_F77" | $Xsed -e "$delay_single_quote_subst"`' -GCC_FC='`$ECHO "X$GCC_FC" | $Xsed -e "$delay_single_quote_subst"`' -lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "X$lt_prog_compiler_no_builtin_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`' -lt_prog_compiler_no_builtin_flag_F77='`$ECHO "X$lt_prog_compiler_no_builtin_flag_F77" | $Xsed -e "$delay_single_quote_subst"`' -lt_prog_compiler_no_builtin_flag_FC='`$ECHO "X$lt_prog_compiler_no_builtin_flag_FC" | $Xsed -e "$delay_single_quote_subst"`' -lt_prog_compiler_wl_CXX='`$ECHO "X$lt_prog_compiler_wl_CXX" | $Xsed -e "$delay_single_quote_subst"`' -lt_prog_compiler_wl_F77='`$ECHO "X$lt_prog_compiler_wl_F77" | $Xsed -e "$delay_single_quote_subst"`' -lt_prog_compiler_wl_FC='`$ECHO "X$lt_prog_compiler_wl_FC" | $Xsed -e "$delay_single_quote_subst"`' -lt_prog_compiler_pic_CXX='`$ECHO "X$lt_prog_compiler_pic_CXX" | $Xsed -e "$delay_single_quote_subst"`' -lt_prog_compiler_pic_F77='`$ECHO "X$lt_prog_compiler_pic_F77" | $Xsed -e "$delay_single_quote_subst"`' -lt_prog_compiler_pic_FC='`$ECHO "X$lt_prog_compiler_pic_FC" | $Xsed -e "$delay_single_quote_subst"`' -lt_prog_compiler_static_CXX='`$ECHO "X$lt_prog_compiler_static_CXX" | $Xsed -e "$delay_single_quote_subst"`' -lt_prog_compiler_static_F77='`$ECHO "X$lt_prog_compiler_static_F77" | $Xsed -e "$delay_single_quote_subst"`' -lt_prog_compiler_static_FC='`$ECHO "X$lt_prog_compiler_static_FC" | $Xsed -e "$delay_single_quote_subst"`' -lt_cv_prog_compiler_c_o_CXX='`$ECHO "X$lt_cv_prog_compiler_c_o_CXX" | $Xsed -e "$delay_single_quote_subst"`' -lt_cv_prog_compiler_c_o_F77='`$ECHO "X$lt_cv_prog_compiler_c_o_F77" | $Xsed -e "$delay_single_quote_subst"`' -lt_cv_prog_compiler_c_o_FC='`$ECHO "X$lt_cv_prog_compiler_c_o_FC" | $Xsed -e "$delay_single_quote_subst"`' -archive_cmds_need_lc_CXX='`$ECHO "X$archive_cmds_need_lc_CXX" | $Xsed -e "$delay_single_quote_subst"`' -archive_cmds_need_lc_F77='`$ECHO "X$archive_cmds_need_lc_F77" | $Xsed -e "$delay_single_quote_subst"`' -archive_cmds_need_lc_FC='`$ECHO "X$archive_cmds_need_lc_FC" | $Xsed -e "$delay_single_quote_subst"`' -enable_shared_with_static_runtimes_CXX='`$ECHO "X$enable_shared_with_static_runtimes_CXX" | $Xsed -e "$delay_single_quote_subst"`' -enable_shared_with_static_runtimes_F77='`$ECHO "X$enable_shared_with_static_runtimes_F77" | $Xsed -e "$delay_single_quote_subst"`' -enable_shared_with_static_runtimes_FC='`$ECHO "X$enable_shared_with_static_runtimes_FC" | $Xsed -e "$delay_single_quote_subst"`' -export_dynamic_flag_spec_CXX='`$ECHO "X$export_dynamic_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`' -export_dynamic_flag_spec_F77='`$ECHO "X$export_dynamic_flag_spec_F77" | $Xsed -e "$delay_single_quote_subst"`' -export_dynamic_flag_spec_FC='`$ECHO "X$export_dynamic_flag_spec_FC" | $Xsed -e "$delay_single_quote_subst"`' -whole_archive_flag_spec_CXX='`$ECHO "X$whole_archive_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`' -whole_archive_flag_spec_F77='`$ECHO "X$whole_archive_flag_spec_F77" | $Xsed -e "$delay_single_quote_subst"`' -whole_archive_flag_spec_FC='`$ECHO "X$whole_archive_flag_spec_FC" | $Xsed -e "$delay_single_quote_subst"`' -compiler_needs_object_CXX='`$ECHO "X$compiler_needs_object_CXX" | $Xsed -e "$delay_single_quote_subst"`' -compiler_needs_object_F77='`$ECHO "X$compiler_needs_object_F77" | $Xsed -e "$delay_single_quote_subst"`' -compiler_needs_object_FC='`$ECHO "X$compiler_needs_object_FC" | $Xsed -e "$delay_single_quote_subst"`' -old_archive_from_new_cmds_CXX='`$ECHO "X$old_archive_from_new_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' -old_archive_from_new_cmds_F77='`$ECHO "X$old_archive_from_new_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' -old_archive_from_new_cmds_FC='`$ECHO "X$old_archive_from_new_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' -old_archive_from_expsyms_cmds_CXX='`$ECHO "X$old_archive_from_expsyms_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' -old_archive_from_expsyms_cmds_F77='`$ECHO "X$old_archive_from_expsyms_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' -old_archive_from_expsyms_cmds_FC='`$ECHO "X$old_archive_from_expsyms_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' -archive_cmds_CXX='`$ECHO "X$archive_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' -archive_cmds_F77='`$ECHO "X$archive_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' -archive_cmds_FC='`$ECHO "X$archive_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' -archive_expsym_cmds_CXX='`$ECHO "X$archive_expsym_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' -archive_expsym_cmds_F77='`$ECHO "X$archive_expsym_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' -archive_expsym_cmds_FC='`$ECHO "X$archive_expsym_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' -module_cmds_CXX='`$ECHO "X$module_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' -module_cmds_F77='`$ECHO "X$module_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' -module_cmds_FC='`$ECHO "X$module_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' -module_expsym_cmds_CXX='`$ECHO "X$module_expsym_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' -module_expsym_cmds_F77='`$ECHO "X$module_expsym_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' -module_expsym_cmds_FC='`$ECHO "X$module_expsym_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' -with_gnu_ld_CXX='`$ECHO "X$with_gnu_ld_CXX" | $Xsed -e "$delay_single_quote_subst"`' -with_gnu_ld_F77='`$ECHO "X$with_gnu_ld_F77" | $Xsed -e "$delay_single_quote_subst"`' -with_gnu_ld_FC='`$ECHO "X$with_gnu_ld_FC" | $Xsed -e "$delay_single_quote_subst"`' -allow_undefined_flag_CXX='`$ECHO "X$allow_undefined_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`' -allow_undefined_flag_F77='`$ECHO "X$allow_undefined_flag_F77" | $Xsed -e "$delay_single_quote_subst"`' -allow_undefined_flag_FC='`$ECHO "X$allow_undefined_flag_FC" | $Xsed -e "$delay_single_quote_subst"`' -no_undefined_flag_CXX='`$ECHO "X$no_undefined_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`' -no_undefined_flag_F77='`$ECHO "X$no_undefined_flag_F77" | $Xsed -e "$delay_single_quote_subst"`' -no_undefined_flag_FC='`$ECHO "X$no_undefined_flag_FC" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_libdir_flag_spec_CXX='`$ECHO "X$hardcode_libdir_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_libdir_flag_spec_F77='`$ECHO "X$hardcode_libdir_flag_spec_F77" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_libdir_flag_spec_FC='`$ECHO "X$hardcode_libdir_flag_spec_FC" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_libdir_flag_spec_ld_CXX='`$ECHO "X$hardcode_libdir_flag_spec_ld_CXX" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_libdir_flag_spec_ld_F77='`$ECHO "X$hardcode_libdir_flag_spec_ld_F77" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_libdir_flag_spec_ld_FC='`$ECHO "X$hardcode_libdir_flag_spec_ld_FC" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_libdir_separator_CXX='`$ECHO "X$hardcode_libdir_separator_CXX" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_libdir_separator_F77='`$ECHO "X$hardcode_libdir_separator_F77" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_libdir_separator_FC='`$ECHO "X$hardcode_libdir_separator_FC" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_direct_CXX='`$ECHO "X$hardcode_direct_CXX" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_direct_F77='`$ECHO "X$hardcode_direct_F77" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_direct_FC='`$ECHO "X$hardcode_direct_FC" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_direct_absolute_CXX='`$ECHO "X$hardcode_direct_absolute_CXX" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_direct_absolute_F77='`$ECHO "X$hardcode_direct_absolute_F77" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_direct_absolute_FC='`$ECHO "X$hardcode_direct_absolute_FC" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_minus_L_CXX='`$ECHO "X$hardcode_minus_L_CXX" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_minus_L_F77='`$ECHO "X$hardcode_minus_L_F77" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_minus_L_FC='`$ECHO "X$hardcode_minus_L_FC" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_shlibpath_var_CXX='`$ECHO "X$hardcode_shlibpath_var_CXX" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_shlibpath_var_F77='`$ECHO "X$hardcode_shlibpath_var_F77" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_shlibpath_var_FC='`$ECHO "X$hardcode_shlibpath_var_FC" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_automatic_CXX='`$ECHO "X$hardcode_automatic_CXX" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_automatic_F77='`$ECHO "X$hardcode_automatic_F77" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_automatic_FC='`$ECHO "X$hardcode_automatic_FC" | $Xsed -e "$delay_single_quote_subst"`' -inherit_rpath_CXX='`$ECHO "X$inherit_rpath_CXX" | $Xsed -e "$delay_single_quote_subst"`' -inherit_rpath_F77='`$ECHO "X$inherit_rpath_F77" | $Xsed -e "$delay_single_quote_subst"`' -inherit_rpath_FC='`$ECHO "X$inherit_rpath_FC" | $Xsed -e "$delay_single_quote_subst"`' -link_all_deplibs_CXX='`$ECHO "X$link_all_deplibs_CXX" | $Xsed -e "$delay_single_quote_subst"`' -link_all_deplibs_F77='`$ECHO "X$link_all_deplibs_F77" | $Xsed -e "$delay_single_quote_subst"`' -link_all_deplibs_FC='`$ECHO "X$link_all_deplibs_FC" | $Xsed -e "$delay_single_quote_subst"`' -fix_srcfile_path_CXX='`$ECHO "X$fix_srcfile_path_CXX" | $Xsed -e "$delay_single_quote_subst"`' -fix_srcfile_path_F77='`$ECHO "X$fix_srcfile_path_F77" | $Xsed -e "$delay_single_quote_subst"`' -fix_srcfile_path_FC='`$ECHO "X$fix_srcfile_path_FC" | $Xsed -e "$delay_single_quote_subst"`' -always_export_symbols_CXX='`$ECHO "X$always_export_symbols_CXX" | $Xsed -e "$delay_single_quote_subst"`' -always_export_symbols_F77='`$ECHO "X$always_export_symbols_F77" | $Xsed -e "$delay_single_quote_subst"`' -always_export_symbols_FC='`$ECHO "X$always_export_symbols_FC" | $Xsed -e "$delay_single_quote_subst"`' -export_symbols_cmds_CXX='`$ECHO "X$export_symbols_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' -export_symbols_cmds_F77='`$ECHO "X$export_symbols_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' -export_symbols_cmds_FC='`$ECHO "X$export_symbols_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' -exclude_expsyms_CXX='`$ECHO "X$exclude_expsyms_CXX" | $Xsed -e "$delay_single_quote_subst"`' -exclude_expsyms_F77='`$ECHO "X$exclude_expsyms_F77" | $Xsed -e "$delay_single_quote_subst"`' -exclude_expsyms_FC='`$ECHO "X$exclude_expsyms_FC" | $Xsed -e "$delay_single_quote_subst"`' -include_expsyms_CXX='`$ECHO "X$include_expsyms_CXX" | $Xsed -e "$delay_single_quote_subst"`' -include_expsyms_F77='`$ECHO "X$include_expsyms_F77" | $Xsed -e "$delay_single_quote_subst"`' -include_expsyms_FC='`$ECHO "X$include_expsyms_FC" | $Xsed -e "$delay_single_quote_subst"`' -prelink_cmds_CXX='`$ECHO "X$prelink_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' -prelink_cmds_F77='`$ECHO "X$prelink_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`' -prelink_cmds_FC='`$ECHO "X$prelink_cmds_FC" | $Xsed -e "$delay_single_quote_subst"`' -file_list_spec_CXX='`$ECHO "X$file_list_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`' -file_list_spec_F77='`$ECHO "X$file_list_spec_F77" | $Xsed -e "$delay_single_quote_subst"`' -file_list_spec_FC='`$ECHO "X$file_list_spec_FC" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_action_CXX='`$ECHO "X$hardcode_action_CXX" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_action_F77='`$ECHO "X$hardcode_action_F77" | $Xsed -e "$delay_single_quote_subst"`' -hardcode_action_FC='`$ECHO "X$hardcode_action_FC" | $Xsed -e "$delay_single_quote_subst"`' -compiler_lib_search_dirs_CXX='`$ECHO "X$compiler_lib_search_dirs_CXX" | $Xsed -e "$delay_single_quote_subst"`' -compiler_lib_search_dirs_F77='`$ECHO "X$compiler_lib_search_dirs_F77" | $Xsed -e "$delay_single_quote_subst"`' -compiler_lib_search_dirs_FC='`$ECHO "X$compiler_lib_search_dirs_FC" | $Xsed -e "$delay_single_quote_subst"`' -predep_objects_CXX='`$ECHO "X$predep_objects_CXX" | $Xsed -e "$delay_single_quote_subst"`' -predep_objects_F77='`$ECHO "X$predep_objects_F77" | $Xsed -e "$delay_single_quote_subst"`' -predep_objects_FC='`$ECHO "X$predep_objects_FC" | $Xsed -e "$delay_single_quote_subst"`' -postdep_objects_CXX='`$ECHO "X$postdep_objects_CXX" | $Xsed -e "$delay_single_quote_subst"`' -postdep_objects_F77='`$ECHO "X$postdep_objects_F77" | $Xsed -e "$delay_single_quote_subst"`' -postdep_objects_FC='`$ECHO "X$postdep_objects_FC" | $Xsed -e "$delay_single_quote_subst"`' -predeps_CXX='`$ECHO "X$predeps_CXX" | $Xsed -e "$delay_single_quote_subst"`' -predeps_F77='`$ECHO "X$predeps_F77" | $Xsed -e "$delay_single_quote_subst"`' -predeps_FC='`$ECHO "X$predeps_FC" | $Xsed -e "$delay_single_quote_subst"`' -postdeps_CXX='`$ECHO "X$postdeps_CXX" | $Xsed -e "$delay_single_quote_subst"`' -postdeps_F77='`$ECHO "X$postdeps_F77" | $Xsed -e "$delay_single_quote_subst"`' -postdeps_FC='`$ECHO "X$postdeps_FC" | $Xsed -e "$delay_single_quote_subst"`' -compiler_lib_search_path_CXX='`$ECHO "X$compiler_lib_search_path_CXX" | $Xsed -e "$delay_single_quote_subst"`' -compiler_lib_search_path_F77='`$ECHO "X$compiler_lib_search_path_F77" | $Xsed -e "$delay_single_quote_subst"`' -compiler_lib_search_path_FC='`$ECHO "X$compiler_lib_search_path_FC" | $Xsed -e "$delay_single_quote_subst"`' - -LTCC='$LTCC' -LTCFLAGS='$LTCFLAGS' -compiler='$compiler_DEFAULT' - -# Quote evaled strings. -for var in SED \ -GREP \ -EGREP \ -FGREP \ -LD \ -NM \ -LN_S \ -lt_SP2NL \ -lt_NL2SP \ -reload_flag \ -OBJDUMP \ -deplibs_check_method \ -file_magic_cmd \ -AR \ -AR_FLAGS \ -STRIP \ -RANLIB \ -CC \ -CFLAGS \ -compiler \ -lt_cv_sys_global_symbol_pipe \ -lt_cv_sys_global_symbol_to_cdecl \ -lt_cv_sys_global_symbol_to_c_name_address \ -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ -SHELL \ -ECHO \ -lt_prog_compiler_no_builtin_flag \ -lt_prog_compiler_wl \ -lt_prog_compiler_pic \ -lt_prog_compiler_static \ -lt_cv_prog_compiler_c_o \ -need_locks \ -DSYMUTIL \ -NMEDIT \ -LIPO \ -OTOOL \ -OTOOL64 \ -shrext_cmds \ -export_dynamic_flag_spec \ -whole_archive_flag_spec \ -compiler_needs_object \ -with_gnu_ld \ -allow_undefined_flag \ -no_undefined_flag \ -hardcode_libdir_flag_spec \ -hardcode_libdir_flag_spec_ld \ -hardcode_libdir_separator \ -fix_srcfile_path \ -exclude_expsyms \ -include_expsyms \ -file_list_spec \ -variables_saved_for_relink \ -libname_spec \ -library_names_spec \ -soname_spec \ -finish_eval \ -old_striplib \ -striplib \ -compiler_lib_search_dirs \ -predep_objects \ -postdep_objects \ -predeps \ -postdeps \ -compiler_lib_search_path \ -LD_CXX \ -LD_F77 \ -LD_FC \ -compiler_CXX \ -compiler_F77 \ -compiler_FC \ -lt_prog_compiler_no_builtin_flag_CXX \ -lt_prog_compiler_no_builtin_flag_F77 \ -lt_prog_compiler_no_builtin_flag_FC \ -lt_prog_compiler_wl_CXX \ -lt_prog_compiler_wl_F77 \ -lt_prog_compiler_wl_FC \ -lt_prog_compiler_pic_CXX \ -lt_prog_compiler_pic_F77 \ -lt_prog_compiler_pic_FC \ -lt_prog_compiler_static_CXX \ -lt_prog_compiler_static_F77 \ -lt_prog_compiler_static_FC \ -lt_cv_prog_compiler_c_o_CXX \ -lt_cv_prog_compiler_c_o_F77 \ -lt_cv_prog_compiler_c_o_FC \ -export_dynamic_flag_spec_CXX \ -export_dynamic_flag_spec_F77 \ -export_dynamic_flag_spec_FC \ -whole_archive_flag_spec_CXX \ -whole_archive_flag_spec_F77 \ -whole_archive_flag_spec_FC \ -compiler_needs_object_CXX \ -compiler_needs_object_F77 \ -compiler_needs_object_FC \ -with_gnu_ld_CXX \ -with_gnu_ld_F77 \ -with_gnu_ld_FC \ -allow_undefined_flag_CXX \ -allow_undefined_flag_F77 \ -allow_undefined_flag_FC \ -no_undefined_flag_CXX \ -no_undefined_flag_F77 \ -no_undefined_flag_FC \ -hardcode_libdir_flag_spec_CXX \ -hardcode_libdir_flag_spec_F77 \ -hardcode_libdir_flag_spec_FC \ -hardcode_libdir_flag_spec_ld_CXX \ -hardcode_libdir_flag_spec_ld_F77 \ -hardcode_libdir_flag_spec_ld_FC \ -hardcode_libdir_separator_CXX \ -hardcode_libdir_separator_F77 \ -hardcode_libdir_separator_FC \ -fix_srcfile_path_CXX \ -fix_srcfile_path_F77 \ -fix_srcfile_path_FC \ -exclude_expsyms_CXX \ -exclude_expsyms_F77 \ -exclude_expsyms_FC \ -include_expsyms_CXX \ -include_expsyms_F77 \ -include_expsyms_FC \ -file_list_spec_CXX \ -file_list_spec_F77 \ -file_list_spec_FC \ -compiler_lib_search_dirs_CXX \ -compiler_lib_search_dirs_F77 \ -compiler_lib_search_dirs_FC \ -predep_objects_CXX \ -predep_objects_F77 \ -predep_objects_FC \ -postdep_objects_CXX \ -postdep_objects_F77 \ -postdep_objects_FC \ -predeps_CXX \ -predeps_F77 \ -predeps_FC \ -postdeps_CXX \ -postdeps_F77 \ -postdeps_FC \ -compiler_lib_search_path_CXX \ -compiler_lib_search_path_F77 \ -compiler_lib_search_path_FC; do - case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in - *[\\\\\\\`\\"\\\$]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" - ;; - *) - eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" - ;; - esac -done - -# Double-quote double-evaled strings. -for var in reload_cmds \ -old_postinstall_cmds \ -old_postuninstall_cmds \ -old_archive_cmds \ -extract_expsyms_cmds \ -old_archive_from_new_cmds \ -old_archive_from_expsyms_cmds \ -archive_cmds \ -archive_expsym_cmds \ -module_cmds \ -module_expsym_cmds \ -export_symbols_cmds \ -prelink_cmds \ -postinstall_cmds \ -postuninstall_cmds \ -finish_cmds \ -sys_lib_search_path_spec \ -sys_lib_dlsearch_path_spec \ -old_archive_cmds_CXX \ -old_archive_cmds_F77 \ -old_archive_cmds_FC \ -old_archive_from_new_cmds_CXX \ -old_archive_from_new_cmds_F77 \ -old_archive_from_new_cmds_FC \ -old_archive_from_expsyms_cmds_CXX \ -old_archive_from_expsyms_cmds_F77 \ -old_archive_from_expsyms_cmds_FC \ -archive_cmds_CXX \ -archive_cmds_F77 \ -archive_cmds_FC \ -archive_expsym_cmds_CXX \ -archive_expsym_cmds_F77 \ -archive_expsym_cmds_FC \ -module_cmds_CXX \ -module_cmds_F77 \ -module_cmds_FC \ -module_expsym_cmds_CXX \ -module_expsym_cmds_F77 \ -module_expsym_cmds_FC \ -export_symbols_cmds_CXX \ -export_symbols_cmds_F77 \ -export_symbols_cmds_FC \ -prelink_cmds_CXX \ -prelink_cmds_F77 \ -prelink_cmds_FC; do - case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in - *[\\\\\\\`\\"\\\$]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" - ;; - *) - eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" - ;; - esac -done - -# Fix-up fallback echo if it was mangled by the above quoting rules. -case \$lt_ECHO in -*'\\\$0 --fallback-echo"') lt_ECHO=\`\$ECHO "X\$lt_ECHO" | \$Xsed -e 's/\\\\\\\\\\\\\\\$0 --fallback-echo"\$/\$0 --fallback-echo"/'\` - ;; -esac - -ac_aux_dir='$ac_aux_dir' -xsi_shell='$xsi_shell' -lt_shell_append='$lt_shell_append' - -# See if we are running on zsh, and set the options which allow our -# commands through without removal of \ escapes INIT. -if test -n "\${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST -fi - - - PACKAGE='$PACKAGE' - VERSION='$VERSION' - TIMESTAMP='$TIMESTAMP' - RM='$RM' - ofile='$ofile' - - - - - - - - - - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - -# Handling of arguments. -for ac_config_target in $ac_config_targets -do - case $ac_config_target in - "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; - "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; - "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; - "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "Cantera/Makefile") CONFIG_FILES="$CONFIG_FILES Cantera/Makefile" ;; - "test_problems/Makefile") CONFIG_FILES="$CONFIG_FILES test_problems/Makefile" ;; - "examples/Makefile") CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;; - "doxygen/Makefile") CONFIG_FILES="$CONFIG_FILES doxygen/Makefile" ;; - - *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; - esac -done - - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used. Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers - test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands -fi - -# Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason against having it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Hook for its removal unless debugging. -# Note that there is a small window in which the directory will not be cleaned: -# after its creation but before its name has been assigned to `$tmp'. -$debug || -{ - tmp= - trap 'exit_status=$? - { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status -' 0 - trap 'as_fn_exit 1' 1 2 13 15 -} -# Create a (secure) tmp directory for tmp files. - -{ - tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && - test -n "$tmp" && test -d "$tmp" -} || -{ - tmp=./conf$$-$RANDOM - (umask 077 && mkdir "$tmp") -} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 - -# Set up the scripts for CONFIG_FILES section. -# No need to generate them if there are no CONFIG_FILES. -# This happens for instance with `./config.status config.h'. -if test -n "$CONFIG_FILES"; then - - -ac_cr=`echo X | tr X '\015'` -# On cygwin, bash can eat \r inside `` if the user requested igncr. -# But we know of no other shell where ac_cr would be empty at this -# point, so we can use a bashism as a fallback. -if test "x$ac_cr" = x; then - eval ac_cr=\$\'\\r\' -fi -ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` -if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then - ac_cs_awk_cr='\r' -else - ac_cs_awk_cr=$ac_cr -fi - -echo 'BEGIN {' >"$tmp/subs1.awk" && -_ACEOF - - -{ - echo "cat >conf$$subs.awk <<_ACEOF" && - echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && - echo "_ACEOF" -} >conf$$subs.sh || - as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 -ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` -ac_delim='%!_!# ' -for ac_last_try in false false false false false :; do - . ./conf$$subs.sh || - as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 - - ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` - if test $ac_delim_n = $ac_delim_num; then - break - elif $ac_last_try; then - as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done -rm -f conf$$subs.sh - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -cat >>"\$tmp/subs1.awk" <<\\_ACAWK && -_ACEOF -sed -n ' -h -s/^/S["/; s/!.*/"]=/ -p -g -s/^[^!]*!// -:repl -t repl -s/'"$ac_delim"'$// -t delim -:nl -h -s/\(.\{148\}\)..*/\1/ -t more1 -s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ -p -n -b repl -:more1 -s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -p -g -s/.\{148\}// -t nl -:delim -h -s/\(.\{148\}\)..*/\1/ -t more2 -s/["\\]/\\&/g; s/^/"/; s/$/"/ -p -b -:more2 -s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -p -g -s/.\{148\}// -t delim -' >$CONFIG_STATUS || ac_write_fail=1 -rm -f conf$$subs.awk -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -_ACAWK -cat >>"\$tmp/subs1.awk" <<_ACAWK && - for (key in S) S_is_set[key] = 1 - FS = "" - -} -{ - line = $ 0 - nfields = split(line, field, "@") - substed = 0 - len = length(field[1]) - for (i = 2; i < nfields; i++) { - key = field[i] - keylen = length(key) - if (S_is_set[key]) { - value = S[key] - line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) - len += length(value) + length(field[++i]) - substed = 1 - } else - len += 1 + keylen - } - - print line -} - -_ACAWK -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then - sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" -else - cat -fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ - || as_fn_error "could not setup config files machinery" "$LINENO" 5 -_ACEOF - -# VPATH may cause trouble with some makes, so we remove $(srcdir), -# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and -# trailing colons and then remove the whole line if VPATH becomes empty -# (actually we leave an empty line to preserve line numbers). -if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=/{ -s/:*\$(srcdir):*/:/ -s/:*\${srcdir}:*/:/ -s/:*@srcdir@:*/:/ -s/^\([^=]*=[ ]*\):*/\1/ -s/:*$// -s/^[^=]*=[ ]*$// -}' -fi - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -fi # test -n "$CONFIG_FILES" - -# Set up the scripts for CONFIG_HEADERS section. -# No need to generate them if there are no CONFIG_HEADERS. -# This happens for instance with `./config.status Makefile'. -if test -n "$CONFIG_HEADERS"; then -cat >"$tmp/defines.awk" <<\_ACAWK || -BEGIN { -_ACEOF - -# Transform confdefs.h into an awk script `defines.awk', embedded as -# here-document in config.status, that substitutes the proper values into -# config.h.in to produce config.h. - -# Create a delimiter string that does not exist in confdefs.h, to ease -# handling of long lines. -ac_delim='%!_!# ' -for ac_last_try in false false :; do - ac_t=`sed -n "/$ac_delim/p" confdefs.h` - if test -z "$ac_t"; then - break - elif $ac_last_try; then - as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5 - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done - -# For the awk script, D is an array of macro values keyed by name, -# likewise P contains macro parameters if any. Preserve backslash -# newline sequences. - -ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* -sed -n ' -s/.\{148\}/&'"$ac_delim"'/g -t rset -:rset -s/^[ ]*#[ ]*define[ ][ ]*/ / -t def -d -:def -s/\\$// -t bsnl -s/["\\]/\\&/g -s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -D["\1"]=" \3"/p -s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p -d -:bsnl -s/["\\]/\\&/g -s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -D["\1"]=" \3\\\\\\n"\\/p -t cont -s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p -t cont -d -:cont -n -s/.\{148\}/&'"$ac_delim"'/g -t clear -:clear -s/\\$// -t bsnlc -s/["\\]/\\&/g; s/^/"/; s/$/"/p -d -:bsnlc -s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p -b cont -' >$CONFIG_STATUS || ac_write_fail=1 - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - for (key in D) D_is_set[key] = 1 - FS = "" -} -/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { - line = \$ 0 - split(line, arg, " ") - if (arg[1] == "#") { - defundef = arg[2] - mac1 = arg[3] - } else { - defundef = substr(arg[1], 2) - mac1 = arg[2] - } - split(mac1, mac2, "(") #) - macro = mac2[1] - prefix = substr(line, 1, index(line, defundef) - 1) - if (D_is_set[macro]) { - # Preserve the white space surrounding the "#". - print prefix "define", macro P[macro] D[macro] - next - } else { - # Replace #undef with comments. This is necessary, for example, - # in the case of _POSIX_SOURCE, which is predefined and required - # on some systems where configure will not decide to define it. - if (defundef == "undef") { - print "/*", prefix defundef, macro, "*/" - next - } - } -} -{ print } -_ACAWK -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - as_fn_error "could not setup config headers machinery" "$LINENO" 5 -fi # test -n "$CONFIG_HEADERS" - - -eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" -shift -for ac_tag -do - case $ac_tag in - :[FHLC]) ac_mode=$ac_tag; continue;; - esac - case $ac_mode$ac_tag in - :[FHL]*:*);; - :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;; - :[FH]-) ac_tag=-:-;; - :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; - esac - ac_save_IFS=$IFS - IFS=: - set x $ac_tag - IFS=$ac_save_IFS - shift - ac_file=$1 - shift - - case $ac_mode in - :L) ac_source=$1;; - :[FH]) - ac_file_inputs= - for ac_f - do - case $ac_f in - -) ac_f="$tmp/stdin";; - *) # Look for the file first in the build tree, then in the source tree - # (if the path is not absolute). The absolute path cannot be DOS-style, - # because $ac_f cannot contain `:'. - test -f "$ac_f" || - case $ac_f in - [\\/$]*) false;; - *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; - esac || - as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;; - esac - case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac - as_fn_append ac_file_inputs " '$ac_f'" - done - - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - configure_input='Generated from '` - $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' - `' by configure.' - if test x"$ac_file" != x-; then - configure_input="$ac_file. $configure_input" - { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 -$as_echo "$as_me: creating $ac_file" >&6;} - fi - # Neutralize special characters interpreted by sed in replacement strings. - case $configure_input in #( - *\&* | *\|* | *\\* ) - ac_sed_conf_input=`$as_echo "$configure_input" | - sed 's/[\\\\&|]/\\\\&/g'`;; #( - *) ac_sed_conf_input=$configure_input;; - esac - - case $ac_tag in - *:-:* | *:-) cat >"$tmp/stdin" \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; - esac - ;; - esac - - ac_dir=`$as_dirname -- "$ac_file" || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - as_dir="$ac_dir"; as_fn_mkdir_p - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - - case $ac_mode in - :F) - # - # CONFIG_FILE - # - - case $INSTALL in - [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; - *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; - esac - ac_MKDIR_P=$MKDIR_P - case $MKDIR_P in - [\\/$]* | ?:[\\/]* ) ;; - */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; - esac -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# If the template does not know about datarootdir, expand it. -# FIXME: This hack should be removed a few years after 2.60. -ac_datarootdir_hack=; ac_datarootdir_seen= -ac_sed_dataroot=' -/datarootdir/ { - p - q -} -/@datadir@/p -/@docdir@/p -/@infodir@/p -/@localedir@/p -/@mandir@/p' -case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in -*datarootdir*) ac_datarootdir_seen=yes;; -*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 -$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - ac_datarootdir_hack=' - s&@datadir@&$datadir&g - s&@docdir@&$docdir&g - s&@infodir@&$infodir&g - s&@localedir@&$localedir&g - s&@mandir@&$mandir&g - s&\\\${datarootdir}&$datarootdir&g' ;; -esac -_ACEOF - -# Neutralize VPATH when `$srcdir' = `.'. -# Shell code in configure.ac might set extrasub. -# FIXME: do we really want to maintain this feature? -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_sed_extra="$ac_vpsub -$extrasub -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s|@configure_input@|$ac_sed_conf_input|;t t -s&@top_builddir@&$ac_top_builddir_sub&;t t -s&@top_build_prefix@&$ac_top_build_prefix&;t t -s&@srcdir@&$ac_srcdir&;t t -s&@abs_srcdir@&$ac_abs_srcdir&;t t -s&@top_srcdir@&$ac_top_srcdir&;t t -s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t -s&@builddir@&$ac_builddir&;t t -s&@abs_builddir@&$ac_abs_builddir&;t t -s&@abs_top_builddir@&$ac_abs_top_builddir&;t t -s&@INSTALL@&$ac_INSTALL&;t t -s&@MKDIR_P@&$ac_MKDIR_P&;t t -$ac_datarootdir_hack -" -eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 - -test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && - { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined." >&5 -$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined." >&2;} - - rm -f "$tmp/stdin" - case $ac_file in - -) cat "$tmp/out" && rm -f "$tmp/out";; - *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; - esac \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 - ;; - :H) - # - # CONFIG_HEADER - # - if test x"$ac_file" != x-; then - { - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" - } >"$tmp/config.h" \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 - if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then - { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 -$as_echo "$as_me: $ac_file is unchanged" >&6;} - else - rm -f "$ac_file" - mv "$tmp/config.h" "$ac_file" \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 - fi - else - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ - || as_fn_error "could not create -" "$LINENO" 5 - fi -# Compute "$ac_file"'s index in $config_headers. -_am_arg="$ac_file" -_am_stamp_count=1 -for _am_header in $config_headers :; do - case $_am_header in - $_am_arg | $_am_arg:* ) - break ;; - * ) - _am_stamp_count=`expr $_am_stamp_count + 1` ;; - esac -done -echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || -$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$_am_arg" : 'X\(//\)[^/]' \| \ - X"$_am_arg" : 'X\(//\)$' \| \ - X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$_am_arg" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'`/stamp-h$_am_stamp_count - ;; - - :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 -$as_echo "$as_me: executing $ac_file commands" >&6;} - ;; - esac - - - case $ac_file$ac_mode in - "depfiles":C) test x"$AMDEP_TRUE" != x"" || { - # Autoconf 2.62 quotes --file arguments for eval, but not when files - # are listed without --file. Let's play safe and only enable the eval - # if we detect the quoting. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac - shift - for mf - do - # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named `Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`$as_dirname -- "$mf" || -$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$mf" : 'X\(//\)[^/]' \| \ - X"$mf" : 'X\(//\)$' \| \ - X"$mf" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$mf" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running `make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n 's/^U = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`$as_dirname -- "$file" || -$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$file" : 'X\(//\)[^/]' \| \ - X"$file" : 'X\(//\)$' \| \ - X"$file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - as_dir=$dirpart/$fdir; as_fn_mkdir_p - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done - done -} - ;; - "libtool":C) - - # See if we are running on zsh, and set the options which allow our - # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST - fi - - cfgfile="${ofile}T" - trap "$RM \"$cfgfile\"; exit 1" 1 2 15 - $RM "$cfgfile" - - cat <<_LT_EOF >> "$cfgfile" -#! $SHELL - -# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: -# NOTE: Changes made to this file will be lost: look at ltmain.sh. -# -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008 Free Software Foundation, Inc. -# Written by Gordon Matzigkeit, 1996 -# -# This file is part of GNU Libtool. -# -# GNU Libtool is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2 of -# the License, or (at your option) any later version. -# -# As a special exception to the GNU General Public License, -# if you distribute this file as part of a program or library that -# is built using GNU Libtool, you may include this file under the -# same distribution terms that you use for the rest of that program. -# -# GNU Libtool is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, or -# obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - -# The names of the tagged configurations supported by this script. -available_tags="CXX F77 FC " - -# ### BEGIN LIBTOOL CONFIG - -# Which release of libtool.m4 was used? -macro_version=$macro_version -macro_revision=$macro_revision - -# Whether or not to build shared libraries. -build_libtool_libs=$enable_shared - -# Whether or not to build static libraries. -build_old_libs=$enable_static - -# What type of objects to build. -pic_mode=$pic_mode - -# Whether or not to optimize for fast installation. -fast_install=$enable_fast_install - -# The host system. -host_alias=$host_alias -host=$host -host_os=$host_os - -# The build system. -build_alias=$build_alias -build=$build -build_os=$build_os - -# A sed program that does not truncate output. -SED=$lt_SED - -# Sed that helps us avoid accidentally triggering echo(1) options like -n. -Xsed="\$SED -e 1s/^X//" - -# A grep program that handles long lines. -GREP=$lt_GREP - -# An ERE matcher. -EGREP=$lt_EGREP - -# A literal string matcher. -FGREP=$lt_FGREP - -# A BSD- or MS-compatible name lister. -NM=$lt_NM - -# Whether we need soft or hard links. -LN_S=$lt_LN_S - -# What is the maximum length of a command? -max_cmd_len=$max_cmd_len - -# Object file suffix (normally "o"). -objext=$ac_objext - -# Executable file suffix (normally ""). -exeext=$exeext - -# whether the shell understands "unset". -lt_unset=$lt_unset - -# turn spaces into newlines. -SP2NL=$lt_lt_SP2NL - -# turn newlines into spaces. -NL2SP=$lt_lt_NL2SP - -# How to create reloadable object files. -reload_flag=$lt_reload_flag -reload_cmds=$lt_reload_cmds - -# An object symbol dumper. -OBJDUMP=$lt_OBJDUMP - -# Method to check whether dependent libraries are shared objects. -deplibs_check_method=$lt_deplibs_check_method - -# Command to use when deplibs_check_method == "file_magic". -file_magic_cmd=$lt_file_magic_cmd - -# The archiver. -AR=$lt_AR -AR_FLAGS=$lt_AR_FLAGS - -# A symbol stripping program. -STRIP=$lt_STRIP - -# Commands used to install an old-style archive. -RANLIB=$lt_RANLIB -old_postinstall_cmds=$lt_old_postinstall_cmds -old_postuninstall_cmds=$lt_old_postuninstall_cmds - -# A C compiler. -LTCC=$lt_CC - -# LTCC compiler flags. -LTCFLAGS=$lt_CFLAGS - -# Take the output of nm and produce a listing of raw symbols and C names. -global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe - -# Transform the output of nm in a proper C declaration. -global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl - -# Transform the output of nm in a C name address pair. -global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address - -# Transform the output of nm in a C name address pair when lib prefix is needed. -global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix - -# The name of the directory that contains temporary libtool files. -objdir=$objdir - -# Shell to use when invoking shell scripts. -SHELL=$lt_SHELL - -# An echo program that does not interpret backslashes. -ECHO=$lt_ECHO - -# Used to examine libraries when file_magic_cmd begins with "file". -MAGIC_CMD=$MAGIC_CMD - -# Must we lock files when doing compilation? -need_locks=$lt_need_locks - -# Tool to manipulate archived DWARF debug symbol files on Mac OS X. -DSYMUTIL=$lt_DSYMUTIL - -# Tool to change global to local symbols on Mac OS X. -NMEDIT=$lt_NMEDIT - -# Tool to manipulate fat objects and archives on Mac OS X. -LIPO=$lt_LIPO - -# ldd/readelf like tool for Mach-O binaries on Mac OS X. -OTOOL=$lt_OTOOL - -# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. -OTOOL64=$lt_OTOOL64 - -# Old archive suffix (normally "a"). -libext=$libext - -# Shared library suffix (normally ".so"). -shrext_cmds=$lt_shrext_cmds - -# The commands to extract the exported symbol list from a shared archive. -extract_expsyms_cmds=$lt_extract_expsyms_cmds - -# Variables whose values should be saved in libtool wrapper scripts and -# restored at link time. -variables_saved_for_relink=$lt_variables_saved_for_relink - -# Do we need the "lib" prefix for modules? -need_lib_prefix=$need_lib_prefix - -# Do we need a version for libraries? -need_version=$need_version - -# Library versioning type. -version_type=$version_type - -# Shared library runtime path variable. -runpath_var=$runpath_var - -# Shared library path variable. -shlibpath_var=$shlibpath_var - -# Is shlibpath searched before the hard-coded library search path? -shlibpath_overrides_runpath=$shlibpath_overrides_runpath - -# Format of library name prefix. -libname_spec=$lt_libname_spec - -# List of archive names. First name is the real one, the rest are links. -# The last name is the one that the linker finds with -lNAME -library_names_spec=$lt_library_names_spec - -# The coded name of the library, if different from the real name. -soname_spec=$lt_soname_spec - -# Command to use after installation of a shared archive. -postinstall_cmds=$lt_postinstall_cmds - -# Command to use after uninstallation of a shared archive. -postuninstall_cmds=$lt_postuninstall_cmds - -# Commands used to finish a libtool library installation in a directory. -finish_cmds=$lt_finish_cmds - -# As "finish_cmds", except a single script fragment to be evaled but -# not shown. -finish_eval=$lt_finish_eval - -# Whether we should hardcode library paths into libraries. -hardcode_into_libs=$hardcode_into_libs - -# Compile-time system search path for libraries. -sys_lib_search_path_spec=$lt_sys_lib_search_path_spec - -# Run-time system search path for libraries. -sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec - -# Whether dlopen is supported. -dlopen_support=$enable_dlopen - -# Whether dlopen of programs is supported. -dlopen_self=$enable_dlopen_self - -# Whether dlopen of statically linked programs is supported. -dlopen_self_static=$enable_dlopen_self_static - -# Commands to strip libraries. -old_striplib=$lt_old_striplib -striplib=$lt_striplib - - -# The linker used to build libraries. -LD=$lt_LD - -# Commands used to build an old-style archive. -old_archive_cmds=$lt_old_archive_cmds - -# A language specific compiler. -CC=$lt_compiler - -# Is the compiler the GNU compiler? -with_gcc=$GCC - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object=$lt_compiler_needs_object - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds - -# Commands used to build a shared archive. -archive_cmds=$lt_archive_cmds -archive_expsym_cmds=$lt_archive_expsym_cmds - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds=$lt_module_cmds -module_expsym_cmds=$lt_module_expsym_cmds - -# Whether we are building with GNU ld or not. -with_gnu_ld=$lt_with_gnu_ld - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag - -# Flag that enforces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec - -# If ld is used when linking, flag to hardcode \$libdir into a binary -# during linking. This must work even if \$libdir does not exist. -hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator - -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=$hardcode_direct - -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -# DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \${shlibpath_var} if the -# library is relocated. -hardcode_direct_absolute=$hardcode_direct_absolute - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=$hardcode_minus_L - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var - -# Set to "yes" if building a shared library automatically hardcodes DIR -# into the library and all subsequent libraries and executables linked -# against it. -hardcode_automatic=$hardcode_automatic - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=$inherit_rpath - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs - -# Fix the shell variable \$srcfile for the compiler. -fix_srcfile_path=$lt_fix_srcfile_path - -# Set to "yes" if exported symbols are required. -always_export_symbols=$always_export_symbols - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds=$lt_prelink_cmds - -# Specify filename containing input files. -file_list_spec=$lt_file_list_spec - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects=$lt_predep_objects -postdep_objects=$lt_postdep_objects -predeps=$lt_predeps -postdeps=$lt_postdeps - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path - -# ### END LIBTOOL CONFIG - -_LT_EOF - - case $host_os in - aix3*) - cat <<\_LT_EOF >> "$cfgfile" -# AIX sometimes has problems with the GCC collect2 program. For some -# reason, if we set the COLLECT_NAMES environment variable, the problems -# vanish in a puff of smoke. -if test "X${COLLECT_NAMES+set}" != Xset; then - COLLECT_NAMES= - export COLLECT_NAMES -fi -_LT_EOF - ;; - esac - - -ltmain="$ac_aux_dir/ltmain.sh" - - - # We use sed instead of cat because bash on DJGPP gets confused if - # if finds mixed CR/LF and LF-only lines. Since sed operates in - # text mode, it properly converts lines to CR/LF. This bash problem - # is reportedly fixed, but why not run on old versions too? - sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \ - || (rm -f "$cfgfile"; exit 1) - - case $xsi_shell in - yes) - cat << \_LT_EOF >> "$cfgfile" - -# func_dirname file append nondir_replacement -# Compute the dirname of FILE. If nonempty, add APPEND to the result, -# otherwise set result to NONDIR_REPLACEMENT. -func_dirname () -{ - case ${1} in - */*) func_dirname_result="${1%/*}${2}" ;; - * ) func_dirname_result="${3}" ;; - esac -} - -# func_basename file -func_basename () -{ - func_basename_result="${1##*/}" -} - -# func_dirname_and_basename file append nondir_replacement -# perform func_basename and func_dirname in a single function -# call: -# dirname: Compute the dirname of FILE. If nonempty, -# add APPEND to the result, otherwise set result -# to NONDIR_REPLACEMENT. -# value returned in "$func_dirname_result" -# basename: Compute filename of FILE. -# value retuned in "$func_basename_result" -# Implementation must be kept synchronized with func_dirname -# and func_basename. For efficiency, we do not delegate to -# those functions but instead duplicate the functionality here. -func_dirname_and_basename () -{ - case ${1} in - */*) func_dirname_result="${1%/*}${2}" ;; - * ) func_dirname_result="${3}" ;; - esac - func_basename_result="${1##*/}" -} - -# func_stripname prefix suffix name -# strip PREFIX and SUFFIX off of NAME. -# PREFIX and SUFFIX must not contain globbing or regex special -# characters, hashes, percent signs, but SUFFIX may contain a leading -# dot (in which case that matches only a dot). -func_stripname () -{ - # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are - # positional parameters, so assign one to ordinary parameter first. - func_stripname_result=${3} - func_stripname_result=${func_stripname_result#"${1}"} - func_stripname_result=${func_stripname_result%"${2}"} -} - -# func_opt_split -func_opt_split () -{ - func_opt_split_opt=${1%%=*} - func_opt_split_arg=${1#*=} -} - -# func_lo2o object -func_lo2o () -{ - case ${1} in - *.lo) func_lo2o_result=${1%.lo}.${objext} ;; - *) func_lo2o_result=${1} ;; - esac -} - -# func_xform libobj-or-source -func_xform () -{ - func_xform_result=${1%.*}.lo -} - -# func_arith arithmetic-term... -func_arith () -{ - func_arith_result=$(( $* )) -} - -# func_len string -# STRING may not start with a hyphen. -func_len () -{ - func_len_result=${#1} -} - -_LT_EOF - ;; - *) # Bourne compatible functions. - cat << \_LT_EOF >> "$cfgfile" - -# func_dirname file append nondir_replacement -# Compute the dirname of FILE. If nonempty, add APPEND to the result, -# otherwise set result to NONDIR_REPLACEMENT. -func_dirname () -{ - # Extract subdirectory from the argument. - func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"` - if test "X$func_dirname_result" = "X${1}"; then - func_dirname_result="${3}" - else - func_dirname_result="$func_dirname_result${2}" - fi -} - -# func_basename file -func_basename () -{ - func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"` -} - - -# func_stripname prefix suffix name -# strip PREFIX and SUFFIX off of NAME. -# PREFIX and SUFFIX must not contain globbing or regex special -# characters, hashes, percent signs, but SUFFIX may contain a leading -# dot (in which case that matches only a dot). -# func_strip_suffix prefix name -func_stripname () -{ - case ${2} in - .*) func_stripname_result=`$ECHO "X${3}" \ - | $Xsed -e "s%^${1}%%" -e "s%\\\\${2}\$%%"`;; - *) func_stripname_result=`$ECHO "X${3}" \ - | $Xsed -e "s%^${1}%%" -e "s%${2}\$%%"`;; - esac -} - -# sed scripts: -my_sed_long_opt='1s/^\(-[^=]*\)=.*/\1/;q' -my_sed_long_arg='1s/^-[^=]*=//' - -# func_opt_split -func_opt_split () -{ - func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"` - func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"` -} - -# func_lo2o object -func_lo2o () -{ - func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"` -} - -# func_xform libobj-or-source -func_xform () -{ - func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[^.]*$/.lo/'` -} - -# func_arith arithmetic-term... -func_arith () -{ - func_arith_result=`expr "$@"` -} - -# func_len string -# STRING may not start with a hyphen. -func_len () -{ - func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` -} - -_LT_EOF -esac - -case $lt_shell_append in - yes) - cat << \_LT_EOF >> "$cfgfile" - -# func_append var value -# Append VALUE to the end of shell variable VAR. -func_append () -{ - eval "$1+=\$2" -} -_LT_EOF - ;; - *) - cat << \_LT_EOF >> "$cfgfile" - -# func_append var value -# Append VALUE to the end of shell variable VAR. -func_append () -{ - eval "$1=\$$1\$2" -} - -_LT_EOF - ;; - esac - - - sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \ - || (rm -f "$cfgfile"; exit 1) - - mv -f "$cfgfile" "$ofile" || - (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") - chmod +x "$ofile" - - - cat <<_LT_EOF >> "$ofile" - -# ### BEGIN LIBTOOL TAG CONFIG: CXX - -# The linker used to build libraries. -LD=$lt_LD_CXX - -# Commands used to build an old-style archive. -old_archive_cmds=$lt_old_archive_cmds_CXX - -# A language specific compiler. -CC=$lt_compiler_CXX - -# Is the compiler the GNU compiler? -with_gcc=$GCC_CXX - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl_CXX - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic_CXX - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static_CXX - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc_CXX - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object=$lt_compiler_needs_object_CXX - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX - -# Commands used to build a shared archive. -archive_cmds=$lt_archive_cmds_CXX -archive_expsym_cmds=$lt_archive_expsym_cmds_CXX - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds=$lt_module_cmds_CXX -module_expsym_cmds=$lt_module_expsym_cmds_CXX - -# Whether we are building with GNU ld or not. -with_gnu_ld=$lt_with_gnu_ld_CXX - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag_CXX - -# Flag that enforces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag_CXX - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX - -# If ld is used when linking, flag to hardcode \$libdir into a binary -# during linking. This must work even if \$libdir does not exist. -hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX - -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=$hardcode_direct_CXX - -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -# DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \${shlibpath_var} if the -# library is relocated. -hardcode_direct_absolute=$hardcode_direct_absolute_CXX - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=$hardcode_minus_L_CXX - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX - -# Set to "yes" if building a shared library automatically hardcodes DIR -# into the library and all subsequent libraries and executables linked -# against it. -hardcode_automatic=$hardcode_automatic_CXX - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=$inherit_rpath_CXX - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs_CXX - -# Fix the shell variable \$srcfile for the compiler. -fix_srcfile_path=$lt_fix_srcfile_path_CXX - -# Set to "yes" if exported symbols are required. -always_export_symbols=$always_export_symbols_CXX - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds_CXX - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms_CXX - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms_CXX - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds=$lt_prelink_cmds_CXX - -# Specify filename containing input files. -file_list_spec=$lt_file_list_spec_CXX - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action_CXX - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects=$lt_predep_objects_CXX -postdep_objects=$lt_postdep_objects_CXX -predeps=$lt_predeps_CXX -postdeps=$lt_postdeps_CXX - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path_CXX - -# ### END LIBTOOL TAG CONFIG: CXX -_LT_EOF - - - cat <<_LT_EOF >> "$ofile" - -# ### BEGIN LIBTOOL TAG CONFIG: F77 - -# The linker used to build libraries. -LD=$lt_LD_F77 - -# Commands used to build an old-style archive. -old_archive_cmds=$lt_old_archive_cmds_F77 - -# A language specific compiler. -CC=$lt_compiler_F77 - -# Is the compiler the GNU compiler? -with_gcc=$GCC_F77 - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_F77 - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl_F77 - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic_F77 - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static_F77 - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o_F77 - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc_F77 - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_F77 - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_F77 - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec_F77 - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object=$lt_compiler_needs_object_F77 - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_F77 - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_F77 - -# Commands used to build a shared archive. -archive_cmds=$lt_archive_cmds_F77 -archive_expsym_cmds=$lt_archive_expsym_cmds_F77 - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds=$lt_module_cmds_F77 -module_expsym_cmds=$lt_module_expsym_cmds_F77 - -# Whether we are building with GNU ld or not. -with_gnu_ld=$lt_with_gnu_ld_F77 - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag_F77 - -# Flag that enforces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag_F77 - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_F77 - -# If ld is used when linking, flag to hardcode \$libdir into a binary -# during linking. This must work even if \$libdir does not exist. -hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_F77 - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator_F77 - -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=$hardcode_direct_F77 - -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -# DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \${shlibpath_var} if the -# library is relocated. -hardcode_direct_absolute=$hardcode_direct_absolute_F77 - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=$hardcode_minus_L_F77 - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var_F77 - -# Set to "yes" if building a shared library automatically hardcodes DIR -# into the library and all subsequent libraries and executables linked -# against it. -hardcode_automatic=$hardcode_automatic_F77 - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=$inherit_rpath_F77 - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs_F77 - -# Fix the shell variable \$srcfile for the compiler. -fix_srcfile_path=$lt_fix_srcfile_path_F77 - -# Set to "yes" if exported symbols are required. -always_export_symbols=$always_export_symbols_F77 - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds_F77 - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms_F77 - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms_F77 - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds=$lt_prelink_cmds_F77 - -# Specify filename containing input files. -file_list_spec=$lt_file_list_spec_F77 - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action_F77 - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_F77 - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects=$lt_predep_objects_F77 -postdep_objects=$lt_postdep_objects_F77 -predeps=$lt_predeps_F77 -postdeps=$lt_postdeps_F77 - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path_F77 - -# ### END LIBTOOL TAG CONFIG: F77 -_LT_EOF - - - cat <<_LT_EOF >> "$ofile" - -# ### BEGIN LIBTOOL TAG CONFIG: FC - -# The linker used to build libraries. -LD=$lt_LD_FC - -# Commands used to build an old-style archive. -old_archive_cmds=$lt_old_archive_cmds_FC - -# A language specific compiler. -CC=$lt_compiler_FC - -# Is the compiler the GNU compiler? -with_gcc=$GCC_FC - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_FC - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl_FC - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic_FC - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static_FC - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o_FC - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc_FC - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_FC - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_FC - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec_FC - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object=$lt_compiler_needs_object_FC - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_FC - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_FC - -# Commands used to build a shared archive. -archive_cmds=$lt_archive_cmds_FC -archive_expsym_cmds=$lt_archive_expsym_cmds_FC - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds=$lt_module_cmds_FC -module_expsym_cmds=$lt_module_expsym_cmds_FC - -# Whether we are building with GNU ld or not. -with_gnu_ld=$lt_with_gnu_ld_FC - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag_FC - -# Flag that enforces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag_FC - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_FC - -# If ld is used when linking, flag to hardcode \$libdir into a binary -# during linking. This must work even if \$libdir does not exist. -hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_FC - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator_FC - -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=$hardcode_direct_FC - -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -# DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \${shlibpath_var} if the -# library is relocated. -hardcode_direct_absolute=$hardcode_direct_absolute_FC - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=$hardcode_minus_L_FC - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var_FC - -# Set to "yes" if building a shared library automatically hardcodes DIR -# into the library and all subsequent libraries and executables linked -# against it. -hardcode_automatic=$hardcode_automatic_FC - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=$inherit_rpath_FC - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs_FC - -# Fix the shell variable \$srcfile for the compiler. -fix_srcfile_path=$lt_fix_srcfile_path_FC - -# Set to "yes" if exported symbols are required. -always_export_symbols=$always_export_symbols_FC - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds_FC - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms_FC - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms_FC - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds=$lt_prelink_cmds_FC - -# Specify filename containing input files. -file_list_spec=$lt_file_list_spec_FC - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action_FC - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_FC - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects=$lt_predep_objects_FC -postdep_objects=$lt_postdep_objects_FC -predeps=$lt_predeps_FC -postdeps=$lt_postdeps_FC - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path_FC - -# ### END LIBTOOL TAG CONFIG: FC -_LT_EOF - - ;; - - esac -done # for ac_tag - - -as_fn_exit 0 -_ACEOF -ac_clean_files=$ac_clean_files_save - -test $ac_write_fail = 0 || - as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5 - - -# configure is writing to config.log, and then calls config.status. -# config.status does its own redirection, appending to config.log. -# Unfortunately, on DOS this fails, as config.log is still kept open -# by configure, so config.status won't be able to write to it; its -# output is simply discarded. So we exec the FD to /dev/null, -# effectively closing config.log, so it can be properly (re)opened and -# appended to by config.status. When coming back to configure, we -# need to make the FD available again. -if test "$no_create" != yes; then - ac_cs_success=: - ac_config_status_args= - test "$silent" = yes && - ac_config_status_args="$ac_config_status_args --quiet" - exec 5>/dev/null - $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false - exec 5>>config.log - # Use ||, not &&, to avoid exiting from the if with $? = 1, which - # would make configure fail if this is the last instruction. - $ac_cs_success || as_fn_exit $? -fi -if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 -$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} -fi - - -# FINAL SUMMARY -AX_SUMMARIZE_CONFIG From 225df77f16aab4383367ee22bcd16fb924c324d4 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 11 Nov 2011 00:22:59 +0000 Subject: [PATCH 009/124] [cantera+autotools]: adding a few makefile.am, removing old makefile.in --- Cantera/Makefile.am | 20 +++++++++++++++ Cantera/Makefile.in | 57 ----------------------------------------- Cantera/src/Makefile.am | 7 +++++ Cantera/src/Makefile.in | 48 ---------------------------------- configure.ac | 2 +- 5 files changed, 28 insertions(+), 106 deletions(-) create mode 100644 Cantera/Makefile.am delete mode 100755 Cantera/Makefile.in create mode 100644 Cantera/src/Makefile.am delete mode 100755 Cantera/src/Makefile.in diff --git a/Cantera/Makefile.am b/Cantera/Makefile.am new file mode 100644 index 000000000..ae31608e3 --- /dev/null +++ b/Cantera/Makefile.am @@ -0,0 +1,20 @@ +# $Id: $ + +# will need to add python and matlab +SUBDIRS = src + +h_sources = cantera.h +cc_sources = cantera.cpp + +INCLUDES = +AM_FCFLAGS = $(INCLUDES) +AM_CFLAGS = $(INCLUDES) +AM_CPPFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = libcantera.la +library_includedir = $(includedir) +library_include_HEADERS = cantera.h +libcantera_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +libcantera_la_SOURCES = $(cc_sources) $(h_sources) + + diff --git a/Cantera/Makefile.in b/Cantera/Makefile.in deleted file mode 100755 index 1d0500e66..000000000 --- a/Cantera/Makefile.in +++ /dev/null @@ -1,57 +0,0 @@ -#/bin/sh -############################################################### -# $Author: hkmoffa $ -# $Date: 2007/05/06 17:16:43 $ -# $Revision: 1.8 $ -# -# Copyright 2001 California Institute of Technology -# See file License.txt for licensing information -# -############################################################### - -build_f90=@BUILD_F90@ -build_python=@BUILD_PYTHON@ -build_matlab = @BUILD_MATLAB@ - -all: - cd src; @MAKE@ - cd cxx; @MAKE@ - cd clib/src; @MAKE@ -ifeq ($(build_f90),1) - cd fortran/src; @MAKE@ -endif - cd user; @MAKE@ - -clean: - cd src; @MAKE@ clean - cd cxx; @MAKE@ clean - cd clib/src; $(RM) .depends ; @MAKE@ clean - cd python; @MAKE@ clean -ifeq ($(build_f90),1) - cd fortran/src; $(RM) .depends ; @MAKE@ clean -endif - cd user; $(RM) .depends ; @MAKE@ clean - -depends: - cd src; @MAKE@ depends - cd cxx/src; @MAKE@ depends - cd clib/src; @MAKE@ depends -ifeq ($(build_f90),1) - cd fortran/src; @MAKE@ depends -endif -ifeq ($(build_matlab),1) - cd matlab; @MAKE@ depends -endif - cd user; @MAKE@ depends - -install: - cd src; @MAKE@ install - cd cxx/src; @MAKE@ install - cd clib/src; @MAKE@ install -ifeq ($(build_f90),1) - cd fortran/src; @MAKE@ install -endif - cd user; @MAKE@ install - -# end of file - diff --git a/Cantera/src/Makefile.am b/Cantera/src/Makefile.am new file mode 100644 index 000000000..713874f7d --- /dev/null +++ b/Cantera/src/Makefile.am @@ -0,0 +1,7 @@ +# $Id: $ + +# need to add CXX_INCLUDES +# will need to add python and matlab +SUBDIRS = base converters equil kinetics numerics oneD spectra transport zeroD + + diff --git a/Cantera/src/Makefile.in b/Cantera/src/Makefile.in deleted file mode 100755 index 4408231f2..000000000 --- a/Cantera/src/Makefile.in +++ /dev/null @@ -1,48 +0,0 @@ -#/bin/sh -############################################################### -# $Author: dggoodwin $ -# $Date: 2007/12/15 17:15:50 $ -# $Revision: 1.58 $ -# -# Copyright 2001 California Institute of Technology -# -############################################################### - -all: - cd base; @MAKE@ all - cd equil; @MAKE@ all - cd zeroD; @MAKE@ all - cd oneD; @MAKE@ all - cd converters; @MAKE@ all - cd transport; @MAKE@ all - cd thermo; @MAKE@ all - cd kinetics; @MAKE@ all - cd numerics; @MAKE@ all - cd spectra; @MAKE@ all - -clean: - cd base; $(RM) .depends ; @MAKE@ clean - cd equil; $(RM) .depends ; @MAKE@ clean - cd zeroD; $(RM) .depends ; @MAKE@ clean - cd oneD; $(RM) .depends ; @MAKE@ clean - cd converters; $(RM) .depends ; @MAKE@ clean - cd transport; $(RM) .depends ; @MAKE@ clean - cd thermo; $(RM) .depends ; @MAKE@ clean - cd kinetics; $(RM) .depends ; @MAKE@ clean - cd numerics; $(RM) .depends ; @MAKE@ clean - cd spectra; $(RM) .depends ; @MAKE@ clean - -depends: - cd base; @MAKE@ depends - cd equil; @MAKE@ depends - cd oneD; @MAKE@ depends - cd zeroD; @MAKE@ depends - cd converters; @MAKE@ depends - cd transport; @MAKE@ depends - cd thermo; @MAKE@ depends - cd kinetics; @MAKE@ depends - cd numerics; @MAKE@ depends - cd spectra; @MAKE@ depends - -TAGS: - etags *.h *.cpp diff --git a/configure.ac b/configure.ac index 97420855f..3dbd36240 100644 --- a/configure.ac +++ b/configure.ac @@ -55,7 +55,7 @@ AM_SANITY_CHECK # DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) # Generate Output Files -AC_OUTPUT( Makefile Cantera/Makefile test_problems/Makefile examples/Makefile doxygen/Makefile) +AC_OUTPUT( Makefile Cantera/Makefile test_problems/Makefile examples/Makefile) #doxygen/Makefile # FINAL SUMMARY AX_SUMMARIZE_CONFIG From 68d07c5bad1a5b28e70acced91c2e0761264c087 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 11 Nov 2011 00:44:27 +0000 Subject: [PATCH 010/124] [cantera+autotools]: a few more edits, adding another makefile.am in examples (which will have to be edited further downstream) --- configure.ac | 2 +- examples/Makefile.am | 5 ++ examples/Makefile.in | 12 --- test_problems/Makefile.in | 161 -------------------------------------- 4 files changed, 6 insertions(+), 174 deletions(-) create mode 100644 examples/Makefile.am delete mode 100755 examples/Makefile.in delete mode 100644 test_problems/Makefile.in diff --git a/configure.ac b/configure.ac index 3dbd36240..84b0d3847 100644 --- a/configure.ac +++ b/configure.ac @@ -55,7 +55,7 @@ AM_SANITY_CHECK # DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) # Generate Output Files -AC_OUTPUT( Makefile Cantera/Makefile test_problems/Makefile examples/Makefile) #doxygen/Makefile +AC_OUTPUT( Makefile test_problems/Makefile examples/Makefile Cantera/Makefile) #doxygen/Makefile # FINAL SUMMARY AX_SUMMARIZE_CONFIG diff --git a/examples/Makefile.am b/examples/Makefile.am new file mode 100644 index 000000000..68d864567 --- /dev/null +++ b/examples/Makefile.am @@ -0,0 +1,5 @@ +EXTRA_DIST = + +dist-hook: + rm -rf `find $(distdir)/ -name .svn` + rm -rf `find $(distdir)/ -name .deps` \ No newline at end of file diff --git a/examples/Makefile.in b/examples/Makefile.in deleted file mode 100755 index ced72344e..000000000 --- a/examples/Makefile.in +++ /dev/null @@ -1,12 +0,0 @@ -#/bin/sh - -all: - @echo 'building example programs....' - cd cxx; @MAKE@ all - -clean: - cd cxx; @MAKE@ clean - -depends: - cd cxx; @MAKE@ depends - diff --git a/test_problems/Makefile.in b/test_problems/Makefile.in deleted file mode 100644 index b2c381ba2..000000000 --- a/test_problems/Makefile.in +++ /dev/null @@ -1,161 +0,0 @@ -# -# $Revision: 1.36 $ -# $Author: hkmoffa $ -# $Date: 2009/03/25 01:03:05 $ -# -# -test_python=@BUILD_PYTHON@ -test_ck=@BUILD_CK@ -test_cathermo=@NEED_CATHERMO@ -test_pure_fluids=@COMPILE_PURE_FLUIDS@ -test_vcs_nonideal=@COMPILE_VCSNONIDEAL@ - -all: - cd cxx_ex; @MAKE@ all - cd surfkin; @MAKE@ all - cd fracCoeff; @MAKE@ all - cd silane_equil; @MAKE@ all - cd VPsilane_test; @MAKE@ all - cd negATest; @MAKE@ all - cd diamondSurf; @MAKE@ all - cd diamondSurf_dupl; @MAKE@ all - cd surfSolverTest; @MAKE@ all - cd ChemEquil_gri_matrix; @MAKE@ all - cd ChemEquil_gri_pairs; @MAKE@ all - cd ChemEquil_ionizedGas; @MAKE@ all - cd ChemEquil_red1; @MAKE@ all - cd CpJump; @MAKE@ all - cd mixGasTransport; @MAKE@ all - cd multiGasTransport; @MAKE@ all - cd printUtilUnitTest; @MAKE@ all -ifeq ($(test_pure_fluids),1) - cd pureFluidTest; @MAKE@ all - cd rankine_democxx; @MAKE@ all -endif -ifeq ($(test_python),1) - cd min_python; @MAKE@ all -endif -ifeq ($(test_python),2) - cd min_python; @MAKE@ all -endif -ifeq ($(test_ck),1) - cd ck2cti_test; @MAKE@ all - cd nasa9_reader; @MAKE@ all -endif -ifeq ($(test_cathermo),1) - cd cathermo; @MAKE@ all -endif -ifeq ($(test_vcs_nonideal),1) - cd VCSnonideal; @MAKE@ all -endif - -test: - @ cd cxx_ex; @MAKE@ -s test - @ cd surfkin; @MAKE@ -s test - @ cd fracCoeff; @MAKE@ -s test - @ cd silane_equil; @MAKE@ -s test - @ cd VPsilane_test; @MAKE@ -s test - @ cd negATest; @MAKE@ -s test - @ cd diamondSurf; @MAKE@ -s test - @ cd diamondSurf_dupl; @MAKE@ -s test - @ cd surfSolverTest; @MAKE@ -s test - @ cd NASA9poly_test; @MAKE@ -s test - @ cd ChemEquil_gri_matrix; @MAKE@ -s test - @ cd ChemEquil_gri_pairs; @MAKE@ -s test - @ cd ChemEquil_ionizedGas; @MAKE@ -s test - @ cd ChemEquil_red1; @MAKE@ -s test - @ cd CpJump; @MAKE@ -s test - @ cd mixGasTransport; @MAKE@ -s test - @ cd multiGasTransport; @MAKE@ -s test - @ cd printUtilUnitTest; @MAKE@ -s test -ifeq ($(test_pure_fluids),1) - @ cd pureFluidTest; @MAKE@ -s test - @ cd rankine_democxx; @MAKE@ -s test -endif -ifeq ($(test_ck),1) - @ cd ck2cti_test; @MAKE@ -s test - @ cd nasa9_reader; @MAKE@ -s test -endif -ifeq ($(test_python),1) - cd min_python; @MAKE@ -s test -endif -ifeq ($(test_python),2) - cd min_python; @MAKE@ -s test - cd python; @MAKE@ -s test -endif -ifeq ($(test_cathermo),1) - cd cathermo; @MAKE@ -s test -endif -ifeq ($(test_vcs_nonideal),1) - cd VCSnonideal; @MAKE@ -s test -endif - -clean: - $(RM) *.*~ - cd cxx_ex; $(RM) .depends ; @MAKE@ clean - cd surfkin; $(RM) .depends ; @MAKE@ clean - cd fracCoeff; $(RM) .depends ; @MAKE@ clean - cd silane_equil; $(RM) .depends ; @MAKE@ clean - cd VPsilane_test; $(RM) .depends ; @MAKE@ clean - cd negATest; $(RM) .depends ; @MAKE@ clean - cd diamondSurf; $(RM) .depends ; @MAKE@ clean - cd diamondSurf_dupl; $(RM) .depends ; @MAKE@ clean - cd surfSolverTest; $(RM) .depends ; @MAKE@ clean - cd NASA9poly_test; $(RM) .depends ; @MAKE@ clean - cd ChemEquil_gri_matrix; $(RM) .depends ; @MAKE@ clean - cd ChemEquil_gri_pairs; $(RM) .depends ; @MAKE@ clean - cd ChemEquil_ionizedGas; $(RM) .depends ; @MAKE@ clean - cd ChemEquil_red1; $(RM) .depends ; @MAKE@ clean - cd CpJump; $(RM) .depends ; @MAKE@ clean - cd mixGasTransport; $(RM) .depends ; @MAKE@ clean - cd multiGasTransport; $(RM) .depends ; @MAKE@ clean - cd printUtilUnitTest; $(RM) .depends ; @MAKE@ clean - cd pureFluidTest; $(RM) .depends ; @MAKE@ clean - cd rankine_democxx; $(RM) .depends ; @MAKE@ clean - cd ck2cti_test; $(RM) .depends ; @MAKE@ clean - cd nasa9_reader; $(RM) .depends ; @MAKE@ clean - cd min_python; @MAKE@ clean - cd python; @MAKE@ clean - cd cathermo; @MAKE@ clean - cd VCSnonideal; @MAKE@ clean - -depends: - cd cxx_ex; @MAKE@ depends - cd surfkin; @MAKE@ depends - cd fracCoeff; @MAKE@ depends - cd silane_equil; @MAKE@ depends - cd VPsilane_test; @MAKE@ depends - cd negATest; @MAKE@ depends - cd diamondSurf; @MAKE@ depends - cd diamondSurf_dupl; @MAKE@ depends - cd surfSolverTest; @MAKE@ depends - cd NASA9poly_test; @MAKE@ depends - cd ChemEquil_gri_matrix; @MAKE@ depends - cd ChemEquil_gri_pairs; @MAKE@ depends - cd ChemEquil_ionizedGas; @MAKE@ depends - cd ChemEquil_red1; @MAKE@ depends - cd CpJump; @MAKE@ depends - cd mixGasTransport; @MAKE@ depends - cd multiGasTransport; @MAKE@ depends - cd printUtilUnitTest; @MAKE@ depends -ifeq ($(test_cathermo),1) - cd pureFluidTest; @MAKE@ depends - cd rankine_democxx; @MAKE@ depends -endif -ifeq ($(test_ck),1) - cd ck2cti_test; @MAKE@ depends - cd nasa9_reader; @MAKE@ depends -endif -ifeq ($(test_python),1) - cd min_python; @MAKE@ depends -endif -ifeq ($(test_python),2) - cd min_python; @MAKE@ depends - cd python; @MAKE@ depends -endif -ifeq ($(test_cathermo),1) - cd cathermo; @MAKE@ depends -endif -ifeq ($(test_vcs_nonideal),1) - cd VCSnonideal; @MAKE@ depends -endif From abcd4fb0aaac6aaa1a3f1ee0a2dfd1072bec68df Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 11 Nov 2011 15:55:22 +0000 Subject: [PATCH 011/124] [cantera+autotools]: adding makefile.am --- Cantera/src/base/Makefile.am | 12 +++++ Cantera/src/base/Makefile.in | 93 ------------------------------------ 2 files changed, 12 insertions(+), 93 deletions(-) create mode 100644 Cantera/src/base/Makefile.am delete mode 100644 Cantera/src/base/Makefile.in diff --git a/Cantera/src/base/Makefile.am b/Cantera/src/base/Makefile.am new file mode 100644 index 000000000..819479652 --- /dev/null +++ b/Cantera/src/base/Makefile.am @@ -0,0 +1,12 @@ +h_sources = ct_defs.h ctexceptions.h logger.h XML_Writer.h \ + ctml.h plots.h stringUtils.h xml.h config.h utilities.h \ + Array.h vec_functions.h global.h FactoryBase.h clockWC.h \ + PrintCtrl.h LogPrintCtrl.h mdp_allo.h + +cc_sources = ct2ctml.cpp ctml.cpp misc.cpp plots.cpp stringUtils.cpp xml.cpp clockWC.cpp\ + PrintCtrl.cpp LogPrintCtrl.cpp mdp_allo.cpp checkFinite.cpp + +INCLUDES = +AM_FCFLAGS = $(INCLUDES) +AM_CFLAGS = $(INCLUDES) +AM_CPPFLAGS = $(INCLUDES) diff --git a/Cantera/src/base/Makefile.in b/Cantera/src/base/Makefile.in deleted file mode 100644 index 7d00cb58a..000000000 --- a/Cantera/src/base/Makefile.in +++ /dev/null @@ -1,93 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h - -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ - -debug_mode = @CANTERA_DEBUG_MODE@ -ifeq ($(debug_mode), 1) - DEBUG_FLAG=-DDEBUG_MODE -else - DEBUG_FLAG= -endif - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -CXX_FLAGS = @CXXFLAGS@ $(LOCAL_DEFS) $(CXX_OPT) $(PIC_FLAG) $(DEBUG_FLAG) - -BASE_OBJ = ct2ctml.o ctml.o misc.o plots.o stringUtils.o xml.o clockWC.o\ - PrintCtrl.o LogPrintCtrl.o mdp_allo.o checkFinite.o - -BASE_H = ct_defs.h ctexceptions.h logger.h XML_Writer.h \ - ctml.h plots.h stringUtils.h xml.h config.h utilities.h \ - Array.h vec_functions.h global.h FactoryBase.h clockWC.h \ - PrintCtrl.h LogPrintCtrl.h mdp_allo.h - -CXX_INCLUDES = -I. @CXX_INCLUDES@ -LIB = @buildlib@/libctbase.a - -DEPENDS = $(BASE_OBJ:.o=.d) - -all: $(LIB) .depends - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(BASE_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) - -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) - -$(LIB): $(BASE_OBJ) $(BASE_H) - @ARCHIVE@ $(LIB) $(BASE_OBJ) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif - -clean: - @(for lh in dummy.h $(BASE_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - @(if test -f $(LIB) ; then \ - $(RM) $(LIB) ; \ - echo "$(RM) $(LIB)" ; \ - fi) - $(RM) *.o *~ .depends *.d - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -$(BASE_OBJ): Makefile - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - From 21960f54028a90158a21f8ed0b3b9c3df8b8eeb2 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 11 Nov 2011 16:07:23 +0000 Subject: [PATCH 012/124] [cantera+autotools]: adding makefile.am in test_problems --- test_problems/Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test_problems/Makefile.am diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am new file mode 100644 index 000000000..68d864567 --- /dev/null +++ b/test_problems/Makefile.am @@ -0,0 +1,5 @@ +EXTRA_DIST = + +dist-hook: + rm -rf `find $(distdir)/ -name .svn` + rm -rf `find $(distdir)/ -name .deps` \ No newline at end of file From 8fa5356ec04b9b45cb406776300b17211f5da2bf Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 05:02:49 +0000 Subject: [PATCH 013/124] [cantera + autotools]: adding makefile.am information for source directory. Should build and compile. --- Cantera/src/Makefile.am | 5 +- Cantera/src/base/Makefile.am | 29 +- Cantera/src/base/config.h | 87 +++- Cantera/src/base/xml.h | 1 - Cantera/src/converters/Makefile.am | 20 + Cantera/src/converters/Makefile.in | 616 ++++++++++++++++++++++++--- Cantera/src/converters/ck2ctml.cpp | 1 - Cantera/src/converters/ck2ctml.h | 1 + Cantera/src/equil/Makefile.am | 32 ++ Cantera/src/kinetics/Makefile.am | 23 ++ Cantera/src/kinetics/Makefile.in | 635 +++++++++++++++++++++++----- Cantera/src/numerics/Makefile.am | 22 + Cantera/src/numerics/Makefile.in | 126 ------ Cantera/src/numerics/funcs.cpp | 4 +- Cantera/src/oneD/Makefile.am | 21 + Cantera/src/oneD/Makefile.in | 611 ++++++++++++++++++++++++--- Cantera/src/oneD/Resid1D.h | 4 +- Cantera/src/oneD/Solid1D.cpp | 8 +- Cantera/src/oneD/Solid1D.h | 17 +- Cantera/src/oneD/StFlow.h | 2 - Cantera/src/spectra/Makefile.am | 17 + Cantera/src/spectra/Makefile.in | 605 ++++++++++++++++++++++++--- Cantera/src/thermo/Makefile.am | 38 ++ Cantera/src/thermo/Makefile.in | 155 ------- Cantera/src/transport/Makefile.am | 24 ++ Cantera/src/transport/Makefile.in | 644 ++++++++++++++++++++++++----- Cantera/src/zeroD/Makefile.am | 20 + Cantera/src/zeroD/Makefile.in | 85 ---- 28 files changed, 3059 insertions(+), 794 deletions(-) create mode 100644 Cantera/src/converters/Makefile.am create mode 100644 Cantera/src/equil/Makefile.am create mode 100644 Cantera/src/kinetics/Makefile.am create mode 100644 Cantera/src/numerics/Makefile.am delete mode 100644 Cantera/src/numerics/Makefile.in create mode 100644 Cantera/src/oneD/Makefile.am create mode 100644 Cantera/src/spectra/Makefile.am create mode 100644 Cantera/src/thermo/Makefile.am delete mode 100644 Cantera/src/thermo/Makefile.in create mode 100644 Cantera/src/transport/Makefile.am create mode 100644 Cantera/src/zeroD/Makefile.am delete mode 100644 Cantera/src/zeroD/Makefile.in diff --git a/Cantera/src/Makefile.am b/Cantera/src/Makefile.am index 713874f7d..7efff9ba9 100644 --- a/Cantera/src/Makefile.am +++ b/Cantera/src/Makefile.am @@ -2,6 +2,9 @@ # need to add CXX_INCLUDES # will need to add python and matlab -SUBDIRS = base converters equil kinetics numerics oneD spectra transport zeroD +#SUBDIRS = base converters equil kinetics numerics oneD spectra transport zeroD + +# order we need +SUBDIRS = base converters thermo transport oneD zeroD kinetics numerics spectra diff --git a/Cantera/src/base/Makefile.am b/Cantera/src/base/Makefile.am index 819479652..024e153cf 100644 --- a/Cantera/src/base/Makefile.am +++ b/Cantera/src/base/Makefile.am @@ -1,12 +1,23 @@ -h_sources = ct_defs.h ctexceptions.h logger.h XML_Writer.h \ - ctml.h plots.h stringUtils.h xml.h config.h utilities.h \ - Array.h vec_functions.h global.h FactoryBase.h clockWC.h \ - PrintCtrl.h LogPrintCtrl.h mdp_allo.h +h_sources = utilities.h ct_defs.h ctexceptions.h logger.h \ + ctml.h plots.h stringUtils.h xml.h \ + Array.h vec_functions.h global.h XML_Writer.h \ + FactoryBase.h clockWC.h PrintCtrl.h \ + LogPrintCtrl.h mdp_allo.h config.h -cc_sources = ct2ctml.cpp ctml.cpp misc.cpp plots.cpp stringUtils.cpp xml.cpp clockWC.cpp\ - PrintCtrl.cpp LogPrintCtrl.cpp mdp_allo.cpp checkFinite.cpp +cc_sources = ct2ctml.cpp ctml.cpp misc.cpp plots.cpp \ + stringUtils.cpp xml.cpp clockWC.cpp \ + PrintCtrl.cpp LogPrintCtrl.cpp mdp_allo.cpp \ + checkFinite.cpp INCLUDES = -AM_FCFLAGS = $(INCLUDES) -AM_CFLAGS = $(INCLUDES) -AM_CPPFLAGS = $(INCLUDES) +AM_CXXFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = libctbase.la +library_includedir = $(includedir) + +#----------------------- +# Cantera Converters C/C++ library +#----------------------- + +libctbase_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +libctbase_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/Cantera/src/base/config.h b/Cantera/src/base/config.h index 00042f57f..db931677a 100644 --- a/Cantera/src/base/config.h +++ b/Cantera/src/base/config.h @@ -1,20 +1,67 @@ -#ifndef SRC_CONFIG_H -#define SRC_CONFIG_H -#ifdef _WIN32 -#undef WIN32 -#define WIN32 -#endif -#ifdef WIN32 -#ifdef CANTERA_APP -#include "../winconfig.h" -#else -#include "../../../winconfig.h" -#endif -#else -#ifdef CANTERA_APP -#include "../config.h" -#else -#include "../../../config.h" -#endif -#endif -#endif +/* config.h. Generated from config.h.in by configure. */ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Define to 1 if you have the header file. */ +#define HAVE_DLFCN_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_INTTYPES_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_MEMORY_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDINT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRINGS_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_UNISTD_H 1 + +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#define LT_OBJDIR ".libs/" + +/* Name of package */ +#define PACKAGE "cantera" + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "nick@ices.utexas.edu" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "cantera" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "cantera 1.8.0" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "cantera" + +/* Define to the home page for this package. */ +#define PACKAGE_URL "" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "1.8.0" + +/* Define to 1 if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Version number of package */ +#define VERSION "1.8.0" + +typedef double doublereal; +typedef int integer; +typedef int ftnlen; diff --git a/Cantera/src/base/xml.h b/Cantera/src/base/xml.h index f3063ba9f..7e8a57d3a 100644 --- a/Cantera/src/base/xml.h +++ b/Cantera/src/base/xml.h @@ -19,7 +19,6 @@ #include "ct_defs.h" #include "global.h" - #include #include #include diff --git a/Cantera/src/converters/Makefile.am b/Cantera/src/converters/Makefile.am new file mode 100644 index 000000000..67370eb59 --- /dev/null +++ b/Cantera/src/converters/Makefile.am @@ -0,0 +1,20 @@ +h_sources = ck2ct.h CKParser.h CKReader.h Constituent.h Reaction.h \ + Species.h writelog.h ck2ctml.h ckr_defs.h ckr_utils.h \ + Element.h RxnSpecies.h thermoFunctions.h + +cc_sources = atomicWeightDB.cpp ck2ctml.cpp CKReader.cpp filter.cpp \ + Reaction.cpp thermoFunctions.cpp ck2ct.cpp CKParser.cpp \ + ckr_utils.cpp NASA9Parser.cpp Species.cpp writelog.cpp + +INCLUDES = -I../base -I../../../ +AM_CXXFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = libconverters.la +library_includedir = $(includedir) + +#----------------------- +# Cantera Converters C/C++ library +#----------------------- + +libconverters_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +libconverters_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/Cantera/src/converters/Makefile.in b/Cantera/src/converters/Makefile.in index d491f2f59..6e29d0e8f 100644 --- a/Cantera/src/converters/Makefile.in +++ b/Cantera/src/converters/Makefile.in @@ -1,86 +1,572 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -INCDIR = ../../../build/include/cantera/kernel/converters -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -PURIFY=@PURIFY@ +@SET_MAKE@ -PIC_FLAG=@PIC@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = Cantera/src/converters +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__installdirs = "$(DESTDIR)$(libdir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +libconverters_la_LIBADD = +am__objects_1 = atomicWeightDB.lo ck2ctml.lo CKReader.lo filter.lo \ + Reaction.lo thermoFunctions.lo ck2ct.lo CKParser.lo \ + ckr_utils.lo NASA9Parser.lo Species.lo writelog.lo +am__objects_2 = +am_libconverters_la_OBJECTS = $(am__objects_1) $(am__objects_2) +libconverters_la_OBJECTS = $(am_libconverters_la_OBJECTS) +libconverters_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(libconverters_la_LDFLAGS) $(LDFLAGS) -o $@ +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(libconverters_la_SOURCES) +DIST_SOURCES = $(libconverters_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +h_sources = ck2ct.h CKParser.h CKReader.h Constituent.h Reaction.h \ + Species.h writelog.h ck2ctml.h ckr_defs.h ckr_utils.h \ + Element.h RxnSpecies.h thermoFunctions.h -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) +cc_sources = atomicWeightDB.cpp ck2ctml.cpp CKReader.cpp filter.cpp \ + Reaction.cpp thermoFunctions.cpp ck2ct.cpp CKParser.cpp \ + ckr_utils.cpp NASA9Parser.cpp Species.cpp writelog.cpp -OBJS = atomicWeightDB.o CKParser.o CKReader.o Reaction.o ckr_utils.o \ - thermoFunctions.o writelog.o ck2ct.o Species.o NASA9Parser.o -# ck2ctml.o -CONV_H = CKReader.h thermoFunctions.h \ - Element.h Reaction.h CKParser.h \ - ckr_utils.h RxnSpecies.h writelog.h \ - ck2ct.h ckr_defs.h Constituent.h \ - Species.h +INCLUDES = -I../base -I../../../ +AM_CXXFLAGS = $(INCLUDES) +lib_LTLIBRARIES = libconverters.la +library_includedir = $(includedir) -CXX_INCLUDES = -I. -I../base -I../numerics -CONV_LIB = @buildlib@/libconverters.a +#----------------------- +# Cantera Converters C/C++ library +#----------------------- +libconverters_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +libconverters_la_SOURCES = $(cc_sources) $(h_sources) +all: all-am -DEPENDS = $(OBJS:.o=.d) +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Cantera/src/converters/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu Cantera/src/converters/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -all: .depends $(CONV_LIB) - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(CONV_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +libconverters.la: $(libconverters_la_OBJECTS) $(libconverters_la_DEPENDENCIES) + $(libconverters_la_LINK) -rpath $(libdir) $(libconverters_la_OBJECTS) $(libconverters_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CKParser.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CKReader.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NASA9Parser.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Reaction.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Species.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atomicWeightDB.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ck2ct.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ck2ctml.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ckr_utils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/filter.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/thermoFunctions.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/writelog.Plo@am__quote@ .cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -$(CONV_LIB): $(OBJS) - @ARCHIVE@ $(CONV_LIB) $(OBJS) -ifeq ($(do_ranlib),1) - @RANLIB@ $(CONV_LIB) -endif +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -clean: - @(for lh in $(CONV_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - $(RM) *.o *~ $(CONV_LIB) .depends - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -CKParser.o: CKParser.cpp - @CXX@ -c CKParser.cpp $(CXX_FLAGS) $(CXX_INCLUDES) -O0 +mostlyclean-libtool: + -rm -f *.lo -depends: - @MAKE@ .depends +clean-libtool: + -rm -rf .libs _libs -.depends: $(DEPENDS) - cat *.d > .depends +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS -$(OBJS): Makefile +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique -TAGS: - etags *.h *.cpp +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" -ifeq ($(wildcard .depends), .depends) -include .depends -endif +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(libdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-libLTLIBRARIES + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libLTLIBRARIES clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am \ + install-libLTLIBRARIES install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-libLTLIBRARIES + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/Cantera/src/converters/ck2ctml.cpp b/Cantera/src/converters/ck2ctml.cpp index 2aa7067c1..95f1159df 100755 --- a/Cantera/src/converters/ck2ctml.cpp +++ b/Cantera/src/converters/ck2ctml.cpp @@ -20,7 +20,6 @@ using namespace std; #include "Reaction.h" #include "writelog.h" - #include "xml.h" #include "ck2ctml.h" diff --git a/Cantera/src/converters/ck2ctml.h b/Cantera/src/converters/ck2ctml.h index 6133615a9..b7b354f29 100755 --- a/Cantera/src/converters/ck2ctml.h +++ b/Cantera/src/converters/ck2ctml.h @@ -5,6 +5,7 @@ #include #include "ctml.h" +#include "stringUtils.h" namespace ckr{ class CKReader; diff --git a/Cantera/src/equil/Makefile.am b/Cantera/src/equil/Makefile.am new file mode 100644 index 000000000..050cb3354 --- /dev/null +++ b/Cantera/src/equil/Makefile.am @@ -0,0 +1,32 @@ +h_sources = vcs_internal.h vcs_VolPhase.h vcs_solve.h vcs_prob.h \ + vcs_IntStarStar.h vcs_DoubleStarStar.h vcs_defs.h \ + vcs_MultiPhaseEquil.h vcs_Exception.h \ + vcs_SpeciesProperties.h vcs_species_thermo.h + +cc_sources = vcs_solve_TP.o vcs_VolPhase.o vcs_solve.o vcs_prob.o \ + vcs_TP.o vcs_report.o vcs_util.o \ + vcs_IntStarStar.o vcs_DoubleStarStar.o vcs_elem.o \ + vcs_elem_rearrange.o vcs_MultiPhaseEquil.o \ + vcs_nondim.o vcs_Exception.o \ + vcs_inest.o vcs_rearrange.o \ + vcs_root1d.o vcs_rxnadj.o \ + vcs_SpeciesProperties.o vcs_equilibrate.o \ + vcs_prep.o vcs_species_thermo.o vcs_Gibbs.o vcs_phaseStabil + +INCLUDES = = -I../base -I../thermo -I../numerics +AM_CXXFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = libequil.la +library_includedir = $(includedir) + +#----------------------- +# Cantera Converters C/C++ library +#----------------------- + +libequil_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +libequil_la_SOURCES = $(cc_sources) $(h_sources) + +# Basic Cantera Thermodynamics Object Files +EQUIL_OBJ = BasisOptimize.o ChemEquil.o MultiPhase.o MultiPhaseEquil.o equilibrate.o + +EQUIL_H = ChemEquil.h MultiPhase.h MultiPhaseEquil.h equil.h PropertyCalculator.h diff --git a/Cantera/src/kinetics/Makefile.am b/Cantera/src/kinetics/Makefile.am new file mode 100644 index 000000000..9c4e7d4ea --- /dev/null +++ b/Cantera/src/kinetics/Makefile.am @@ -0,0 +1,23 @@ +h_sources = importKinetics.h GRI_30_Kinetics.h KineticsFactory.h \ + Kinetics.h GasKinetics.h \ + FalloffFactory.h ReactionStoichMgr.h reaction_defs.h \ + FalloffMgr.h ThirdBodyMgr.h RateCoeffMgr.h ReactionData.h \ + RxnRates.h Enhanced3BConc.h StoichManager.h solveSP.h \ + AqueousKinetics.h + +cc_sources = importKinetics.cpp GRI_30_Kinetics.cpp KineticsFactory.cpp \ + GasKinetics.cpp AqueousKinetics.cpp FalloffFactory.cpp + ReactionStoichMgr.cpp Kinetics.cpp solveSP.cpp + +INCLUDES = -I../base -I../thermo -I../../../ +AM_CXXFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = libkinetics.la +library_includedir = $(includedir) + +#----------------------- +# Cantera Kinetics C/C++ library +#----------------------- + +libkinetics_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +libkinetics_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/Cantera/src/kinetics/Makefile.in b/Cantera/src/kinetics/Makefile.in index cfd625c43..68030d7b6 100644 --- a/Cantera/src/kinetics/Makefile.in +++ b/Cantera/src/kinetics/Makefile.in @@ -1,124 +1,569 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -do_kinetics = @COMPILE_KINETICS@ -do_heterokin = @COMPILE_HETEROKIN@ -do_rxnpath = @COMPILE_RXNPATH@ +@SET_MAKE@ -debug_mode = @CANTERA_DEBUG_MODE@ -ifeq ($(debug_mode), 1) - DEBUG_FLAG=-DDEBUG_MODE -else - DEBUG_FLAG= -endif - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ -# LOCAL_DEFS = -DDEBUG_SOLVESP -CXX_FLAGS = @CXXFLAGS@ $(LOCAL_DEFS) $(CXX_OPT) $(PIC_FLAG) $(DEBUG_FLAG) - -# homogeneous kinetics - -ifeq ($(do_kinetics),1) -KINETICS_OBJ=importKinetics.o GRI_30_Kinetics.o KineticsFactory.o \ - GasKinetics.o AqueousKinetics.o \ - FalloffFactory.o ReactionStoichMgr.o Kinetics.o solveSP.o -KINETICS_H = importKinetics.h GRI_30_Kinetics.h KineticsFactory.h \ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = Cantera/src/kinetics +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__installdirs = "$(DESTDIR)$(libdir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +libkinetics_la_LIBADD = +am__objects_1 = importKinetics.lo GRI_30_Kinetics.lo \ + KineticsFactory.lo GasKinetics.lo AqueousKinetics.lo \ + FalloffFactory.lo +am__objects_2 = +am_libkinetics_la_OBJECTS = $(am__objects_1) $(am__objects_2) +libkinetics_la_OBJECTS = $(am_libkinetics_la_OBJECTS) +libkinetics_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(libkinetics_la_LDFLAGS) $(LDFLAGS) -o $@ +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(libkinetics_la_SOURCES) +DIST_SOURCES = $(libkinetics_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +h_sources = importKinetics.h GRI_30_Kinetics.h KineticsFactory.h \ Kinetics.h GasKinetics.h \ FalloffFactory.h ReactionStoichMgr.h reaction_defs.h \ FalloffMgr.h ThirdBodyMgr.h RateCoeffMgr.h ReactionData.h \ RxnRates.h Enhanced3BConc.h StoichManager.h solveSP.h \ AqueousKinetics.h -KINETICS = $(KINETICS_OBJ) $(KINETICS_H) -endif +cc_sources = importKinetics.cpp GRI_30_Kinetics.cpp KineticsFactory.cpp \ + GasKinetics.cpp AqueousKinetics.cpp FalloffFactory.cpp -# heterogeneous kinetics +INCLUDES = -I../base -I../thermo -I../../../ +AM_CXXFLAGS = $(INCLUDES) +lib_LTLIBRARIES = libkinetics.la +library_includedir = $(includedir) -ifeq ($(do_heterokin),1) -HETEROKIN_OBJ=InterfaceKinetics.o ImplicitSurfChem.o -HETEROKIN_H =InterfaceKinetics.h ImplicitSurfChem.h EdgeKinetics.h -HETEROKIN = $(HETEROKIN_OBJ) -endif +#----------------------- +# Cantera Kinetics C/C++ library +#----------------------- +libkinetics_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +libkinetics_la_SOURCES = $(cc_sources) $(h_sources) +all: all-am -ifeq ($(do_rxnpath),1) -# reaction path analysis -RPATH_OBJ = Group.o ReactionPath.o -RPATH_H = Group.h ReactionPath.h -RPATH = $(RPATH_OBJ) -endif +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Cantera/src/kinetics/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu Cantera/src/kinetics/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -ALLKINETICS_OBJ = $(KINETICS_OBJ) $(HETEROKIN_OBJ) $(RPATH_OBJ) +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -ALLKINETICS_H = $(KINETICS_H) $(HETEROKIN_H) $(RPATH_H) +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done -CXX_INCLUDES = -I../base -I../thermo -I../numerics @CXX_INCLUDES@ -LIB = @buildlib@/libkinetics.a +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +libkinetics.la: $(libkinetics_la_OBJECTS) $(libkinetics_la_DEPENDENCIES) + $(libkinetics_la_LINK) -rpath $(libdir) $(libkinetics_la_OBJECTS) $(libkinetics_la_LIBADD) $(LIBS) -DEPENDS = $(ALLKINETICS_OBJ:.o=.d) +mostlyclean-compile: + -rm -f *.$(OBJEXT) -all: $(LIB) .depends - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(ALLKINETICS_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AqueousKinetics.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FalloffFactory.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GRI_30_Kinetics.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GasKinetics.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/KineticsFactory.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/importKinetics.Plo@am__quote@ .cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -$(LIB): $(ALLKINETICS_OBJ) $(ALLKINETICS_H) - @ARCHIVE@ $(LIB) $(ALLKINETICS_OBJ) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -clean: - @(for lh in dummy.h $(ALLKINETICS_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - @(if test -f $(LIB) ; then \ - $(RM) $(LIB) ; \ - echo "$(RM) $(LIB)" ; \ - fi) - $(RM) *.o *~ .depends *.d - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -depends: - @MAKE@ .depends +mostlyclean-libtool: + -rm -f *.lo -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends +clean-libtool: + -rm -rf .libs _libs -$(ALLKINETICS_OBJ): Makefile +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS -TAGS: - etags *.h *.cpp +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique -ifeq ($(wildcard .depends), .depends) -include .depends -endif +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(libdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-libLTLIBRARIES + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libLTLIBRARIES clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am \ + install-libLTLIBRARIES install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-libLTLIBRARIES + + ReactionStoichMgr.cpp Kinetics.cpp solveSP.cpp + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/Cantera/src/numerics/Makefile.am b/Cantera/src/numerics/Makefile.am new file mode 100644 index 000000000..ba48929b9 --- /dev/null +++ b/Cantera/src/numerics/Makefile.am @@ -0,0 +1,22 @@ +h_sources = ArrayViewer.h DenseMatrix.h \ + funcs.h ctlapack.h Func1.h FuncEval.h \ + polyfit.h\ + BandMatrix.h Integrator.h DAE_Solver.h ResidEval.h sort.h \ + SquareMatrix.h ResidJacEval.h NonlinearSolver.h + +cc_sources = DenseMatrix.cpp funcs.cpp Func1.cpp ODE_integrators.cpp \ + BandMatrix.cpp DAE_solvers.cpp funcs.cpp sort.cpp \ + SquareMatrix.cpp ResidJacEval.cpp NonlinearSolver.cpp + +INCLUDES = -I../base -I../../../ +AM_CXXFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = libctnumerics.la +library_includedir = $(includedir) + +#----------------------- +# Cantera numerics C/C++ library +#----------------------- + +libctnumerics_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +libctnumerics_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/Cantera/src/numerics/Makefile.in b/Cantera/src/numerics/Makefile.in deleted file mode 100644 index bffd2a159..000000000 --- a/Cantera/src/numerics/Makefile.in +++ /dev/null @@ -1,126 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h - -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ - -debug_mode = @CANTERA_DEBUG_MODE@ -ifeq ($(debug_mode), 1) - DEBUG_FLAG=-DDEBUG_MODE -else - DEBUG_FLAG= -endif - -use_sundials=@use_sundials@ - -SUNDIALS_INC=@sundials_include@ - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -CXX_FLAGS = @CXXFLAGS@ $(LOCAL_DEFS) $(CXX_OPT) $(PIC_FLAG) $(DEBUG_FLAG) - -NUMERICS_OBJ = DenseMatrix.o funcs.o Func1.o \ - ODE_integrators.o BandMatrix.o DAE_solvers.o \ - funcs.o sort.o SquareMatrix.o ResidJacEval.o NonlinearSolver.o - -NUMERICS_H = ArrayViewer.h DenseMatrix.h \ - funcs.h ctlapack.h Func1.h FuncEval.h \ - polyfit.h\ - BandMatrix.h Integrator.h DAE_Solver.h ResidEval.h sort.h \ - SquareMatrix.h ResidJacEval.h NonlinearSolver.h - -ifeq ($(use_sundials), 1) - ODEPACKAGE_H = CVodesIntegrator.h - ODEPACKAGE_OBJ = CVodesIntegrator.o -else - ODEPACKAGE_H = CVodeInt.h - ODEPACKAGE_OBJ = CVodeInt.o -endif - -TOTAL_H = $(NUMERICS_H) $(ODEPACKAGE_H) -TOTAL_OBJ = $(NUMERICS_OBJ) $(ODEPACKAGE_OBJ) - -TTOTAL_H = $(NUMERICS_H) CVode.h CVodesIntegrator.h - -CXX_INCLUDES = -I../base $(SUNDIALS_INC) -LIB = @buildlib@/libctnumerics.a - -DEPENDS = $(TOTAL_OBJ:.o=.d) - -all: .depends $(LIB) - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(TOTAL_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) - -$(LIB): $(TOTAL_OBJ) $(TOTAL_H) - @ARCHIVE@ $(LIB) $(TOTAL_OBJ) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif - -ODE_integrators.o: Makefile - $(PURIFY) @CXX@ -c ODE_integrators.cpp $(CXX_INCLUDES) $(SUNDIALS_INC) \ - $(CXX_FLAGS) - -ODE_integrators.d: ODE_integrators.cpp Makefile - @CXX_DEPENDS@ $(CXX_FLAGS) ODE_integrators.cpp $(CXX_INCLUDES) $(SUNDIALS_INC) \ - > ODE_integrators.d - -DAE_solvers.o: DAE_solvers.cpp Makefile - $(PURIFY) @CXX@ -c DAE_solvers.cpp $(CXX_INCLUDES) $(SUNDIALS_INC) $(CXX_FLAGS) - -DAE_solvers.d: DAE_solvers.cpp Makefile - @CXX_DEPENDS@ $(CXX_FLAGS) DAE_solvers.cpp $(CXX_INCLUDES) $(SUNDIALS_INC) \ - > DAE_solvers.d - -clean: - @(for lh in dummy.h $(TTOTAL_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - @(if test -f $(LIB) ; then \ - $(RM) $(LIB) ; \ - echo "$(RM) $(LIB)" ; \ - fi) - $(RM) *.o *~ .depends *.d *.a - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -$(NUMERICS_OBJ): Makefile - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/src/numerics/funcs.cpp b/Cantera/src/numerics/funcs.cpp index 81ce55810..3a2434451 100755 --- a/Cantera/src/numerics/funcs.cpp +++ b/Cantera/src/numerics/funcs.cpp @@ -140,8 +140,8 @@ namespace Cantera { * * @return returns the RMS error of the polynomial of degree ndeg . */ - doublereal polyfit(int n, doublereal* x, doublereal* y, doublereal* w, - int maxdeg, int& ndeg, doublereal eps, doublereal* r) { + doublereal polyfit(int n, doublereal* x, doublereal* y, doublereal* w, int maxdeg, int& ndeg, doublereal eps, doublereal* r) + { integer nn = n; integer mdeg = maxdeg; integer ndg = ndeg; diff --git a/Cantera/src/oneD/Makefile.am b/Cantera/src/oneD/Makefile.am new file mode 100644 index 000000000..67229f9d0 --- /dev/null +++ b/Cantera/src/oneD/Makefile.am @@ -0,0 +1,21 @@ +h_sources = Domain1D.h Inlet1D.h MultiJac.h MultiNewton.h \ + OneDim.h refine.h Resid1D.h Sim1D.h Solid1D.h \ + StFlow.h Surf1D.h + +cc_sources = boundaries1D.cpp Domain1D.cpp MultiJac.cpp \ + MultiNewton.cpp newton_utils.cpp oneD_files.cpp \ + OneDim.cpp refine.cpp Sim1D.cpp Solid1D.cpp \ + StFlow.cpp + +INCLUDES = -I../base -I../thermo -I../kinetics -I../transport -I../numerics -I../../../ +AM_CXXFLAGS = $(INCLUDES) -fPIC + +lib_LTLIBRARIES = liboneD.la +library_includedir = $(includedir) + +#----------------------- +# Cantera OneD C/C++ library +#----------------------- + +liboneD_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +liboneD_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/Cantera/src/oneD/Makefile.in b/Cantera/src/oneD/Makefile.in index ad4c6a0a5..5d893d890 100644 --- a/Cantera/src/oneD/Makefile.in +++ b/Cantera/src/oneD/Makefile.in @@ -1,81 +1,572 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -.SUFFIXES : -.SUFFIXES : .cpp .d .o +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -PURIFY=@PURIFY@ +@SET_MAKE@ -PIC_FLAG=@PIC@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = Cantera/src/oneD +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__installdirs = "$(DESTDIR)$(libdir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +liboneD_la_LIBADD = +am__objects_1 = boundaries1D.lo Domain1D.lo MultiJac.lo MultiNewton.lo \ + newton_utils.lo oneD_files.lo OneDim.lo refine.lo Sim1D.lo \ + Solid1D.lo StFlow.lo +am__objects_2 = +am_liboneD_la_OBJECTS = $(am__objects_1) $(am__objects_2) +liboneD_la_OBJECTS = $(am_liboneD_la_OBJECTS) +liboneD_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(liboneD_la_LDFLAGS) $(LDFLAGS) -o $@ +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(liboneD_la_SOURCES) +DIST_SOURCES = $(liboneD_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +h_sources = Domain1D.h Inlet1D.h MultiJac.h MultiNewton.h \ + OneDim.h refine.h Resid1D.h Sim1D.h Solid1D.h \ + StFlow.h Surf1D.h -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) -CXX_INCLUDES = -I../base -I../thermo -I../kinetics -I../transport -I../numerics @CXX_INCLUDES@ +cc_sources = boundaries1D.cpp Domain1D.cpp MultiJac.cpp \ + MultiNewton.cpp newton_utils.cpp oneD_files.cpp \ + OneDim.cpp refine.cpp Sim1D.cpp Solid1D.cpp \ + StFlow.cpp +INCLUDES = -I../base -I../thermo -I../kinetics -I../transport -I../numerics -I../../../ +AM_CXXFLAGS = $(INCLUDES) -fPIC +lib_LTLIBRARIES = liboneD.la +library_includedir = $(includedir) -OBJS = MultiJac.o MultiNewton.o newton_utils.o OneDim.o\ - StFlow.o boundaries1D.o refine.o Sim1D.o Domain1D.o -ONED_H = Inlet1D.h MultiJac.h Sim1D.h StFlow.h \ - Surf1D.h Domain1D.h MultiNewton.h OneDim.h \ - Resid1D.h Solid1D.h refine.h +#----------------------- +# Cantera OneD C/C++ library +#----------------------- +liboneD_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +liboneD_la_SOURCES = $(cc_sources) $(h_sources) +all: all-am -ONED_LIB = @buildlib@/liboneD.a +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Cantera/src/oneD/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu Cantera/src/oneD/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -DEPENDS = $(OBJS:.o=.d) +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -%.d: Makefile %.o - @CXX_DEPENDS@ @DEFS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +liboneD.la: $(liboneD_la_OBJECTS) $(liboneD_la_DEPENDENCIES) + $(liboneD_la_LINK) -rpath $(libdir) $(liboneD_la_OBJECTS) $(liboneD_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Domain1D.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MultiJac.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MultiNewton.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/OneDim.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Sim1D.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Solid1D.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StFlow.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/boundaries1D.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/newton_utils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/oneD_files.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/refine.Plo@am__quote@ .cpp.o: - $(PURIFY) @CXX@ -c $< @DEFS@ $(CXX_FLAGS) $(CXX_INCLUDES) +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -all: $(ONED_LIB) .depends - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(ONED_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -$(ONED_LIB): $(OBJS) - @ARCHIVE@ $(ONED_LIB) $(OBJS) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(ONED_LIB) -endif +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -clean: - @(for lh in $(ONED_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - $(RM) *.o *.d *~ $(ONED_LIB) .depends - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) +mostlyclean-libtool: + -rm -f *.lo -depends: - @MAKE@ .depends +clean-libtool: + -rm -rf .libs _libs -.depends: $(DEPENDS) - cat *.d > .depends +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS -$(OBJS): Makefile +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique -TAGS: - etags *.h *.cpp +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" -ifeq ($(wildcard .depends), .depends) -include .depends -endif +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(libdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-libLTLIBRARIES + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libLTLIBRARIES clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am \ + install-libLTLIBRARIES install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-libLTLIBRARIES + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/Cantera/src/oneD/Resid1D.h b/Cantera/src/oneD/Resid1D.h index 417f5a7b3..86c97e49d 100644 --- a/Cantera/src/oneD/Resid1D.h +++ b/Cantera/src/oneD/Resid1D.h @@ -15,8 +15,8 @@ /* * NOTE: I don't think this file is used any longer. Thus, this is deprecated. */ -#include "../ctexceptions.h" -#include "../xml.h" +#include "ctexceptions.h" +#include "xml.h" #include "refine.h" diff --git a/Cantera/src/oneD/Solid1D.cpp b/Cantera/src/oneD/Solid1D.cpp index cfdb5d8a3..330b37c51 100644 --- a/Cantera/src/oneD/Solid1D.cpp +++ b/Cantera/src/oneD/Solid1D.cpp @@ -21,15 +21,17 @@ #include #include "Solid1D.h" -#include "../ArrayViewer.h" -#include "../ctml.h" +#include "ArrayViewer.h" +#include "ctml.h" #include "MultiJac.h" +//nick adding +#include "StFlow.h" + using namespace ctml; namespace Cantera { - int Solid1D::c_T_loc = 0; int Solid1D::c_C_loc = 1; diff --git a/Cantera/src/oneD/Solid1D.h b/Cantera/src/oneD/Solid1D.h index 3bb41f302..6ea9c2000 100644 --- a/Cantera/src/oneD/Solid1D.h +++ b/Cantera/src/oneD/Solid1D.h @@ -14,14 +14,17 @@ #ifndef CT_SOLID1D_H #define CT_SOLID1D_H -#include "../transport/TransportBase.h" +#include "TransportBase.h" #include "Domain1D.h" -#include "../Array.h" -#include "../sort.h" -#include "../ThermoPhase.h" -#include "../Kinetics.h" -#include "../funcs.h" +#include "Array.h" +#include "sort.h" +#include "ThermoPhase.h" +#include "Kinetics.h" +#include "funcs.h" +// nick hack +#include +#include namespace Cantera { @@ -192,7 +195,7 @@ namespace Cantera { * Write a Tecplot zone corresponding to the current solution. * May be called multiple times to generate animation. */ - void outputTEC(ostream &s, const doublereal* x, + void outputTEC(std::ostream &s, const doublereal* x, std::string title, int zone); virtual void showSolution(const doublereal* x); diff --git a/Cantera/src/oneD/StFlow.h b/Cantera/src/oneD/StFlow.h index c9cb3d482..4bf3a20b1 100644 --- a/Cantera/src/oneD/StFlow.h +++ b/Cantera/src/oneD/StFlow.h @@ -20,8 +20,6 @@ #include "IdealGasPhase.h" #include "Kinetics.h" #include "funcs.h" -//#include "../flowBoundaries.h" - namespace Cantera { diff --git a/Cantera/src/spectra/Makefile.am b/Cantera/src/spectra/Makefile.am new file mode 100644 index 000000000..07fcc75e7 --- /dev/null +++ b/Cantera/src/spectra/Makefile.am @@ -0,0 +1,17 @@ +h_sources = DiatomicMolecule.h LineBroadener.h Nuclei.h \ + rotor.h spectralUtilities.h + +cc_sources = LineBroadener.cpp rotor.cpp spectralUtilities.cpp + +INCLUDES = -I../base -I../../../ +AM_CXXFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = libctspectra.la +library_includedir = $(includedir) + +#----------------------- +# Cantera Spectra C/C++ library +#----------------------- + +libctspectra_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +libctspectra_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/Cantera/src/spectra/Makefile.in b/Cantera/src/spectra/Makefile.in index fc124f288..f17d0d239 100644 --- a/Cantera/src/spectra/Makefile.in +++ b/Cantera/src/spectra/Makefile.in @@ -1,88 +1,557 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2007 California Institute of Technology -# -############################################################### +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -debug_mode = @CANTERA_DEBUG_MODE@ -ifeq ($(debug_mode), 1) - DEBUG_FLAG=-DDEBUG_MODE -else - DEBUG_FLAG= -endif +@SET_MAKE@ -PURIFY=@PURIFY@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = Cantera/src/spectra +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__installdirs = "$(DESTDIR)$(libdir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +libctspectra_la_LIBADD = +am__objects_1 = LineBroadener.lo rotor.lo spectralUtilities.lo +am__objects_2 = +am_libctspectra_la_OBJECTS = $(am__objects_1) $(am__objects_2) +libctspectra_la_OBJECTS = $(am_libctspectra_la_OBJECTS) +libctspectra_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(libctspectra_la_LDFLAGS) $(LDFLAGS) -o $@ +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(libctspectra_la_SOURCES) +DIST_SOURCES = $(libctspectra_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +h_sources = DiatomicMolecule.h LineBroadener.h Nuclei.h \ + rotor.h spectralUtilities.h -PIC_FLAG=@PIC@ +cc_sources = LineBroadener.cpp rotor.cpp spectralUtilities.cpp +INCLUDES = -I../base -I../../../ +AM_CXXFLAGS = $(INCLUDES) +lib_LTLIBRARIES = libctspectra.la +library_includedir = $(includedir) -CXX_FLAGS = @CXXFLAGS@ $(LOCAL_DEFS) $(CXX_OPT) $(PIC_FLAG) $(DEBUG_FLAG) +#----------------------- +# Cantera Spectra C/C++ library +#----------------------- +libctspectra_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +libctspectra_la_SOURCES = $(cc_sources) $(h_sources) +all: all-am -#SPECTRA_OBJ = rotor.o LineBroadener.o spectralUtilities.o -SPECTRA_OBJ = rotor.o LineBroadener.o +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Cantera/src/spectra/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu Cantera/src/spectra/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -#SPECTRA_H = rotor.h LineBroadener.h Nuclei.h spectralUtilities.h -SPECTRA_H = rotor.h LineBroadener.h Nuclei.h spectralUtilities.h +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -CXX_INCLUDES = -I. @CXX_INCLUDES@ -I../base -LIB = @buildlib@/libctspectra.a +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } -DEPENDS = $(SPECTRA_OBJ:.o=.d) +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done -all: $(LIB) .depends - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(SPECTRA_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) -%.d: - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +libctspectra.la: $(libctspectra_la_OBJECTS) $(libctspectra_la_DEPENDENCIES) + $(libctspectra_la_LINK) -rpath $(libdir) $(libctspectra_la_OBJECTS) $(libctspectra_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LineBroadener.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rotor.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/spectralUtilities.Plo@am__quote@ .cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -$(LIB): $(SPECTRA_OBJ) $(SPECTRA_H) - @ARCHIVE@ $(LIB) $(SPECTRA_OBJ) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -clean: - @(for lh in dummy.h $(SPECTRA_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - @(if test -f $(LIB) ; then \ - $(RM) $(LIB) ; \ - echo "$(RM) $(LIB)" ; \ - fi) - $(RM) *.o *~ .depends *.d - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -depends: - @MAKE@ .depends +mostlyclean-libtool: + -rm -f *.lo -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends +clean-libtool: + -rm -rf .libs _libs -TAGS: - etags *.h *.cpp +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS -ifeq ($(wildcard .depends), .depends) -include .depends -endif +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(libdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-libLTLIBRARIES + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libLTLIBRARIES clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am \ + install-libLTLIBRARIES install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-libLTLIBRARIES + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/Cantera/src/thermo/Makefile.am b/Cantera/src/thermo/Makefile.am new file mode 100644 index 000000000..0dc9f4129 --- /dev/null +++ b/Cantera/src/thermo/Makefile.am @@ -0,0 +1,38 @@ +h_sources = State.h Elements.h Constituents.h Phase.h mix_defs.h \ + ThermoPhase.h IdealGasPhase.h ConstDensityThermo.h \ + SpeciesThermoFactory.h ThermoFactory.h \ + NasaPoly1.h NasaPoly2.h NasaThermo.h Nasa9Poly1.h \ + Nasa9PolyMultiTempRegion.h \ + ShomateThermo.h ShomatePoly.h ConstCpPoly.h \ + SimpleThermo.h SpeciesThermoMgr.h \ + SpeciesThermoInterpType.h \ + GeneralSpeciesThermo.h Mu0Poly.h \ + speciesThermoTypes.h SpeciesThermo.h SurfPhase.h \ + EdgePhase.h IdealSolnGasVPSS.h \ + VPSSMgr.h VPSSMgrFactory.h VPSSMgr_General.h \ + VPSSMgr_IdealGas.h VPSSMgr_ConstVol.h PDSS_ConstVol.h \ + PDSS_IdealGas.h PDSS_SSVol.h + +cc_sources = State.cpp Elements.cpp Constituents.cpp Phase.cpp \ + ThermoPhase.cpp IdealGasPhase.cpp ConstDensityThermo.cpp \ + SpeciesThermoFactory.cpp ConstCpPoly.cpp Nasa9Poly1.cpp \ + Nasa9PolyMultiTempRegion.cpp \ + Mu0Poly.cpp GeneralSpeciesThermo.cpp SurfPhase.cpp \ + ThermoFactory.cpp phasereport.cpp SpeciesThermoInterpType.cpp \ + VPSSMgr.cpp VPSSMgrFactory.cpp VPSSMgr_General.cpp \ + IdealSolnGasVPSS.cpp \ + VPSSMgr_IdealGas.cpp VPSSMgr_ConstVol.cpp PDSS_ConstVol.cpp \ + PDSS_IdealGas.cpp PDSS_SSVol.cpp + +INCLUDES = -I../base -I../../../ +AM_CXXFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = libthermo.la +library_includedir = $(includedir) + +#----------------------- +# Cantera thermo C/C++ library +#----------------------- + +libthermo_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +libthermo_la_SOURCES = $(cc_sources) $(h_sources) diff --git a/Cantera/src/thermo/Makefile.in b/Cantera/src/thermo/Makefile.in deleted file mode 100644 index 73669357e..000000000 --- a/Cantera/src/thermo/Makefile.in +++ /dev/null @@ -1,155 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h - -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ -do_electro = @COMPILE_ELECTROLYTES@ -do_issp = @COMPILE_IDEAL_SOLUTIONS@ - -debug_mode = @CANTERA_DEBUG_MODE@ -ifeq ($(debug_mode), 1) - DEBUG_FLAG=-DDEBUG_MODE -else - DEBUG_FLAG= -endif - -# Purify command - usually this is blank -PURIFY=@PURIFY@ - -#LOCAL_DEFS=-DDEBUG_MODE -PIC_FLAG=@PIC@ - -CXX_FLAGS = @CXXFLAGS@ $(LOCAL_DEFS) $(CXX_OPT) $(PIC_FLAG) $(DEBUG_FLAG) - -# Basic Cantera Thermodynamics Object Files -THERMO_OBJ = State.o Elements.o Constituents.o Phase.o \ - ThermoPhase.o IdealGasPhase.o ConstDensityThermo.o \ - SpeciesThermoFactory.o ConstCpPoly.o Nasa9Poly1.o Nasa9PolyMultiTempRegion.o \ - Mu0Poly.o GeneralSpeciesThermo.o SurfPhase.o \ - ThermoFactory.o phasereport.o SpeciesThermoInterpType.o \ - VPSSMgr.o VPSSMgrFactory.o VPSSMgr_General.o IdealSolnGasVPSS.o \ - VPSSMgr_IdealGas.o VPSSMgr_ConstVol.o PDSS_ConstVol.o PDSS_IdealGas.o \ - PDSS_SSVol.o @phase_object_files@ - -THERMO_H = State.h Elements.h Constituents.h Phase.h mix_defs.h \ - ThermoPhase.h IdealGasPhase.h ConstDensityThermo.h \ - SpeciesThermoFactory.h ThermoFactory.h \ - NasaPoly1.h NasaPoly2.h NasaThermo.h Nasa9Poly1.h Nasa9PolyMultiTempRegion.h \ - ShomateThermo.h ShomatePoly.h ConstCpPoly.h \ - SimpleThermo.h SpeciesThermoMgr.h \ - SpeciesThermoInterpType.h \ - GeneralSpeciesThermo.h Mu0Poly.h \ - speciesThermoTypes.h SpeciesThermo.h SurfPhase.h \ - EdgePhase.h \ - VPSSMgr.h VPSSMgrFactory.h VPSSMgr_General.h IdealSolnGasVPSS.h \ - VPSSMgr_IdealGas.h VPSSMgr_ConstVol.h PDSS_ConstVol.h PDSS_IdealGas.h \ - PDSS_SSVol.h @phase_header_files@ - - -# Extended Cantera Thermodynamics Object Files - -ifeq ($(do_electro),1) -do_issp = 1 -ELECTRO_OBJ = MolalityVPSSTP.o VPStandardStateTP.o \ - IdealMolalSoln.o \ - WaterPropsIAPWSphi.o WaterPropsIAPWS.o WaterProps.o \ - PDSS.o PDSS_Water.o PDSS_HKFT.o \ - HMWSoln.o HMWSoln_input.o DebyeHuckel.o \ - WaterSSTP.o MetalSHEelectrons.o \ - VPSSMgr_Water_ConstVol.o VPSSMgr_Water_HKFT.o - -ELECTRO_H = MolalityVPSSTP.h VPStandardStateTP.h \ - IdealMolalSoln.h \ - WaterPropsIAPWSphi.h WaterPropsIAPWS.h WaterProps.h \ - PDSS.h PDSS_Water.h PDSS_HKFT.h \ - HMWSoln.h electrolytes.h \ - DebyeHuckel.h WaterSSTP.h MetalSHEelectrons.h VPSSMgr_Water_HKFT.h \ - VPSSMgr_Water_ConstVol.h -endif -ifeq ($(do_issp),1) -ISSP_OBJ = IdealSolidSolnPhase.o StoichSubstanceSSTP.o SingleSpeciesTP.o MineralEQ3.o \ - GibbsExcessVPSSTP.o PseudoBinaryVPSSTP.o MargulesVPSSTP.o \ - IonsFromNeutralVPSSTP.o PDSS_IonsFromNeutral.o -ISSP_H = IdealSolidSolnPhase.h StoichSubstanceSSTP.h SingleSpeciesTP.h MineralEQ3.h \ - GibbsExcessVPSSTP.h PseudoBinaryVPSSTP.h MargulesVPSSTP.h \ - IonsFromNeutralVPSSTP.h PDSS_IonsFromNeutral.h -endif - -CATHERMO_OBJ = $(THERMO_OBJ) $(ELECTRO_OBJ) $(ISSP_OBJ) - -CATHERMO_H = $(THERMO_H) $(ELECTRO_H) $(ISSP_H) - - -CXX_INCLUDES = -I../base @CXX_INCLUDES@ -LIB = @buildlib@/libthermo.a - -DEPENDS = $(CATHERMO_OBJ:.o=.d) - -all: $(LIB) .depends - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(CATHERMO_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) - -$(LIB): $(CATHERMO_OBJ) $(CATHERMO_H) - @ARCHIVE@ $(LIB) $(CATHERMO_OBJ) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif - -clean: - @(for lh in dummy.h $(CATHERMO_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - @(if test -f $(LIB) ; then \ - $(RM) $(LIB) ; \ - echo "$(RM) $(LIB)" ; \ - fi) - $(RM) *.o *~ .depends *.d - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -# -# Dependency rules -# -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -$(CATHERMO_OBJ): Makefile - -# -# Make sure that if the Makefile changes, all object files -# must get recompiled -$(CATHERMO_OBJ): Makefile - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/Cantera/src/transport/Makefile.am b/Cantera/src/transport/Makefile.am new file mode 100644 index 000000000..35d344709 --- /dev/null +++ b/Cantera/src/transport/Makefile.am @@ -0,0 +1,24 @@ +h_sources = AqueousTransport.h LiquidTransportData.h L_matrix.h \ + MultiTransport.h TransportBase.h WaterTransport.h \ + DustyGasTransport.h LiquidTransport.h MixTransport.h \ + SimpleTransport.h TransportFactory.h FtnTransport.h \ + LiquidTransportParams.h MMCollisionInt.h \ + SolidTransport.h TransportParams.h + +cc_sources = AqueousTransport.cpp LiquidTransport.cpp MMCollisionInt.cpp \ + SimpleTransport.cpp TransportBase.cpp WaterTransport.cpp \ + DustyGasTransport.cpp MixTransport.cpp MultiTransport.cpp \ + SolidTransport.cpp TransportFactory.cpp + +INCLUDES = -I../base -I../thermo -I../numerics -I../../../ +AM_CXXFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = libtransport.la +library_includedir = $(includedir) + +#----------------------- +# Cantera Transport C/C++ library +#----------------------- + +libtransport_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +libtransport_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/Cantera/src/transport/Makefile.in b/Cantera/src/transport/Makefile.in index 8302e9a54..a7145b3a6 100644 --- a/Cantera/src/transport/Makefile.in +++ b/Cantera/src/transport/Makefile.in @@ -1,116 +1,576 @@ -#/bin/sh -############################################################### -# -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -do_electro = @COMPILE_ELECTROLYTES@ -do_issp = @COMPILE_IDEAL_SOLUTIONS@ +@SET_MAKE@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = Cantera/src/transport +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__installdirs = "$(DESTDIR)$(libdir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +libtransport_la_LIBADD = +am__objects_1 = AqueousTransport.lo LiquidTransport.lo \ + MMCollisionInt.lo SimpleTransport.lo TransportBase.lo \ + WaterTransport.lo DustyGasTransport.lo MixTransport.lo \ + MultiTransport.lo SolidTransport.lo TransportFactory.lo +am__objects_2 = +am_libtransport_la_OBJECTS = $(am__objects_1) $(am__objects_2) +libtransport_la_OBJECTS = $(am_libtransport_la_OBJECTS) +libtransport_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(libtransport_la_LDFLAGS) $(LDFLAGS) -o $@ +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(libtransport_la_SOURCES) +DIST_SOURCES = $(libtransport_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +h_sources = AqueousTransport.h LiquidTransportData.h L_matrix.h \ + MultiTransport.h TransportBase.h WaterTransport.h \ + DustyGasTransport.h LiquidTransport.h MixTransport.h \ + SimpleTransport.h TransportFactory.h FtnTransport.h \ + LiquidTransportParams.h MMCollisionInt.h \ + SolidTransport.h TransportParams.h -PURIFY=@PURIFY@ +cc_sources = AqueousTransport.cpp LiquidTransport.cpp MMCollisionInt.cpp \ + SimpleTransport.cpp TransportBase.cpp WaterTransport.cpp \ + DustyGasTransport.cpp MixTransport.cpp MultiTransport.cpp \ + SolidTransport.cpp TransportFactory.cpp -PIC_FLAG=@PIC@ +INCLUDES = -I../base -I../thermo -I../numerics -I../../../ +AM_CXXFLAGS = $(INCLUDES) +lib_LTLIBRARIES = libtransport.la +library_includedir = $(includedir) -debug_mode = @CANTERA_DEBUG_MODE@ -ifeq ($(debug_mode), 1) - DEBUG_FLAG=-DDEBUG_MODE -else - DEBUG_FLAG= -endif +#----------------------- +# Cantera Transport C/C++ library +#----------------------- +libtransport_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +libtransport_la_SOURCES = $(cc_sources) $(h_sources) +all: all-am +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Cantera/src/transport/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu Cantera/src/transport/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) $(DEBUG_FLAG) +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# Base Transport Object Files -TRAN_OBJ = TransportFactory.o MultiTransport.o MixTransport.o MMCollisionInt.o \ - SolidTransport.o DustyGasTransport.o TransportBase.o WaterTransport.o \ - SimpleTransport.o +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } -TRAN_H = TransportFactory.h MultiTransport.h MixTransport.h \ - MMCollisionInt.h SolidTransport.h DustyGasTransport.h \ - TransportBase.h L_matrix.h TransportParams.h WaterTransport.h \ - SimpleTransport.h LiquidTransportData.h +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done -ifeq ($(do_electro),1) -do_issp = 1 -ELECTRO_OBJ = AqueousTransport.o -ELECTRO_H = AqueousTransport.h -endif +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +libtransport.la: $(libtransport_la_OBJECTS) $(libtransport_la_DEPENDENCIES) + $(libtransport_la_LINK) -rpath $(libdir) $(libtransport_la_OBJECTS) $(libtransport_la_LIBADD) $(LIBS) -ifeq ($(do_issp),1) -ISSP_OBJ = LiquidTransport.o -ISSP_H = LiquidTransport.h LiquidTransportParams.h -endif +mostlyclean-compile: + -rm -f *.$(OBJEXT) +distclean-compile: + -rm -f *.tab.c -CATRAN_OBJ = $(TRAN_OBJ) $(ELECTRO_OBJ) $(ISSP_OBJ) - -CATRAN_H = $(TRAN_H) $(ELECTRO_H) $(ISSP_H) - -CXX_INCLUDES = -I../base -I../thermo -I../numerics @CXX_INCLUDES@ -LIB = @buildlib@/libtransport.a - -DEPENDS = $(CATRAN_OBJ:.o=.d) - -all: $(LIB) .depends - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(CATRAN_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AqueousTransport.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DustyGasTransport.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LiquidTransport.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MMCollisionInt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MixTransport.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MultiTransport.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SimpleTransport.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SolidTransport.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TransportBase.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TransportFactory.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/WaterTransport.Plo@am__quote@ .cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -$(LIB): $(CATRAN_OBJ) $(CATRAN_H) - @ARCHIVE@ $(LIB) $(CATRAN_OBJ) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -clean: - @(for lh in $(CATRAN_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - @(if test -f $(LIB) ; then \ - $(RM) $(LIB) ; \ - echo "$(RM) $(LIB)" ; \ - fi) - $(RM) *.o *.d *~ .depends - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -depends: - @MAKE@ .depends +mostlyclean-libtool: + -rm -f *.lo -.depends: $(DEPENDS) - cat *.d > .depends +clean-libtool: + -rm -rf .libs _libs -$(CATRAN_OBJ): Makefile +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(libdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-libLTLIBRARIES + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libLTLIBRARIES clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am \ + install-libLTLIBRARIES install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-libLTLIBRARIES -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/Cantera/src/zeroD/Makefile.am b/Cantera/src/zeroD/Makefile.am new file mode 100644 index 000000000..7e3335f88 --- /dev/null +++ b/Cantera/src/zeroD/Makefile.am @@ -0,0 +1,20 @@ +h_sources = Reactor.h ReactorBase.h FlowDevice.h Wall.h ReactorNet.h \ + flowControllers.h PID_Controller.h Reservoir.h FlowReactor.h \ + ConstPressureReactor.h ReactorFactory.h + +cc_sources = Reactor.cpp ReactorBase.cpp FlowDevice.cpp Wall.cpp \ + ReactorNet.cpp FlowReactor.cpp ConstPressureReactor.cpp \ + ReactorFactory.cpp + +INCLUDES = -I../base -I../thermo -I../kinetics -I../numerics -I../../../ +AM_CXXFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = libzeroD.la +library_includedir = $(includedir) + +#----------------------- +# Cantera OneD C/C++ library +#----------------------- + +libzeroD_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +libzeroD_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/Cantera/src/zeroD/Makefile.in b/Cantera/src/zeroD/Makefile.in deleted file mode 100644 index 8c3000018..000000000 --- a/Cantera/src/zeroD/Makefile.in +++ /dev/null @@ -1,85 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h - -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -# stirred reactors -OBJS = Reactor.o ReactorBase.o FlowDevice.o Wall.o ReactorNet.o \ - FlowReactor.o ConstPressureReactor.o ReactorFactory.o -ZEROD_H = Reactor.h ReactorBase.h FlowDevice.h Wall.h ReactorNet.h \ - flowControllers.h PID_Controller.h Reservoir.h FlowReactor.h \ - ConstPressureReactor.h ReactorFactory.h - -CXX_INCLUDES = -I../base -I../thermo -I../kinetics -I../numerics @CXX_INCLUDES@ -ZEROD_LIB = @buildlib@/libzeroD.a - -DEPENDS = $(OBJS:.o=.d) - -all: $(ZEROD_LIB) .depends - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(ZEROD_H) ; do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) - -%.d: Makefile %.o - @CXX_DEPENDS@ @DEFS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< @DEFS@ $(CXX_FLAGS) $(CXX_INCLUDES) - -$(ZEROD_LIB): $(OBJS) $(ZEROD_H) - @ARCHIVE@ $(ZEROD_LIB) $(OBJS) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(ZEROD_LIB) -endif - -clean: - @(for lh in $(ZEROD_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - @(if test -f $(ZEROD_LIB) ; then \ - $(RM) $(ZEROD_LIB) ; \ - echo "$(RM) $(ZEROD_LIB)" ; \ - fi) - $(RM) *.o *~ .depends *.d - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(OBJS): Makefile - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - From 541b35c13037a1b370ee3df9f394e6dbc35bd2d9 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 05:46:57 +0000 Subject: [PATCH 014/124] [cantera + automake]: fixing equilibrium makefile --- Cantera/src/Makefile.am | 5 +- Cantera/src/equil/Makefile.am | 38 ++++----- Cantera/src/equil/Makefile.in | 156 ---------------------------------- 3 files changed, 20 insertions(+), 179 deletions(-) delete mode 100644 Cantera/src/equil/Makefile.in diff --git a/Cantera/src/Makefile.am b/Cantera/src/Makefile.am index 7efff9ba9..bac33dc0e 100644 --- a/Cantera/src/Makefile.am +++ b/Cantera/src/Makefile.am @@ -2,9 +2,6 @@ # need to add CXX_INCLUDES # will need to add python and matlab -#SUBDIRS = base converters equil kinetics numerics oneD spectra transport zeroD - -# order we need -SUBDIRS = base converters thermo transport oneD zeroD kinetics numerics spectra +SUBDIRS = base converters thermo transport oneD zeroD kinetics numerics spectra equil diff --git a/Cantera/src/equil/Makefile.am b/Cantera/src/equil/Makefile.am index 050cb3354..8e5de9efd 100644 --- a/Cantera/src/equil/Makefile.am +++ b/Cantera/src/equil/Makefile.am @@ -1,20 +1,25 @@ h_sources = vcs_internal.h vcs_VolPhase.h vcs_solve.h vcs_prob.h \ - vcs_IntStarStar.h vcs_DoubleStarStar.h vcs_defs.h \ - vcs_MultiPhaseEquil.h vcs_Exception.h \ + vcs_IntStarStar.h vcs_DoubleStarStar.h vcs_defs.h \ + vcs_MultiPhaseEquil.h vcs_Exception.h \ vcs_SpeciesProperties.h vcs_species_thermo.h -cc_sources = vcs_solve_TP.o vcs_VolPhase.o vcs_solve.o vcs_prob.o \ - vcs_TP.o vcs_report.o vcs_util.o \ - vcs_IntStarStar.o vcs_DoubleStarStar.o vcs_elem.o \ - vcs_elem_rearrange.o vcs_MultiPhaseEquil.o \ - vcs_nondim.o vcs_Exception.o \ - vcs_inest.o vcs_rearrange.o \ - vcs_root1d.o vcs_rxnadj.o \ - vcs_SpeciesProperties.o vcs_equilibrate.o \ - vcs_prep.o vcs_species_thermo.o vcs_Gibbs.o vcs_phaseStabil +cc_sources = BasisOptimize.cpp vcs_elem.cpp vcs_IntStarStar.cpp \ + vcs_prob.cpp vcs_solve.cpp vcs_VolPhase.cpp ChemEquil.cpp \ + vcs_elem_rearrange.cpp vcs_linmaxc.cpp vcs_rearrange.cpp \ + vcs_solve_TP.cpp equilibrate.cpp vcs_equilibrate.cpp \ + vcs_MultiPhaseEquil.cpp vcs_report.cpp \ + vcs_SpeciesProperties.cpp MultiPhase.cpp vcs_Exception.cpp \ + vcs_nondim.cpp vcs_root1d.cpp vcs_species_thermo.cpp \ + MultiPhaseEquil.cpp vcs_Gibbs.cpp vcs_phaseStability.cpp \ + vcs_rxnadj.cpp vcs_TP.cpp vcs_DoubleStarStar.cpp vcs_inest.cpp \ + vcs_prep.cpp vcs_setMolesLinProg.cpp vcs_util.cpp -INCLUDES = = -I../base -I../thermo -I../numerics -AM_CXXFLAGS = $(INCLUDES) +cc_sources += vcs_dbocls.c vcs_dbols.c vcs_dbolsm.c vcs_dmout.c \ + vcs_dvout.c vcs_ivout.c vcs_xerror.c + +INCLUDES = -I../base -I../thermo -I../numerics -I../../../ +INCLUDES += -I../../../ext/f2c_libs/ +AM_CXXFLAGS = $(INCLUDES) lib_LTLIBRARIES = libequil.la library_includedir = $(includedir) @@ -24,9 +29,4 @@ library_includedir = $(includedir) #----------------------- libequil_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -libequil_la_SOURCES = $(cc_sources) $(h_sources) - -# Basic Cantera Thermodynamics Object Files -EQUIL_OBJ = BasisOptimize.o ChemEquil.o MultiPhase.o MultiPhaseEquil.o equilibrate.o - -EQUIL_H = ChemEquil.h MultiPhase.h MultiPhaseEquil.h equil.h PropertyCalculator.h +libequil_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/Cantera/src/equil/Makefile.in b/Cantera/src/equil/Makefile.in deleted file mode 100644 index 363c44348..000000000 --- a/Cantera/src/equil/Makefile.in +++ /dev/null @@ -1,156 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2002 California Institute of Technology -# -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .c .d .o .h - -INCDIR = ../../../build/include/cantera/kernel -INSTALL_TSC = ../../../bin/install_tsc -do_ranlib = @DO_RANLIB@ - -do_VCSnonideal = @COMPILE_VCSNONIDEAL@ -# -# Purify Options - instrument code for debugging and quantitification -# -PURIFY=@PURIFY@ -# -# Decide whether ot use the linear programmaing module lookalike -# (from Goodwin's code). Both should produce the same results. -do_AltLinProg = 1 - -debug_mode = @CANTERA_DEBUG_MODE@ -ifeq ($(debug_mode), 1) - DEBUG_FLAG=-DDEBUG_MODE -else - DEBUG_FLAG= -endif -#LOCAL_DEFS=-DDEBUG_MODE - -# -# Local Define to turn on if you want to debug ChemEquil: or -# BasisOptimize -# -#LOCAL_DEFS=-DDEBUG_MODE -# - -ifeq ($(do_AltLinProg), 1) -DALT_STR=-DALTLINPROG -endif -LOCAL_DEFS= $(DALT_STR) -# -# -PIC_FLAG=@PIC@ - -CXX_FLAGS = @CXXFLAGS@ $(LOCAL_DEFS) $(CXX_OPT) $(PIC_FLAG) $(DEBUG_FLAG) - -# Basic Cantera Thermodynamics Object Files -EQUIL_OBJ = BasisOptimize.o ChemEquil.o MultiPhase.o MultiPhaseEquil.o equilibrate.o - -EQUIL_H = ChemEquil.h MultiPhase.h MultiPhaseEquil.h equil.h PropertyCalculator.h - -# depending on the option, different object files are used -ifeq ($(do_AltLinProg), 1) -DALT_OBJ=vcs_setMolesLinProg.o -else -DALT_OBJ=vcs_linmaxc.o vcs_dbocls.o vcs_dbols.o vcs_dbolsm.o vcs_dmout.o \ - vcs_dvout.o vcs_ivout.o vcs_xerror.o -endif - - -ifeq ($(do_VCSnonideal), 1) -VCSNONIDEAL_OBJ = vcs_solve_TP.o vcs_VolPhase.o vcs_solve.o vcs_prob.o \ - vcs_TP.o vcs_report.o vcs_util.o \ - vcs_IntStarStar.o vcs_DoubleStarStar.o vcs_elem.o \ - vcs_elem_rearrange.o vcs_MultiPhaseEquil.o \ - vcs_nondim.o vcs_Exception.o \ - vcs_inest.o vcs_rearrange.o \ - vcs_root1d.o vcs_rxnadj.o \ - vcs_SpeciesProperties.o vcs_equilibrate.o \ - vcs_prep.o vcs_species_thermo.o vcs_Gibbs.o vcs_phaseStability.o \ - $(DALT_OBJ) - -VCSNONIDEAL_H = vcs_internal.h vcs_VolPhase.h vcs_solve.h vcs_prob.h \ - vcs_IntStarStar.h vcs_DoubleStarStar.h vcs_defs.h \ - vcs_MultiPhaseEquil.h vcs_Exception.h \ - vcs_SpeciesProperties.h vcs_species_thermo.h -endif - -CXX_INCLUDES = -I../base -I../thermo -I../numerics @CXX_INCLUDES@ -LIB = @buildlib@/libequil.a - -ifeq ($(do_VCSnonideal), 1) - VLIB=@buildlib@/libVCSnonideal.a -endif - -DEPENDS = $(EQUIL_OBJ:.o=.d) $(VCSNONIDEAL_OBJ:.o=.d) - -all: $(LIB) $(VLIB) .depends - @(@INSTALL@ -d $(INCDIR)) - @(for lh in $(EQUIL_H) $(VCSNONIDEAL_H); do \ - $(INSTALL_TSC) "$${lh}" $(INCDIR) ; \ - done) - -.cpp.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.c.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) -I../../../ext/f2c_libs $*.c > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) - -.c.o: - $(PURIFY) @CC@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) -I../../../ext/f2c_libs - -$(LIB): $(EQUIL_OBJ) $(EQUIL_H) $(VCSNONIDEAL_OBJ) $(VCSNONIDEAL_H) - @ARCHIVE@ $(LIB) $(EQUIL_OBJ) $(VCSNONIDEAL_OBJ) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif - -$(VLIB): $(VCSNONIDEAL_OBJ) $(VCS_NONIDEAL_H) - @ARCHIVE@ $(VLIB) $(VCSNONIDEAL_OBJ) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(VLIB) -endif - - -clean: - @(for lh in dummy.h $(EQUIL_H) $(VCSNONIDEAL_H); do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - @(if test -f $(LIB) ; then \ - $(RM) $(LIB) ; \ - echo "$(RM) $(LIB)" ; \ - fi) - $(RM) *.o *~ .depends *.d - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -$(EQUIL_OBJ) $(VCSNONIDEAL_OBJ): Makefile - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - From 4a821b4d8a6630be044ae2206cd3b8fec8b028e3 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 05:50:08 +0000 Subject: [PATCH 015/124] [cantera+autotools]: removing a doubly compiled directive, numerics should compile correctly again --- Cantera/src/numerics/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cantera/src/numerics/Makefile.am b/Cantera/src/numerics/Makefile.am index ba48929b9..988057674 100644 --- a/Cantera/src/numerics/Makefile.am +++ b/Cantera/src/numerics/Makefile.am @@ -5,7 +5,7 @@ h_sources = ArrayViewer.h DenseMatrix.h \ SquareMatrix.h ResidJacEval.h NonlinearSolver.h cc_sources = DenseMatrix.cpp funcs.cpp Func1.cpp ODE_integrators.cpp \ - BandMatrix.cpp DAE_solvers.cpp funcs.cpp sort.cpp \ + BandMatrix.cpp DAE_solvers.cpp sort.cpp \ SquareMatrix.cpp ResidJacEval.cpp NonlinearSolver.cpp INCLUDES = -I../base -I../../../ From 86c3f8dd92c66d6df1fe89ec9003036542adfe8c Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 05:55:40 +0000 Subject: [PATCH 016/124] [cantera+autotools]: fixing equilibrium --- Cantera/src/equil/Makefile.am | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/Cantera/src/equil/Makefile.am b/Cantera/src/equil/Makefile.am index 8e5de9efd..80af02903 100644 --- a/Cantera/src/equil/Makefile.am +++ b/Cantera/src/equil/Makefile.am @@ -1,21 +1,8 @@ -h_sources = vcs_internal.h vcs_VolPhase.h vcs_solve.h vcs_prob.h \ - vcs_IntStarStar.h vcs_DoubleStarStar.h vcs_defs.h \ - vcs_MultiPhaseEquil.h vcs_Exception.h \ - vcs_SpeciesProperties.h vcs_species_thermo.h +h_sources = ChemEquil.h MultiPhase.h MultiPhaseEquil.h equil.h \ + PropertyCalculator.h -cc_sources = BasisOptimize.cpp vcs_elem.cpp vcs_IntStarStar.cpp \ - vcs_prob.cpp vcs_solve.cpp vcs_VolPhase.cpp ChemEquil.cpp \ - vcs_elem_rearrange.cpp vcs_linmaxc.cpp vcs_rearrange.cpp \ - vcs_solve_TP.cpp equilibrate.cpp vcs_equilibrate.cpp \ - vcs_MultiPhaseEquil.cpp vcs_report.cpp \ - vcs_SpeciesProperties.cpp MultiPhase.cpp vcs_Exception.cpp \ - vcs_nondim.cpp vcs_root1d.cpp vcs_species_thermo.cpp \ - MultiPhaseEquil.cpp vcs_Gibbs.cpp vcs_phaseStability.cpp \ - vcs_rxnadj.cpp vcs_TP.cpp vcs_DoubleStarStar.cpp vcs_inest.cpp \ - vcs_prep.cpp vcs_setMolesLinProg.cpp vcs_util.cpp - -cc_sources += vcs_dbocls.c vcs_dbols.c vcs_dbolsm.c vcs_dmout.c \ - vcs_dvout.c vcs_ivout.c vcs_xerror.c +cc_sources = BasisOptimize.cpp ChemEquil.cpp MultiPhase.cpp \ + MultiPhaseEquil.cpp equilibrate.cpp INCLUDES = -I../base -I../thermo -I../numerics -I../../../ INCLUDES += -I../../../ext/f2c_libs/ From 681ed777a8528aa6e7a504a9e18fa166a9993b53 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 06:04:37 +0000 Subject: [PATCH 017/124] [cantera+autotools]: fixing small error in local files --- Cantera/src/oneD/Makefile.am | 12 +++++------- Cantera/src/oneD/Makefile.in | 19 +++++++------------ Cantera/src/oneD/Resid1D.h | 4 ++-- Cantera/src/oneD/Solid1D.cpp | 8 +++----- Cantera/src/oneD/Solid1D.h | 17 +++++++---------- Cantera/src/oneD/StFlow.h | 2 ++ 6 files changed, 26 insertions(+), 36 deletions(-) diff --git a/Cantera/src/oneD/Makefile.am b/Cantera/src/oneD/Makefile.am index 67229f9d0..22b229924 100644 --- a/Cantera/src/oneD/Makefile.am +++ b/Cantera/src/oneD/Makefile.am @@ -1,11 +1,9 @@ -h_sources = Domain1D.h Inlet1D.h MultiJac.h MultiNewton.h \ - OneDim.h refine.h Resid1D.h Sim1D.h Solid1D.h \ - StFlow.h Surf1D.h +cc_sources = MultiJac.cpp MultiNewton.cpp newton_utils.cpp OneDim.cpp \ + StFlow.cpp boundaries1D.cpp refine.cpp Sim1D.cpp Domain1D.cpp -cc_sources = boundaries1D.cpp Domain1D.cpp MultiJac.cpp \ - MultiNewton.cpp newton_utils.cpp oneD_files.cpp \ - OneDim.cpp refine.cpp Sim1D.cpp Solid1D.cpp \ - StFlow.cpp +h_sources = Inlet1D.h MultiJac.h Sim1D.h StFlow.h \ + Surf1D.h Domain1D.h MultiNewton.h OneDim.h \ + Resid1D.h Solid1D.h efine.h INCLUDES = -I../base -I../thermo -I../kinetics -I../transport -I../numerics -I../../../ AM_CXXFLAGS = $(INCLUDES) -fPIC diff --git a/Cantera/src/oneD/Makefile.in b/Cantera/src/oneD/Makefile.in index 5d893d890..2cfa2e448 100644 --- a/Cantera/src/oneD/Makefile.in +++ b/Cantera/src/oneD/Makefile.in @@ -69,9 +69,8 @@ am__base_list = \ am__installdirs = "$(DESTDIR)$(libdir)" LTLIBRARIES = $(lib_LTLIBRARIES) liboneD_la_LIBADD = -am__objects_1 = boundaries1D.lo Domain1D.lo MultiJac.lo MultiNewton.lo \ - newton_utils.lo oneD_files.lo OneDim.lo refine.lo Sim1D.lo \ - Solid1D.lo StFlow.lo +am__objects_1 = MultiJac.lo MultiNewton.lo newton_utils.lo OneDim.lo \ + StFlow.lo boundaries1D.lo refine.lo Sim1D.lo Domain1D.lo am__objects_2 = am_liboneD_la_OBJECTS = $(am__objects_1) $(am__objects_2) liboneD_la_OBJECTS = $(am_liboneD_la_OBJECTS) @@ -233,14 +232,12 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -h_sources = Domain1D.h Inlet1D.h MultiJac.h MultiNewton.h \ - OneDim.h refine.h Resid1D.h Sim1D.h Solid1D.h \ - StFlow.h Surf1D.h +cc_sources = MultiJac.cpp MultiNewton.cpp newton_utils.cpp OneDim.cpp \ + StFlow.cpp boundaries1D.cpp refine.cpp Sim1D.cpp Domain1D.cpp -cc_sources = boundaries1D.cpp Domain1D.cpp MultiJac.cpp \ - MultiNewton.cpp newton_utils.cpp oneD_files.cpp \ - OneDim.cpp refine.cpp Sim1D.cpp Solid1D.cpp \ - StFlow.cpp +h_sources = Inlet1D.h MultiJac.h Sim1D.h StFlow.h \ + Surf1D.h Domain1D.h MultiNewton.h OneDim.h \ + Resid1D.h Solid1D.h efine.h INCLUDES = -I../base -I../thermo -I../kinetics -I../transport -I../numerics -I../../../ AM_CXXFLAGS = $(INCLUDES) -fPIC @@ -331,11 +328,9 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MultiNewton.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/OneDim.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Sim1D.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Solid1D.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StFlow.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/boundaries1D.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/newton_utils.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/oneD_files.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/refine.Plo@am__quote@ .cpp.o: diff --git a/Cantera/src/oneD/Resid1D.h b/Cantera/src/oneD/Resid1D.h index 86c97e49d..417f5a7b3 100644 --- a/Cantera/src/oneD/Resid1D.h +++ b/Cantera/src/oneD/Resid1D.h @@ -15,8 +15,8 @@ /* * NOTE: I don't think this file is used any longer. Thus, this is deprecated. */ -#include "ctexceptions.h" -#include "xml.h" +#include "../ctexceptions.h" +#include "../xml.h" #include "refine.h" diff --git a/Cantera/src/oneD/Solid1D.cpp b/Cantera/src/oneD/Solid1D.cpp index 330b37c51..cfdb5d8a3 100644 --- a/Cantera/src/oneD/Solid1D.cpp +++ b/Cantera/src/oneD/Solid1D.cpp @@ -21,17 +21,15 @@ #include #include "Solid1D.h" -#include "ArrayViewer.h" -#include "ctml.h" +#include "../ArrayViewer.h" +#include "../ctml.h" #include "MultiJac.h" -//nick adding -#include "StFlow.h" - using namespace ctml; namespace Cantera { + int Solid1D::c_T_loc = 0; int Solid1D::c_C_loc = 1; diff --git a/Cantera/src/oneD/Solid1D.h b/Cantera/src/oneD/Solid1D.h index 6ea9c2000..3bb41f302 100644 --- a/Cantera/src/oneD/Solid1D.h +++ b/Cantera/src/oneD/Solid1D.h @@ -14,17 +14,14 @@ #ifndef CT_SOLID1D_H #define CT_SOLID1D_H -#include "TransportBase.h" +#include "../transport/TransportBase.h" #include "Domain1D.h" -#include "Array.h" -#include "sort.h" -#include "ThermoPhase.h" -#include "Kinetics.h" -#include "funcs.h" +#include "../Array.h" +#include "../sort.h" +#include "../ThermoPhase.h" +#include "../Kinetics.h" +#include "../funcs.h" -// nick hack -#include -#include namespace Cantera { @@ -195,7 +192,7 @@ namespace Cantera { * Write a Tecplot zone corresponding to the current solution. * May be called multiple times to generate animation. */ - void outputTEC(std::ostream &s, const doublereal* x, + void outputTEC(ostream &s, const doublereal* x, std::string title, int zone); virtual void showSolution(const doublereal* x); diff --git a/Cantera/src/oneD/StFlow.h b/Cantera/src/oneD/StFlow.h index 4bf3a20b1..c9cb3d482 100644 --- a/Cantera/src/oneD/StFlow.h +++ b/Cantera/src/oneD/StFlow.h @@ -20,6 +20,8 @@ #include "IdealGasPhase.h" #include "Kinetics.h" #include "funcs.h" +//#include "../flowBoundaries.h" + namespace Cantera { From 798f1a18aefa1b94abe9f323dd0bb44990069890 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 06:04:59 +0000 Subject: [PATCH 018/124] [cantera+autotools]: removing makefile.in --- Cantera/src/oneD/Makefile.in | 567 ----------------------------------- 1 file changed, 567 deletions(-) delete mode 100644 Cantera/src/oneD/Makefile.in diff --git a/Cantera/src/oneD/Makefile.in b/Cantera/src/oneD/Makefile.in deleted file mode 100644 index 2cfa2e448..000000000 --- a/Cantera/src/oneD/Makefile.in +++ /dev/null @@ -1,567 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = Cantera/src/oneD -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(libdir)" -LTLIBRARIES = $(lib_LTLIBRARIES) -liboneD_la_LIBADD = -am__objects_1 = MultiJac.lo MultiNewton.lo newton_utils.lo OneDim.lo \ - StFlow.lo boundaries1D.lo refine.lo Sim1D.lo Domain1D.lo -am__objects_2 = -am_liboneD_la_OBJECTS = $(am__objects_1) $(am__objects_2) -liboneD_la_OBJECTS = $(am_liboneD_la_OBJECTS) -liboneD_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(liboneD_la_LDFLAGS) $(LDFLAGS) -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(liboneD_la_SOURCES) -DIST_SOURCES = $(liboneD_la_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = MultiJac.cpp MultiNewton.cpp newton_utils.cpp OneDim.cpp \ - StFlow.cpp boundaries1D.cpp refine.cpp Sim1D.cpp Domain1D.cpp - -h_sources = Inlet1D.h MultiJac.h Sim1D.h StFlow.h \ - Surf1D.h Domain1D.h MultiNewton.h OneDim.h \ - Resid1D.h Solid1D.h efine.h - -INCLUDES = -I../base -I../thermo -I../kinetics -I../transport -I../numerics -I../../../ -AM_CXXFLAGS = $(INCLUDES) -fPIC -lib_LTLIBRARIES = liboneD.la -library_includedir = $(includedir) - -#----------------------- -# Cantera OneD C/C++ library -#----------------------- -liboneD_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -liboneD_la_SOURCES = $(cc_sources) $(h_sources) -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Cantera/src/oneD/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu Cantera/src/oneD/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-libLTLIBRARIES: $(lib_LTLIBRARIES) - @$(NORMAL_INSTALL) - test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ - } - -uninstall-libLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ - done - -clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" != "$$p" || dir=.; \ - echo "rm -f \"$${dir}/so_locations\""; \ - rm -f "$${dir}/so_locations"; \ - done -liboneD.la: $(liboneD_la_OBJECTS) $(liboneD_la_DEPENDENCIES) - $(liboneD_la_LINK) -rpath $(libdir) $(liboneD_la_OBJECTS) $(liboneD_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Domain1D.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MultiJac.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MultiNewton.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/OneDim.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Sim1D.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StFlow.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/boundaries1D.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/newton_utils.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/refine.Plo@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LTLIBRARIES) -installdirs: - for dir in "$(DESTDIR)$(libdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-libLTLIBRARIES - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-libLTLIBRARIES - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libLTLIBRARIES clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am \ - install-libLTLIBRARIES install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-libLTLIBRARIES - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: From ad5971b059f17a22a10882243219eebbbd020a57 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 06:09:28 +0000 Subject: [PATCH 019/124] [cantera+autotools]: oops, forgot top level makefile.am --- Cantera/Makefile.am | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/Cantera/Makefile.am b/Cantera/Makefile.am index ae31608e3..bc93f0db6 100644 --- a/Cantera/Makefile.am +++ b/Cantera/Makefile.am @@ -2,19 +2,3 @@ # will need to add python and matlab SUBDIRS = src - -h_sources = cantera.h -cc_sources = cantera.cpp - -INCLUDES = -AM_FCFLAGS = $(INCLUDES) -AM_CFLAGS = $(INCLUDES) -AM_CPPFLAGS = $(INCLUDES) - -lib_LTLIBRARIES = libcantera.la -library_includedir = $(includedir) -library_include_HEADERS = cantera.h -libcantera_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -libcantera_la_SOURCES = $(cc_sources) $(h_sources) - - From 50dc79a13f4d28917b6d0abfca586ba1082acb26 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 06:11:27 +0000 Subject: [PATCH 020/124] [cantera]: fixing examples makefile tab/whitespace error, and updating configure.ac --- configure.ac | 8 +++++++- examples/Makefile.am | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 84b0d3847..b5bf376a1 100644 --- a/configure.ac +++ b/configure.ac @@ -55,7 +55,13 @@ AM_SANITY_CHECK # DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) # Generate Output Files -AC_OUTPUT( Makefile test_problems/Makefile examples/Makefile Cantera/Makefile) #doxygen/Makefile +AC_OUTPUT(Makefile test_problems/Makefile examples/Makefile Cantera/Makefile \ + Cantera/src/Makefile Cantera/src/base/Makefile \ + Cantera/src/converters/Makefile Cantera/src/kinetics/Makefile \ + Cantera/src/numerics/Makefile Cantera/src/oneD/Makefile \ + Cantera/src/thermo/Makefile Cantera/src/transport/Makefile \ + Cantera/src/spectra/Makefile Cantera/src/zeroD/Makefile \ + Cantera/src/equil/Makefile) # FINAL SUMMARY AX_SUMMARIZE_CONFIG diff --git a/examples/Makefile.am b/examples/Makefile.am index 68d864567..a7919df96 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,5 +1,5 @@ EXTRA_DIST = dist-hook: - rm -rf `find $(distdir)/ -name .svn` - rm -rf `find $(distdir)/ -name .deps` \ No newline at end of file + rm -rf `find $(distdir)/ -name .svn` + rm -rf `find $(distdir)/ -name .deps` \ No newline at end of file From 9af95b0aed8cbb2f6bd55d258c1b7b5c57c28054 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 06:16:55 +0000 Subject: [PATCH 021/124] [cantera]: fixing up whitespace issue here --- test_problems/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 68d864567..a7919df96 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -1,5 +1,5 @@ EXTRA_DIST = dist-hook: - rm -rf `find $(distdir)/ -name .svn` - rm -rf `find $(distdir)/ -name .deps` \ No newline at end of file + rm -rf `find $(distdir)/ -name .svn` + rm -rf `find $(distdir)/ -name .deps` \ No newline at end of file From bb6321c99845cbaae6eda3a19421df44e3979676 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 06:43:28 +0000 Subject: [PATCH 022/124] [cantera+autotools]: populating doxygen directory --- doxygen/Makefile.am | 6 + doxygen/cantera.dox | 1539 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 1545 insertions(+) create mode 100644 doxygen/Makefile.am create mode 100644 doxygen/cantera.dox diff --git a/doxygen/Makefile.am b/doxygen/Makefile.am new file mode 100644 index 000000000..8a3090c57 --- /dev/null +++ b/doxygen/Makefile.am @@ -0,0 +1,6 @@ +EXTRA_DIST = cantera.dox cantera.page txt_common fig_common +EXTRA_DIST += install.page cantera.sty tutorial.page + +dist-hook: + rm -rf `find $(distdir)/ -name .svn` + rm -rf `find $(distdir)/ -name .deps` diff --git a/doxygen/cantera.dox b/doxygen/cantera.dox new file mode 100644 index 000000000..be7ff3e88 --- /dev/null +++ b/doxygen/cantera.dox @@ -0,0 +1,1539 @@ +# Doxyfile 1.5.8 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = $(PROJECT)-$(VERSION) +#PROJECT_NAME = $(PROJECT) + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = $(DOCDIR) + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, +# Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, +# Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, Slovene, +# Spanish, Swedish, and Ukrainian. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = YES + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = $(SRCDIR) + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = version=$(VERSION) +ALIASES += builddate="$(BUILDDATE)" +ALIASES += buildhost=$(BUILDHOST) +ALIASES += builduser=$(BUILDUSER) + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it parses. +# With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this tag. +# The format is ext=language, where ext is a file extension, and language is one of +# the parsers supported by doxygen: IDL, Java, Javascript, C#, C, C++, D, PHP, +# Objective-C, Python, Fortran, VHDL, C, C++. For instance to make doxygen treat +# .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C + +EXTENSION_MAPPING = .cpp=C++ .f90=Fortran + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen to replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = NO + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penality. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will rougly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols + +SYMBOL_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespace are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = no + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. +# This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed by +# doxygen. The layout file controls the global structure of the generated output files +# in an output format independent way. The create the layout file that represents +# doxygen's defaults, run doxygen with the -l option. You can optionally specify a +# file name after the option, if omitted DoxygenLayout.xml will be used as the name +# of the layout file. + +LAYOUT_FILE = doxygen/docs.layout + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be abled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = src/masa.h src/masa.f90 examples/pecos-input.txt \ + tutorial/laplacian.c tutorial/laplacian_utils.c tutorial/laplacian.h \ + $(SRCDIR)/doxygen/masa.page \ + $(SRCDIR)/doxygen/fortran_interface.page \ + $(SRCDIR)/doxygen/txt_common/acknowledgment.page \ + $(SRCDIR)/doxygen/txt_common/gpl.page \ + $(SRCDIR)/doxygen/txt_common/lgpl.page \ + $(SRCDIR)/doxygen/txt_common/noop.page \ + ./doxygen/txt_common/about_vpath.page \ + $(SRCDIR)/doxygen/tutorial.page \ + $(SRCDIR)/doxygen/install.page \ + $(SRCDIR)/doxygen/add_sol.page \ + $(SRCDIR)/doxygen/solutions \ + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx +# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 + +FILE_PATTERNS = *.cpp *.f90 *.F90 *.h *.c *.txt *.page + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or +# directories that are symbolic links (a Unix filesystem feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = $(SRCDIR)/examples $(SRCDIR)/doxygen/fig_common + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = $(SRCDIR)/doxygen/images/ $(SRCDIR)/doxygen/fig_common + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. +# If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. +# Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. +# The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER +# is applied to all files. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. +# Otherwise they will link to the documentation. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = NO + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +###GENERATE_HTML = YES +GENERATE_HTML = $(GENERATE_HTML) + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = $(SRCDIR)/doxygen/txt_common/footer.html + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# stylesheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. For this to work a browser that supports +# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox +# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). + +HTML_DYNAMIC_SECTIONS = NO + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. +# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html for more information. + +GENERATE_DOCSET = NO + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# of the generated HTML documentation. + +###GENERATE_HTMLHELP = NO +GENERATE_HTMLHELP = $(GENERATE_HTMLHELP) + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +###GENERATE_CHI = NO +GENERATE_CHI = $(GENERATE_CHI) + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and QHP_VIRTUAL_FOLDER +# are set, an additional index file will be generated that can be used as input for +# Qt's qhelpgenerator to generate a Qt Compressed Help (.qch) of the generated +# HTML documentation. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can +# be used to specify the file name of the resulting .qch file. +# The path specified is relative to the HTML output folder. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace + +QHP_NAMESPACE = + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders + +QHP_VIRTUAL_FOLDER = doc + +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to add. +# For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the custom filter to add.For more information please see +# Qt Help Project / Custom Filters. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this project's +# filter section matches. +# Qt Help Project / Filter Attributes. + +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can +# be used to specify the location of Qt's qhelpgenerator. +# If non-empty doxygen will try to run qhelpgenerator on the generated +# .qhp file. + +QHG_LOCATION = + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. + +DISABLE_INDEX = NO + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. + +ENUM_VALUES_PER_LINE = 4 + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to FRAME, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, +# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are +# probably better off using the HTML help feature. Other possible values +# for this tag are: HIERARCHIES, which will generate the Groups, Directories, +# and Class Hierarchy pages using a tree view instead of an ordered list; +# ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which +# disables this behavior completely. For backwards compatibility with previous +# releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE +# respectively. + +GENERATE_TREEVIEW = NONE + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +###GENERATE_LATEX = YES +GENERATE_LATEX = $(GENERATE_LATEX) + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. + +#PAPER_TYPE = a4wide +PAPER_TYPE = $(PAPER_SIZE) +#PAPER_TYPE = letter + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = $(SRCDIR)/../../doxygen/masa + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +#USE_PDFLATEX = YES +USE_PDFLATEX = $(GENERATE_PDF) + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +###GENERATE_RTF = NO +GENERATE_RTF = $(GENERATE_RTF) + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +###GENERATE_MAN = NO +GENERATE_MAN = $(GENERATE_MAN) + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +###GENERATE_XML = NO +GENERATE_XML = $(GENERATE_XML) + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. +# This is useful +# if you want to understand what is going on. +# On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse +# the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. +# Optionally an initial location of the external documentation +# can be added for each tagfile. The format of a tag file without +# this location is as follows: +# +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths or +# URLs. If a location is present for each tag, the installdox tool +# does not have to be run to correct the links. +# Note that each tag file must have a unique name +# (where the name does NOT include the path) +# If a tag file is not located in the directory in which doxygen +# is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +#GENERATE_TAGFILE = +GENERATE_TAGFILE = $(DOCDIR)/$(PROJECT).tag + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option is superseded by the HAVE_DOT option below. This is only a +# fallback. It is recommended to install and use dot, since it yields more +# powerful graphs. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +###HAVE_DOT = NO +HAVE_DOT = $(HAVE_DOT) + +# By default doxygen will write a font called FreeSans.ttf to the output +# directory and reference it in all dot files that doxygen generates. This +# font does not include all possible unicode characters however, so when you need +# these (or just want a differently looking font) you can specify the font name +# using DOT_FONTNAME. You need need to make sure dot is able to find the font, +# which can be done by putting it in a standard location or by setting the +# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory +# containing the font. + +DOT_FONTNAME = FreeSans + +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the output directory to look for the +# FreeSans.ttf font (which doxygen will put there itself). If you specify a +# different font using DOT_FONTNAME you can set the path where dot +# can find it using this tag. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are png, jpg, or gif +# If left blank png will be used. + +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +###DOT_PATH = +DOT_PATH = $(DOT_PATH) + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not +# seem to support this out of the box. Warning: Depending on the platform used, +# enabling this option may lead to badly anti-aliased labels on the edges of +# a graph (i.e. they become hard to read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES + +#--------------------------------------------------------------------------- +# Options related to the search engine +#--------------------------------------------------------------------------- + +# The SEARCHENGINE tag specifies whether or not a search engine should be +# used. If set to NO the values of all tags below this one will be ignored. + +SEARCHENGINE = NO From 4426d9059c6196022e3e6eb2e712b56a0db8d557 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 06:45:24 +0000 Subject: [PATCH 023/124] [cantera+autotools]: adding the tutorial and install pages --- doxygen/cantera.page | 146 +++++++++++++++++++++++++++++++++ doxygen/install.page | 187 ++++++++++++++++++++++++++++++++++++++++++ doxygen/tutorial.page | 177 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 510 insertions(+) create mode 100644 doxygen/cantera.page create mode 100644 doxygen/install.page create mode 100644 doxygen/tutorial.page diff --git a/doxygen/cantera.page b/doxygen/cantera.page new file mode 100644 index 000000000..ffabd913f --- /dev/null +++ b/doxygen/cantera.page @@ -0,0 +1,146 @@ +/*! \mainpage The MASA Library + +Version \version, Build Date: \builddate + +Built by: \builduser on \buildhost +
+ +\section overview Overview + +The MASA (Manufactured Analytical Solutions Abstraction) library is +a software interface that provides access to all manufactured solutions to + be used by various models throughout the PECOS center. +The library is written in +C++, but provides an API for development in C and Fortran. + +Thanks for your interest in MASA. To aid in usage, this manual is +further divided into the following subsections: + +
    +
  • \subpage model "Library Overview"
  • +
  • \subpage install "Installation/Linkage"
  • +
  • \link masa.h C/C++ Interface \endlink
  • +
  • \subpage apif "Fortran Interface"
  • +
  • \link tut "Tutorial"
  • +
  • \subpage mms_avail "Available Manufactured Solutions"
  • +
  • \subpage add_sol "Adding Additional Manufactured Solutions to MASA"
  • +
  • Buildbot Coverage
  • +
+ + + + +\section bugs Reporting Bugs + +Bugs in the code and errors or omissions in the documentation can be +reported to masa-dev@ices.utexas.edu. Requests and contributions are +welcome at the same e-mail address. All bug reports should include: +
    +
  • the version number of the MASA library, +
  • the hardware and operating system, +
  • the compiler used, including version number and compilation options, +
  • a description of the bug behavior, and ideally, +
  • a short program which reproduces the bug. +
+ +\section licence License +Copyright (C) 2010 The PECOS Development Team +\copydoc LicenseLGPL + +\section acknowledgements Acknowledgments +\copydoc Acknowledgments + +\section pecos-center More Information About PECOS +\copydoc About2 + + */ + + +/*! \page model Library Overview + +\copydoc LicenseLGPL + +The MASA (Manufactured Analytical Solutions Abstraction) library is a software interface that provides access +to various manufactured solutions for a wide variety of differential equations. The library is written in C++, +and provides an API for development in C and Fortran. + +

Software Verification

+ +Verification of numerical computations, in which one asks if numerical results are an accurate representation of the solution +to the mathematical model that is being solved, is relatively well understood. It requires +careful attention to good software engineering practices, continuous software testing, and control of numerical +discretization errors, through error estimation and adaptivity. While verification processes are well understood, +they require substantial effort. As verification of numerical results is a prerequisite for reliable computational +predictions, verification processes are integral to all activities in scientific computation. + +MASA is designed to simplify the verification process by providing a common repository of manufactured solutions +for common problems in scientific computation. + +

Manufactured Solution Generation

+ +The analytical solutions used in this library were generated using symbolic manipulation software, such as Maple. + +

PECOS Center Background

+ +The Center for Predictive Engineering and COmputational Sciences (PECOS) is a DOE-funded Center +of Excellence within the Institute for Computational Engineering and Sciences (ICES) +at The University of Texas at Austin. PECOS is one of five such centers sponsored under +the Predictive Science Academic Alliance Program (PSAAP) of the National Nuclear Security +Administration’s Advanced Simulation and Computing Program. + +PECOS brings together an interdisciplinary, multi-university team with partners at the +DOE National Labs and NASA. The goal of the PECOS Center is to develop the next generation +of advanced computational methods for predictive simulation of multiscale, multiphysics phenomena, +and to apply these methods to the analysis of vehicles reentering the atmosphere. In pursuing +this research, PECOS is advancing the science and modeling of atmospheric reentry, and +the science of predictive simulation. + +

Developers

+ +Developers of the MASA library include: + +Paul Bauman + +Kemelli Estacio-Hiroms + +Nicholas Malaya + +Todd Oliver + +Onkar Sahni + +Karl W. Schulz + +Chris Simmons + +Roy Stogner + +

Citing MASA

+ +A paper detailing the MASA library has been submitted for publication. +Upon acceptance, this section will be updated. +Please check back for details on how to cite MASA. + +*/ + + +/*! \page mms_avail Available Manufactured Solutions + +The following sections detail all available manufactured solutions in MASA. + +
    +
  • \subpage heat
  • +
  • \subpage laplace
  • +
  • \subpage euler
  • +
  • \subpage cns
  • +
  • \subpage sod
  • +
  • \subpage rans
  • +
+ +*/ + +/*! \page tut Tutorial + +The following sections detail all available manufactured solutions in MASA. + +*/ diff --git a/doxygen/install.page b/doxygen/install.page new file mode 100644 index 000000000..e15962efe --- /dev/null +++ b/doxygen/install.page @@ -0,0 +1,187 @@ +/*! \page install Installation/Linkage + +libMASA uses the GNU autotools suite (autoconf, automake, and libtool) +for its development build system. This system is popular among the +Linux development community and provides a familiar build environment +for end users. + +To build libMASA starting from a release distribution, untar the distribution and +enter the top-level directory. + +
+ > tar xvfz masa-$(VERSION).tar.gz
+ > cd masa-$(VERSION)/            
+
+ +

Configuration Requirements

+ +Since libMASA provides a Fortran interface, a valid Fortran90 compiler is +also required. To date, libMASA has been successfully tested with \e +gfortran and the Intel \e ifort compilers. The configuration step +will look for available compilers in the user environment but as with +any \e autoconf based configuration, these can be overridden with +command line arguments (by setting \c CXX, \c FC, and \c F77 +appropriately). + +Installation Directory: Use the --prefix option to +specify your desired top-level installation directory for MASA. The +examples below all configure libMASA to be installed in the user's ~/bin/masa +directory. + +Once configured, issue a make to build the software. If successful, this +will build the libMASA library (static and dynamic versions) and several +examples. + +\code > make \endcode + + Verifying the build: To verify that the software is working +properly, a test option is provided to run a short suite of +functionality tests against the local build. To run, issue a make +check to run the tests. If successful, output similar to the +following will be generated. + +\code + > make check + +------------------------------------------------------- +Initializing MASA Tests +------------------------------------------------------- +PASS: init.sh +PASS: misc +PASS: fail_cond +PASS: catch_exception +PASS: register +PASS: poly +PASS: uninit +PASS: pass_func +PASS: purge +PASS: heat_const_steady +PASS: heat_var_steady +PASS: heat_const_unsteady +PASS: heat_var_unsteady +PASS: euler1d +PASS: euler2d +PASS: euler3d +PASS: euler_transient_1d +PASS: euler_chem_1d +PASS: ns2d +PASS: ns3d +PASS: ns3d_phys +PASS: n2d3d +PASS: axi_euler +PASS: axi_cns +PASS: rans_sa +PASS: sod + +------------------------------------------------------- +Initializing CMASA Tests +------------------------------------------------------- +PASS: c_init.sh +PASS: c_misc +PASS: c_purge +PASS: c_heat1dsc +PASS: c_heat2dsc +PASS: c_heat3dsc +PASS: c_euler1d +PASS: c_euler2d +PASS: c_euler3d +PASS: c_euler_chem_1d +PASS: c_navierstokes2d +PASS: c_navierstokes3d + +------------------------------------------------------- +Initializing FortMASA Tests +------------------------------------------------------- +PASS: f_init.sh +MASA :: selected mytest +PASS: f_misc +PASS: f_purge +PASS: f_heat +PASS: f_euler1d +PASS: f_euler2d +PASS: f_euler3d +PASS: f_euler_chem_1d +PASS: f_cns2d +PASS: f_cns3d + +------------------------------------------------------- +Initializing MASA Examples Tests +------------------------------------------------------- +PASS: example_test.sh + +------------------------------------------------------- +Finalizing MASA Tests, have a well verified day +------------------------------------------------------- +PASS: finalize.sh +=================== +All 50 tests passed +=================== + +\endcode + +

Installation

+ +After the build is complete, issue a make install to install +the library. The installation will consist of three top-level +directories housing the library, include files, and +example files. An example of the top-level directories after +installation is shown below: + +\code > make install \endcode + +Top-level libMASA installation directory: + +\code + > ls $HOME/bin/masa/ + examples/ include/ lib/ +\endcode + +

Library Linkage

+ +To link an external C/C++ or Fortran application with the library, the +\c include directory must be added to the compilers include search +path in order to access the masa.h header file (or for Fortran, the \c +lib directory should be added to access the pre-compiled +masa F90 module). The \c lib directory should also be added +to the linker search path along with a request to link against the +libMASA library. Several example link steps are provided below. These +examples assume that the libMASA library has been successfully built and +installed previously in the users's ~/bin/masa directory: + +

C/C++ Example

+ +\code > $(CC) -I$HOME/bin/masa/include app.c -L$HOME/bin/masa/lib -lmasa \endcode + +If you set your PKG_CONFIG_PATH environment variable to contain +$HOME/lib/pkgconfig you can use pkg-config to +lookup the relevant linking information automatically: + +\code > $(CC) `pkg-config --cflags masa` app.c `pkg-config --libs masa` \endcode + +

Fortran Example

+ +Fortran applications also require linking against the fmasa library: + +\code > $(FC) -I$HOME/bin/masa/lib app.f90 -L$HOME/bin/masa/lib -lfmasa -lmasa \endcode + +As with C/C++, users can use make use of pkg-config: + +\code > $(FC) `pkg-config --variable=fflags masa` app.f90 `pkg-config --variable=flibs masa` \endcode + +To embed the dynamic library search path for the libMASA library +directly into the application executable, use an additional linker +option as follows: + +

C/C++ Example

+ +\code > $(CC) -I$HOME/bin/masa/include app.c -L$HOME/bin/masa/lib \ + -Wl,-rpath,$HOME/bin/masa/lib -lmasa \endcode + + +Important Note: F90 module file formats are not consistent +across multiple compilers. Therefore, a Fortran application and the libMASA +F90 interface \em must be built with the same Fortran compiler family to ensure +compatibility. + + +*/ diff --git a/doxygen/tutorial.page b/doxygen/tutorial.page new file mode 100644 index 000000000..d09fa8ae2 --- /dev/null +++ b/doxygen/tutorial.page @@ -0,0 +1,177 @@ +/*! \page tut Tutorial + +This chapter will introduce the user to the basics of the MASA library. +This chapter assumes the user has already built and linked the MASA library +into their codebase. Now, you desire to access the magic of MASA +and begin the process of verification of your codebase. + +This tutorial will detail the essential subroutines for any MASA program. +The c++ MASA bindings are used throughout, but a tutorial using the Fotran90 +or C-code would be essentially unchanged. + +

Initalizing

+ +To begin, any MASA program will call \c masa_init. This routine initalizes +a manufactured solution class of some particular type. It requires two inputs: +the manufactured solution class name as well as a unique name for this solution. + +Thus, to initalize a one dimensional euler equation manufactured solution with +the unique name of 'nick', the function call would look something like: + +\code + masa_init("nick","euler_1d"); +\endcode + +The unique name allows you to initalize several manufactured solutions of the same +problem type, should you so desire. This can be useful if you want to access several +manufactured solutions of the same type with different parameter sets. +You cannot, of course, specify several manufactured solutions with the same unique name! + +Please be careful when specifying the second string: this \em must match the unique +identifier for that masa solution. Failing to match here will likely result in MASA aborting. + +A logical question to ask at this juncture is where can you find a list of the +available manufactured solutions? The available solutions can be found several ways: + +
    +
  • Browsing the available manufactured solutions page of this documentation +
  • Running the display_solutions executable in your examples directory +
  • Browsing through the solutions interactively using MASAshell (also in the examples dir) +
  • Calling the function: \c masa_printid() +
+ +

Setting up the Solution

+ +Having initalized the solution, you need to set the variables to some reasonable value. +This will depend on your particular problem, but let's continue with the 1d euler example. + +Firstly, let's determine \em what variables need to be set. A list of variables for +your solution can be found by: + +
    +
  • Browsing the particular manufactured solution's page in this documentation +
  • Selecting the solution and then displaying the variables interactively using MASAshell +
  • Calling the function: \c masa_display_param() +
+ +The output from masa_display_param() for our euler1d example will look something like: +\code + +MASA :: Solution has 14 variables. +*-------------------------------------* +Gamma is set to: Uninitialized +L is set to: Uninitialized +R is set to: Uninitialized +a_px is set to: Uninitialized +a_rhox is set to: Uninitialized +a_ux is set to: Uninitialized +k is set to: Uninitialized +mu is set to: Uninitialized +p_0 is set to: Uninitialized +p_x is set to: Uninitialized +rho_0 is set to: Uninitialized +rho_x is set to: Uninitialized +u_0 is set to: Uninitialized +u_x is set to: Uninitialized +*-------------------------------------* + +\endcode + +Thus, euler_1d has 14 variables, all of which should be set to something. +We can set a value of a parameter in MASA using the function, \c masa_set_param. + +\c masa_set_param takes as input a string and a double. The string specifies the +parameter we are setting and the double will become the parameter's new value. +This overwrites the any previous value the paramter may have had. + +Continuing our example, let's set a_rhox to 33.33 (repeating, of course). +In our code, this would look like: + +\code + + masa_set_param("a_rhox",33.3333333333333) + +\endcode + +Now, checking \c masa_display_param, we can see we have set the value of a_rhox: + +\code + +MASA :: Solution has 14 variables. +*-------------------------------------* +Gamma is set to: Uninitialized +L is set to: Uninitialized +R is set to: Uninitialized +a_px is set to: Uninitialized +a_rhox is set to: 33.3333333333333 +a_ux is set to: Uninitialized +k is set to: Uninitialized +mu is set to: Uninitialized +p_0 is set to: Uninitialized +p_x is set to: Uninitialized +rho_0 is set to: Uninitialized +rho_x is set to: Uninitialized +u_0 is set to: Uninitialized +u_x is set to: Uninitialized +*-------------------------------------* + +\endcode + +At this point, we could continue the same process for +each remaining variable. + +To save you the tedium of doing this, MASA has graciously provided +default values for all manufactured solution classes. +In general, the default values have been selected to provide reasonable +test conditions for verification and whenever possible, defauls +correspond to some simple physical constraints +(such as not producing negative energy, or density, etc.). + +A user can invoke these defaults using the routine: \c masa_init_param(). +For our euler1d problem, the defaults look like: + +\code + +MASA :: Solution has 14 variables. +*-------------------------------------* +Gamma is set to: 16.1 +L is set to: 3.02 +R is set to: 1.01 +a_px is set to: 6.151 +a_rhox is set to: 1.2 +a_ux is set to: 0.03 +k is set to: 1.38 +mu is set to: 0.091 +p_0 is set to: 0.1984 +p_x is set to: 3.151 +rho_0 is set to: 91.5 +rho_x is set to: 5.13 +u_0 is set to: 0.191 +u_x is set to: 1.63 +*-------------------------------------* + +\endcode + +Note that setting the defaults \em will \em overwrite \em all \em previously +\em initalized \em values for the masa parameters! So if you desire to +alter the default values, call \c masa_set_param \em after \c masa_init_param. + +Finally, you have initalized all the parameters and you are ready to move on +... Or are you? Are you certain you initalized every parameter? Do you really +want to verify this by checking \c masa_display_param()? Luckily, MASA provides +an alternative. The subroutine \c masa_sanity_check() will check that every +parameter has been set to \em something. + +

Accessing the Source Terms

+ + +\code + > ls $HOME/bin/masa/ + examples/ include/ lib/ +\endcode + + +For further examples (including c-code and fortran), the user is directed +to the examples directory included in the MASA distribution. + +*/ From 499cd540d92f8e9bf6bc63756364168da5942d9e Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 06:49:10 +0000 Subject: [PATCH 024/124] [cantera+autotools]: adding an additional macro to support doxygen --- m4/common/ax_prog_doxygen.m4 | 536 +++++++++++++++++++++++++++++++++++ 1 file changed, 536 insertions(+) create mode 100644 m4/common/ax_prog_doxygen.m4 diff --git a/m4/common/ax_prog_doxygen.m4 b/m4/common/ax_prog_doxygen.m4 new file mode 100644 index 000000000..458e3a633 --- /dev/null +++ b/m4/common/ax_prog_doxygen.m4 @@ -0,0 +1,536 @@ +# =========================================================================== +# http://www.nongnu.org/autoconf-archive/ax_prog_doxygen.html +# =========================================================================== +# +# SYNOPSIS +# +# DX_INIT_DOXYGEN(PROJECT-NAME, DOXYFILE-PATH, [OUTPUT-DIR]) +# DX_DOXYGEN_FEATURE(ON|OFF) +# DX_DOT_FEATURE(ON|OFF) +# DX_HTML_FEATURE(ON|OFF) +# DX_CHM_FEATURE(ON|OFF) +# DX_CHI_FEATURE(ON|OFF) +# DX_MAN_FEATURE(ON|OFF) +# DX_RTF_FEATURE(ON|OFF) +# DX_XML_FEATURE(ON|OFF) +# DX_PDF_FEATURE(ON|OFF) +# DX_PS_FEATURE(ON|OFF) +# +# DESCRIPTION +# +# The DX_*_FEATURE macros control the default setting for the given +# Doxygen feature. Supported features are 'DOXYGEN' itself, 'DOT' for +# generating graphics, 'HTML' for plain HTML, 'CHM' for compressed HTML +# help (for MS users), 'CHI' for generating a seperate .chi file by the +# .chm file, and 'MAN', 'RTF', 'XML', 'PDF' and 'PS' for the appropriate +# output formats. The environment variable DOXYGEN_PAPER_SIZE may be +# specified to override the default 'a4wide' paper size. +# +# By default, HTML, PDF and PS documentation is generated as this seems to +# be the most popular and portable combination. MAN pages created by +# Doxygen are usually problematic, though by picking an appropriate subset +# and doing some massaging they might be better than nothing. CHM and RTF +# are specific for MS (note that you can't generate both HTML and CHM at +# the same time). The XML is rather useless unless you apply specialized +# post-processing to it. +# +# The macros mainly control the default state of the feature. The use can +# override the default by specifying --enable or --disable. The macros +# ensure that contradictory flags are not given (e.g., +# --enable-doxygen-html and --enable-doxygen-chm, +# --enable-doxygen-anything with --disable-doxygen, etc.) Finally, each +# feature will be automatically disabled (with a warning) if the required +# programs are missing. +# +# Once all the feature defaults have been specified, call DX_INIT_DOXYGEN +# with the following parameters: a one-word name for the project for use +# as a filename base etc., an optional configuration file name (the +# default is 'Doxyfile', the same as Doxygen's default), and an optional +# output directory name (the default is 'doxygen-doc'). +# +# Automake Support +# +# The following is a template aminclude.am file for use with Automake. +# Make targets and variables values are controlled by the various +# DX_COND_* conditionals set by autoconf. +# +# The provided targets are: +# +# doxygen-doc: Generate all doxygen documentation. +# +# doxygen-run: Run doxygen, which will generate some of the +# documentation (HTML, CHM, CHI, MAN, RTF, XML) +# but will not do the post processing required +# for the rest of it (PS, PDF, and some MAN). +# +# doxygen-man: Rename some doxygen generated man pages. +# +# doxygen-ps: Generate doxygen PostScript documentation. +# +# doxygen-pdf: Generate doxygen PDF documentation. +# +# Note that by default these are not integrated into the automake targets. +# If doxygen is used to generate man pages, you can achieve this +# integration by setting man3_MANS to the list of man pages generated and +# then adding the dependency: +# +# $(man3_MANS): doxygen-doc +# +# This will cause make to run doxygen and generate all the documentation. +# +# The following variable is intended for use in Makefile.am: +# +# DX_CLEANFILES = everything to clean. +# +# Then add this variable to MOSTLYCLEANFILES. +# +# ----- begin aminclude.am ------------------------------------- +# +# ## --------------------------------- ## +# ## Format-independent Doxygen rules. ## +# ## --------------------------------- ## +# +# if DX_COND_doc +# +# ## ------------------------------- ## +# ## Rules specific for HTML output. ## +# ## ------------------------------- ## +# +# if DX_COND_html +# +# DX_CLEAN_HTML = @DX_DOCDIR@/html +# +# endif DX_COND_html +# +# ## ------------------------------ ## +# ## Rules specific for CHM output. ## +# ## ------------------------------ ## +# +# if DX_COND_chm +# +# DX_CLEAN_CHM = @DX_DOCDIR@/chm +# +# if DX_COND_chi +# +# DX_CLEAN_CHI = @DX_DOCDIR@/@PACKAGE@.chi +# +# endif DX_COND_chi +# +# endif DX_COND_chm +# +# ## ------------------------------ ## +# ## Rules specific for MAN output. ## +# ## ------------------------------ ## +# +# if DX_COND_man +# +# DX_CLEAN_MAN = @DX_DOCDIR@/man +# +# endif DX_COND_man +# +# ## ------------------------------ ## +# ## Rules specific for RTF output. ## +# ## ------------------------------ ## +# +# if DX_COND_rtf +# +# DX_CLEAN_RTF = @DX_DOCDIR@/rtf +# +# endif DX_COND_rtf +# +# ## ------------------------------ ## +# ## Rules specific for XML output. ## +# ## ------------------------------ ## +# +# if DX_COND_xml +# +# DX_CLEAN_XML = @DX_DOCDIR@/xml +# +# endif DX_COND_xml +# +# ## ----------------------------- ## +# ## Rules specific for PS output. ## +# ## ----------------------------- ## +# +# if DX_COND_ps +# +# DX_CLEAN_PS = @DX_DOCDIR@/@PACKAGE@.ps +# +# DX_PS_GOAL = doxygen-ps +# +# doxygen-ps: @DX_DOCDIR@/@PACKAGE@.ps +# +# @DX_DOCDIR@/@PACKAGE@.ps: @DX_DOCDIR@/@PACKAGE@.tag +# cd @DX_DOCDIR@/latex; \ +# rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \ +# $(DX_LATEX) refman.tex; \ +# $(MAKEINDEX_PATH) refman.idx; \ +# $(DX_LATEX) refman.tex; \ +# countdown=5; \ +# while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \ +# refman.log > /dev/null 2>&1 \ +# && test $$countdown -gt 0; do \ +# $(DX_LATEX) refman.tex; \ +# countdown=`expr $$countdown - 1`; \ +# done; \ +# $(DX_DVIPS) -o ../@PACKAGE@.ps refman.dvi +# +# endif DX_COND_ps +# +# ## ------------------------------ ## +# ## Rules specific for PDF output. ## +# ## ------------------------------ ## +# +# if DX_COND_pdf +# +# DX_CLEAN_PDF = @DX_DOCDIR@/@PACKAGE@.pdf +# +# DX_PDF_GOAL = doxygen-pdf +# +# doxygen-pdf: @DX_DOCDIR@/@PACKAGE@.pdf +# +# @DX_DOCDIR@/@PACKAGE@.pdf: @DX_DOCDIR@/@PACKAGE@.tag +# cd @DX_DOCDIR@/latex; \ +# rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \ +# $(DX_PDFLATEX) refman.tex; \ +# $(DX_MAKEINDEX) refman.idx; \ +# $(DX_PDFLATEX) refman.tex; \ +# countdown=5; \ +# while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \ +# refman.log > /dev/null 2>&1 \ +# && test $$countdown -gt 0; do \ +# $(DX_PDFLATEX) refman.tex; \ +# countdown=`expr $$countdown - 1`; \ +# done; \ +# mv refman.pdf ../@PACKAGE@.pdf +# +# endif DX_COND_pdf +# +# ## ------------------------------------------------- ## +# ## Rules specific for LaTeX (shared for PS and PDF). ## +# ## ------------------------------------------------- ## +# +# if DX_COND_latex +# +# DX_CLEAN_LATEX = @DX_DOCDIR@/latex +# +# endif DX_COND_latex +# +# .PHONY: doxygen-run doxygen-doc $(DX_PS_GOAL) $(DX_PDF_GOAL) +# +# .INTERMEDIATE: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL) +# +# doxygen-run: @DX_DOCDIR@/@PACKAGE@.tag +# +# doxygen-doc: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL) +# +# @DX_DOCDIR@/@PACKAGE@.tag: $(DX_CONFIG) $(pkginclude_HEADERS) +# rm -rf @DX_DOCDIR@ +# $(DX_ENV) $(DX_DOXYGEN) $(srcdir)/$(DX_CONFIG) +# +# DX_CLEANFILES = \ +# @DX_DOCDIR@/@PACKAGE@.tag \ +# -r \ +# $(DX_CLEAN_HTML) \ +# $(DX_CLEAN_CHM) \ +# $(DX_CLEAN_CHI) \ +# $(DX_CLEAN_MAN) \ +# $(DX_CLEAN_RTF) \ +# $(DX_CLEAN_XML) \ +# $(DX_CLEAN_PS) \ +# $(DX_CLEAN_PDF) \ +# $(DX_CLEAN_LATEX) +# +# endif DX_COND_doc +# +# ----- end aminclude.am --------------------------------------- +# +# LICENSE +# +# Copyright (c) 2009 Oren Ben-Kiki +# +# Copying and distribution of this file, with or without modification, are +# permitted in any medium without royalty provided the copyright notice +# and this notice are preserved. + +## ----------## +## Defaults. ## +## ----------## + +DX_ENV="" +AC_DEFUN([DX_FEATURE_doc], ON) +AC_DEFUN([DX_FEATURE_dot], ON) +AC_DEFUN([DX_FEATURE_man], OFF) +AC_DEFUN([DX_FEATURE_html], ON) +AC_DEFUN([DX_FEATURE_chm], OFF) +AC_DEFUN([DX_FEATURE_chi], OFF) +AC_DEFUN([DX_FEATURE_rtf], OFF) +AC_DEFUN([DX_FEATURE_xml], OFF) +AC_DEFUN([DX_FEATURE_pdf], ON) +AC_DEFUN([DX_FEATURE_ps], ON) + +## --------------- ## +## Private macros. ## +## --------------- ## + +# DX_ENV_APPEND(VARIABLE, VALUE) +# ------------------------------ +# Append VARIABLE="VALUE" to DX_ENV for invoking doxygen. +AC_DEFUN([DX_ENV_APPEND], [AC_SUBST([DX_ENV], ["$DX_ENV $1='$2'"])]) + +# DX_DIRNAME_EXPR +# --------------- +# Expand into a shell expression prints the directory part of a path. +AC_DEFUN([DX_DIRNAME_EXPR], + [[expr ".$1" : '\(\.\)[^/]*$' \| "x$1" : 'x\(.*\)/[^/]*$']]) + +# DX_IF_FEATURE(FEATURE, IF-ON, IF-OFF) +# ------------------------------------- +# Expands according to the M4 (static) status of the feature. +AC_DEFUN([DX_IF_FEATURE], [ifelse(DX_FEATURE_$1, ON, [$2], [$3])]) + +# DX_REQUIRE_PROG(VARIABLE, PROGRAM) +# ---------------------------------- +# Require the specified program to be found for the DX_CURRENT_FEATURE to work. +AC_DEFUN([DX_REQUIRE_PROG], [ +AC_PATH_TOOL([$1], [$2]) +if test "$DX_FLAG_[]DX_CURRENT_FEATURE$$1" = 1; then + AC_MSG_WARN([$2 not found - will not DX_CURRENT_DESCRIPTION]) + AC_SUBST(DX_FLAG_[]DX_CURRENT_FEATURE, 0) +fi +]) + +# DX_TEST_FEATURE(FEATURE) +# ------------------------ +# Expand to a shell expression testing whether the feature is active. +AC_DEFUN([DX_TEST_FEATURE], [test "$DX_FLAG_$1" = 1]) + +# DX_CHECK_DEPEND(REQUIRED_FEATURE, REQUIRED_STATE) +# ------------------------------------------------- +# Verify that a required features has the right state before trying to turn on +# the DX_CURRENT_FEATURE. +AC_DEFUN([DX_CHECK_DEPEND], [ +test "$DX_FLAG_$1" = "$2" \ +|| AC_MSG_ERROR([doxygen-DX_CURRENT_FEATURE ifelse([$2], 1, + requires, contradicts) doxygen-DX_CURRENT_FEATURE]) +]) + +# DX_CLEAR_DEPEND(FEATURE, REQUIRED_FEATURE, REQUIRED_STATE) +# ---------------------------------------------------------- +# Turn off the DX_CURRENT_FEATURE if the required feature is off. +AC_DEFUN([DX_CLEAR_DEPEND], [ +test "$DX_FLAG_$1" = "$2" || AC_SUBST(DX_FLAG_[]DX_CURRENT_FEATURE, 0) +]) + +# DX_FEATURE_ARG(FEATURE, DESCRIPTION, +# CHECK_DEPEND, CLEAR_DEPEND, +# REQUIRE, DO-IF-ON, DO-IF-OFF) +# -------------------------------------------- +# Parse the command-line option controlling a feature. CHECK_DEPEND is called +# if the user explicitly turns the feature on (and invokes DX_CHECK_DEPEND), +# otherwise CLEAR_DEPEND is called to turn off the default state if a required +# feature is disabled (using DX_CLEAR_DEPEND). REQUIRE performs additional +# requirement tests (DX_REQUIRE_PROG). Finally, an automake flag is set and +# DO-IF-ON or DO-IF-OFF are called according to the final state of the feature. +AC_DEFUN([DX_ARG_ABLE], [ + AC_DEFUN([DX_CURRENT_FEATURE], [$1]) + AC_DEFUN([DX_CURRENT_DESCRIPTION], [$2]) + AC_ARG_ENABLE(doxygen-$1, + [AS_HELP_STRING(DX_IF_FEATURE([$1], [--disable-doxygen-$1], + [--enable-doxygen-$1]), + DX_IF_FEATURE([$1], [don't $2], [$2]))], + [ +case "$enableval" in +#( +y|Y|yes|Yes|YES) + AC_SUBST([DX_FLAG_$1], 1) + $3 +;; #( +n|N|no|No|NO) + AC_SUBST([DX_FLAG_$1], 0) +;; #( +*) + AC_MSG_ERROR([invalid value '$enableval' given to doxygen-$1]) +;; +esac +], [ +AC_SUBST([DX_FLAG_$1], [DX_IF_FEATURE([$1], 1, 0)]) +$4 +]) +if DX_TEST_FEATURE([$1]); then + $5 + : +fi +if DX_TEST_FEATURE([$1]); then + AM_CONDITIONAL(DX_COND_$1, :) + $6 + : +else + AM_CONDITIONAL(DX_COND_$1, false) + $7 + : +fi +]) + +## -------------- ## +## Public macros. ## +## -------------- ## + +# DX_XXX_FEATURE(DEFAULT_STATE) +# ----------------------------- +AC_DEFUN([DX_DOXYGEN_FEATURE], [AC_DEFUN([DX_FEATURE_doc], [$1])]) +AC_DEFUN([DX_MAN_FEATURE], [AC_DEFUN([DX_FEATURE_man], [$1])]) +AC_DEFUN([DX_HTML_FEATURE], [AC_DEFUN([DX_FEATURE_html], [$1])]) +AC_DEFUN([DX_CHM_FEATURE], [AC_DEFUN([DX_FEATURE_chm], [$1])]) +AC_DEFUN([DX_CHI_FEATURE], [AC_DEFUN([DX_FEATURE_chi], [$1])]) +AC_DEFUN([DX_RTF_FEATURE], [AC_DEFUN([DX_FEATURE_rtf], [$1])]) +AC_DEFUN([DX_XML_FEATURE], [AC_DEFUN([DX_FEATURE_xml], [$1])]) +AC_DEFUN([DX_XML_FEATURE], [AC_DEFUN([DX_FEATURE_xml], [$1])]) +AC_DEFUN([DX_PDF_FEATURE], [AC_DEFUN([DX_FEATURE_pdf], [$1])]) +AC_DEFUN([DX_PS_FEATURE], [AC_DEFUN([DX_FEATURE_ps], [$1])]) + +# DX_INIT_DOXYGEN(PROJECT, [CONFIG-FILE], [OUTPUT-DOC-DIR]) +# --------------------------------------------------------- +# PROJECT also serves as the base name for the documentation files. +# The default CONFIG-FILE is "Doxyfile" and OUTPUT-DOC-DIR is "doxygen-doc". +AC_DEFUN([DX_INIT_DOXYGEN], [ + +# Files: +AC_SUBST([DX_PROJECT], [$1]) +AC_SUBST([DX_CONFIG], [ifelse([$2], [], Doxyfile, [$2])]) +AC_SUBST([DX_DOCDIR], [ifelse([$3], [], doxygen-doc, [$3])]) + +# Environment variables used inside doxygen.cfg: +DX_ENV_APPEND(SRCDIR, $srcdir) +DX_ENV_APPEND(PROJECT, $DX_PROJECT) +DX_ENV_APPEND(DOCDIR, $DX_DOCDIR) +DX_ENV_APPEND(VERSION, $PACKAGE_VERSION) + +# Additional variables for PECOS dev environment: +DX_ENV_APPEND(BUILDDATE,$BUILD_DATE) +DX_ENV_APPEND(BUILDHOST,$BUILD_HOST) +DX_ENV_APPEND(BUILDUSER,$USER) +DX_ENV_APPEND(BUILDDIR,$srcdir) + +# Doxygen itself: +DX_ARG_ABLE(doc, [generate any doxygen documentation], + [], + [], + [DX_REQUIRE_PROG([DX_DOXYGEN], doxygen) + DX_REQUIRE_PROG([DX_PERL], perl)], + [DX_ENV_APPEND(PERL_PATH, $DX_PERL)]) + +# Dot for graphics: +DX_ARG_ABLE(dot, [generate graphics for doxygen documentation], + [DX_CHECK_DEPEND(doc, 1)], + [DX_CLEAR_DEPEND(doc, 1)], + [DX_REQUIRE_PROG([DX_DOT], dot)], + [DX_ENV_APPEND(HAVE_DOT, YES) + DX_ENV_APPEND(DOT_PATH, [`DX_DIRNAME_EXPR($DX_DOT)`])], + [DX_ENV_APPEND(HAVE_DOT, NO)]) + +# Man pages generation: +DX_ARG_ABLE(man, [generate doxygen manual pages], + [DX_CHECK_DEPEND(doc, 1)], + [DX_CLEAR_DEPEND(doc, 1)], + [], + [DX_ENV_APPEND(GENERATE_MAN, YES)], + [DX_ENV_APPEND(GENERATE_MAN, NO)]) + +# RTF file generation: +DX_ARG_ABLE(rtf, [generate doxygen RTF documentation], + [DX_CHECK_DEPEND(doc, 1)], + [DX_CLEAR_DEPEND(doc, 1)], + [], + [DX_ENV_APPEND(GENERATE_RTF, YES)], + [DX_ENV_APPEND(GENERATE_RTF, NO)]) + +# XML file generation: +DX_ARG_ABLE(xml, [generate doxygen XML documentation], + [DX_CHECK_DEPEND(doc, 1)], + [DX_CLEAR_DEPEND(doc, 1)], + [], + [DX_ENV_APPEND(GENERATE_XML, YES)], + [DX_ENV_APPEND(GENERATE_XML, NO)]) + +# (Compressed) HTML help generation: +DX_ARG_ABLE(chm, [generate doxygen compressed HTML help documentation], + [DX_CHECK_DEPEND(doc, 1)], + [DX_CLEAR_DEPEND(doc, 1)], + [DX_REQUIRE_PROG([DX_HHC], hhc)], + [DX_ENV_APPEND(HHC_PATH, $DX_HHC) + DX_ENV_APPEND(GENERATE_HTML, YES) + DX_ENV_APPEND(GENERATE_HTMLHELP, YES)], + [DX_ENV_APPEND(GENERATE_HTMLHELP, NO)]) + +# Seperate CHI file generation. +DX_ARG_ABLE(chi, [generate doxygen seperate compressed HTML help index file], + [DX_CHECK_DEPEND(chm, 1)], + [DX_CLEAR_DEPEND(chm, 1)], + [], + [DX_ENV_APPEND(GENERATE_CHI, YES)], + [DX_ENV_APPEND(GENERATE_CHI, NO)]) + +# Plain HTML pages generation: +DX_ARG_ABLE(html, [generate doxygen plain HTML documentation], + [DX_CHECK_DEPEND(doc, 1) DX_CHECK_DEPEND(chm, 0)], + [DX_CLEAR_DEPEND(doc, 1) DX_CLEAR_DEPEND(chm, 0)], + [], + [DX_ENV_APPEND(GENERATE_HTML, YES)], + [DX_TEST_FEATURE(chm) || DX_ENV_APPEND(GENERATE_HTML, NO)]) + +# PostScript file generation: +DX_ARG_ABLE(ps, [generate doxygen PostScript documentation], + [DX_CHECK_DEPEND(doc, 1)], + [DX_CLEAR_DEPEND(doc, 1)], + [DX_REQUIRE_PROG([DX_LATEX], latex) + DX_REQUIRE_PROG([DX_MAKEINDEX], makeindex) + DX_REQUIRE_PROG([DX_DVIPS], dvips) + DX_REQUIRE_PROG([DX_EGREP], egrep)]) + +# PDF file generation: +DX_ARG_ABLE(pdf, [generate doxygen PDF documentation], + [DX_CHECK_DEPEND(doc, 1)], + [DX_CLEAR_DEPEND(doc, 1)], + [DX_REQUIRE_PROG([DX_PDFLATEX], pdflatex) + DX_REQUIRE_PROG([DX_MAKEINDEX], makeindex) + DX_REQUIRE_PROG([DX_EGREP], egrep)]) + +# LaTeX generation for PS and/or PDF: +if DX_TEST_FEATURE(ps) || DX_TEST_FEATURE(pdf); then + AM_CONDITIONAL(DX_COND_latex, :) + DX_ENV_APPEND(GENERATE_LATEX, YES) +else + AM_CONDITIONAL(DX_COND_latex, false) + DX_ENV_APPEND(GENERATE_LATEX, NO) +fi + +# Paper size for PS and/or PDF: +AC_ARG_VAR(DOXYGEN_PAPER_SIZE, + [a4wide (default), a4, letter, legal or executive]) +case "$DOXYGEN_PAPER_SIZE" in +#( +"") + AC_SUBST(DOXYGEN_PAPER_SIZE, "") +;; #( +a4wide|a4|letter|legal|executive) + DX_ENV_APPEND(PAPER_SIZE, $DOXYGEN_PAPER_SIZE) +;; #( +*) + AC_MSG_ERROR([unknown DOXYGEN_PAPER_SIZE='$DOXYGEN_PAPER_SIZE']) +;; +esac + +#For debugging: +#echo DX_FLAG_doc=$DX_FLAG_doc +#echo DX_FLAG_dot=$DX_FLAG_dot +#echo DX_FLAG_man=$DX_FLAG_man +#echo DX_FLAG_html=$DX_FLAG_html +#echo DX_FLAG_chm=$DX_FLAG_chm +#echo DX_FLAG_chi=$DX_FLAG_chi +#echo DX_FLAG_rtf=$DX_FLAG_rtf +#echo DX_FLAG_xml=$DX_FLAG_xml +#echo DX_FLAG_pdf=$DX_FLAG_pdf +#echo DX_FLAG_ps=$DX_FLAG_ps +#echo DX_ENV=$DX_ENV +]) From a324a4884c7daa851305cdfe845e5875a39aa517 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 06:55:46 +0000 Subject: [PATCH 025/124] [cantera+autotools]: several edits to support cantera and doxygen documentation---not working yet --- Cantera/src/converters/Makefile.in | 27 ++++++++++++++++++++++- Cantera/src/kinetics/Makefile.in | 27 ++++++++++++++++++++++- Cantera/src/spectra/Makefile.in | 27 ++++++++++++++++++++++- Cantera/src/transport/Makefile.in | 27 ++++++++++++++++++++++- Makefile.am | 3 +-- configure.ac | 35 ++++++++++++++++-------------- doxygen/cantera.dox | 11 +++++----- examples/cxx/examples.cpp | 2 -- 8 files changed, 129 insertions(+), 30 deletions(-) diff --git a/Cantera/src/converters/Makefile.in b/Cantera/src/converters/Makefile.in index 6e29d0e8f..9ec09ce83 100644 --- a/Cantera/src/converters/Makefile.in +++ b/Cantera/src/converters/Makefile.in @@ -37,7 +37,8 @@ host_triplet = @host@ subdir = Cantera/src/converters DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_split_version.m4 \ +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -124,8 +125,32 @@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ diff --git a/Cantera/src/kinetics/Makefile.in b/Cantera/src/kinetics/Makefile.in index 68030d7b6..c40a67a9c 100644 --- a/Cantera/src/kinetics/Makefile.in +++ b/Cantera/src/kinetics/Makefile.in @@ -37,7 +37,8 @@ host_triplet = @host@ subdir = Cantera/src/kinetics DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_split_version.m4 \ +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -124,8 +125,32 @@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ diff --git a/Cantera/src/spectra/Makefile.in b/Cantera/src/spectra/Makefile.in index f17d0d239..8169f4973 100644 --- a/Cantera/src/spectra/Makefile.in +++ b/Cantera/src/spectra/Makefile.in @@ -37,7 +37,8 @@ host_triplet = @host@ subdir = Cantera/src/spectra DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_split_version.m4 \ +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -122,8 +123,32 @@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ diff --git a/Cantera/src/transport/Makefile.in b/Cantera/src/transport/Makefile.in index a7145b3a6..f856a731a 100644 --- a/Cantera/src/transport/Makefile.in +++ b/Cantera/src/transport/Makefile.in @@ -37,7 +37,8 @@ host_triplet = @host@ subdir = Cantera/src/transport DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_split_version.m4 \ +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -125,8 +126,32 @@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ diff --git a/Makefile.am b/Makefile.am index eab36ef08..dd5e33329 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,8 +2,7 @@ # Build in these directories: SUBDIRS = Cantera examples test_problems -#SUBDIRS += doxygen - +SUBDIRS += doxygen # Distribute these directories: DIST_SUBDIRS = Cantera examples diff --git a/configure.ac b/configure.ac index b5bf376a1..f40581b8f 100644 --- a/configure.ac +++ b/configure.ac @@ -42,25 +42,28 @@ AM_SANITY_CHECK # Doxygen support # ---------------- -# DX_DOXYGEN_FEATURE(ON) -# DX_HTML_FEATURE(ON) -# DX_CHM_FEATURE(OFF) -# DX_CHI_FEATURE(OFF) +DX_HTML_FEATURE(ON) +DX_CHM_FEATURE(OFF) +DX_CHI_FEATURE(OFF) -# DX_MAN_FEATURE(OFF) -# DX_RTF_FEATURE(OFF) -# DX_XML_FEATURE(OFF) -# DX_PDF_FEATURE(ON) -# DX_PS_FEATURE(OFF) -# DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) +DX_MAN_FEATURE(OFF) +DX_RTF_FEATURE(OFF) +DX_XML_FEATURE(OFF) +DX_PDF_FEATURE(ON) +DX_PS_FEATURE(OFF) +DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) # Generate Output Files -AC_OUTPUT(Makefile test_problems/Makefile examples/Makefile Cantera/Makefile \ - Cantera/src/Makefile Cantera/src/base/Makefile \ - Cantera/src/converters/Makefile Cantera/src/kinetics/Makefile \ - Cantera/src/numerics/Makefile Cantera/src/oneD/Makefile \ - Cantera/src/thermo/Makefile Cantera/src/transport/Makefile \ - Cantera/src/spectra/Makefile Cantera/src/zeroD/Makefile \ +AC_OUTPUT(Makefile test_problems/Makefile examples/Makefile \ + doxygen/Makefile \ + Cantera/Makefile \ + Cantera/src/Makefile Cantera/src/base/Makefile \ + Cantera/src/converters/Makefile \ + Cantera/src/kinetics/Makefile \ + Cantera/src/numerics/Makefile Cantera/src/oneD/Makefile \ + Cantera/src/thermo/Makefile \ + Cantera/src/transport/Makefile \ + Cantera/src/spectra/Makefile Cantera/src/zeroD/Makefile \ Cantera/src/equil/Makefile) # FINAL SUMMARY diff --git a/doxygen/cantera.dox b/doxygen/cantera.dox index be7ff3e88..e6fc49b8f 100644 --- a/doxygen/cantera.dox +++ b/doxygen/cantera.dox @@ -568,9 +568,8 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = src/masa.h src/masa.f90 examples/pecos-input.txt \ - tutorial/laplacian.c tutorial/laplacian_utils.c tutorial/laplacian.h \ - $(SRCDIR)/doxygen/masa.page \ +INPUT = Cantera/src/kinetics/Kinetics.h \ + $(SRCDIR)/doxygen/cantera.page \ $(SRCDIR)/doxygen/fortran_interface.page \ $(SRCDIR)/doxygen/txt_common/acknowledgment.page \ $(SRCDIR)/doxygen/txt_common/gpl.page \ @@ -578,8 +577,8 @@ INPUT = src/masa.h src/masa.f90 examples/pecos-input.txt \ $(SRCDIR)/doxygen/txt_common/noop.page \ ./doxygen/txt_common/about_vpath.page \ $(SRCDIR)/doxygen/tutorial.page \ - $(SRCDIR)/doxygen/install.page \ - $(SRCDIR)/doxygen/add_sol.page \ + $(SRCDIR)/doxygen/install.page \ + $(SRCDIR)/doxygen/add_sol.page \ $(SRCDIR)/doxygen/solutions \ # This tag can be used to specify the character encoding of the source files @@ -1030,7 +1029,7 @@ PAPER_TYPE = $(PAPER_SIZE) # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. -EXTRA_PACKAGES = $(SRCDIR)/../../doxygen/masa +EXTRA_PACKAGES = $(SRCDIR)/../../doxygen/cantera # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until diff --git a/examples/cxx/examples.cpp b/examples/cxx/examples.cpp index d33460d72..00a5f52ca 100755 --- a/examples/cxx/examples.cpp +++ b/examples/cxx/examples.cpp @@ -3,8 +3,6 @@ using namespace Cantera; using namespace std; -//#include "ctexceptions.h" - // turn off warnings under Windows #ifdef WIN32 #pragma warning(disable:4786) From d0915621faaaead57d2132c69af4312baa63c708 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 06:57:18 +0000 Subject: [PATCH 026/124] [cantera+autotools]: removing more makefile.in --- Cantera/src/converters/Makefile.in | 597 ---------------------------- Cantera/src/kinetics/Makefile.in | 594 ---------------------------- Cantera/src/spectra/Makefile.in | 582 ---------------------------- Cantera/src/transport/Makefile.in | 601 ----------------------------- 4 files changed, 2374 deletions(-) delete mode 100644 Cantera/src/converters/Makefile.in delete mode 100644 Cantera/src/kinetics/Makefile.in delete mode 100644 Cantera/src/spectra/Makefile.in delete mode 100644 Cantera/src/transport/Makefile.in diff --git a/Cantera/src/converters/Makefile.in b/Cantera/src/converters/Makefile.in deleted file mode 100644 index 9ec09ce83..000000000 --- a/Cantera/src/converters/Makefile.in +++ /dev/null @@ -1,597 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = Cantera/src/converters -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(libdir)" -LTLIBRARIES = $(lib_LTLIBRARIES) -libconverters_la_LIBADD = -am__objects_1 = atomicWeightDB.lo ck2ctml.lo CKReader.lo filter.lo \ - Reaction.lo thermoFunctions.lo ck2ct.lo CKParser.lo \ - ckr_utils.lo NASA9Parser.lo Species.lo writelog.lo -am__objects_2 = -am_libconverters_la_OBJECTS = $(am__objects_1) $(am__objects_2) -libconverters_la_OBJECTS = $(am_libconverters_la_OBJECTS) -libconverters_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(libconverters_la_LDFLAGS) $(LDFLAGS) -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(libconverters_la_SOURCES) -DIST_SOURCES = $(libconverters_la_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -h_sources = ck2ct.h CKParser.h CKReader.h Constituent.h Reaction.h \ - Species.h writelog.h ck2ctml.h ckr_defs.h ckr_utils.h \ - Element.h RxnSpecies.h thermoFunctions.h - -cc_sources = atomicWeightDB.cpp ck2ctml.cpp CKReader.cpp filter.cpp \ - Reaction.cpp thermoFunctions.cpp ck2ct.cpp CKParser.cpp \ - ckr_utils.cpp NASA9Parser.cpp Species.cpp writelog.cpp - -INCLUDES = -I../base -I../../../ -AM_CXXFLAGS = $(INCLUDES) -lib_LTLIBRARIES = libconverters.la -library_includedir = $(includedir) - -#----------------------- -# Cantera Converters C/C++ library -#----------------------- -libconverters_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -libconverters_la_SOURCES = $(cc_sources) $(h_sources) -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Cantera/src/converters/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu Cantera/src/converters/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-libLTLIBRARIES: $(lib_LTLIBRARIES) - @$(NORMAL_INSTALL) - test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ - } - -uninstall-libLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ - done - -clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" != "$$p" || dir=.; \ - echo "rm -f \"$${dir}/so_locations\""; \ - rm -f "$${dir}/so_locations"; \ - done -libconverters.la: $(libconverters_la_OBJECTS) $(libconverters_la_DEPENDENCIES) - $(libconverters_la_LINK) -rpath $(libdir) $(libconverters_la_OBJECTS) $(libconverters_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CKParser.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CKReader.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NASA9Parser.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Reaction.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Species.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atomicWeightDB.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ck2ct.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ck2ctml.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ckr_utils.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/filter.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/thermoFunctions.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/writelog.Plo@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LTLIBRARIES) -installdirs: - for dir in "$(DESTDIR)$(libdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-libLTLIBRARIES - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-libLTLIBRARIES - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libLTLIBRARIES clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am \ - install-libLTLIBRARIES install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-libLTLIBRARIES - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/Cantera/src/kinetics/Makefile.in b/Cantera/src/kinetics/Makefile.in deleted file mode 100644 index c40a67a9c..000000000 --- a/Cantera/src/kinetics/Makefile.in +++ /dev/null @@ -1,594 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = Cantera/src/kinetics -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(libdir)" -LTLIBRARIES = $(lib_LTLIBRARIES) -libkinetics_la_LIBADD = -am__objects_1 = importKinetics.lo GRI_30_Kinetics.lo \ - KineticsFactory.lo GasKinetics.lo AqueousKinetics.lo \ - FalloffFactory.lo -am__objects_2 = -am_libkinetics_la_OBJECTS = $(am__objects_1) $(am__objects_2) -libkinetics_la_OBJECTS = $(am_libkinetics_la_OBJECTS) -libkinetics_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(libkinetics_la_LDFLAGS) $(LDFLAGS) -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(libkinetics_la_SOURCES) -DIST_SOURCES = $(libkinetics_la_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -h_sources = importKinetics.h GRI_30_Kinetics.h KineticsFactory.h \ - Kinetics.h GasKinetics.h \ - FalloffFactory.h ReactionStoichMgr.h reaction_defs.h \ - FalloffMgr.h ThirdBodyMgr.h RateCoeffMgr.h ReactionData.h \ - RxnRates.h Enhanced3BConc.h StoichManager.h solveSP.h \ - AqueousKinetics.h - -cc_sources = importKinetics.cpp GRI_30_Kinetics.cpp KineticsFactory.cpp \ - GasKinetics.cpp AqueousKinetics.cpp FalloffFactory.cpp - -INCLUDES = -I../base -I../thermo -I../../../ -AM_CXXFLAGS = $(INCLUDES) -lib_LTLIBRARIES = libkinetics.la -library_includedir = $(includedir) - -#----------------------- -# Cantera Kinetics C/C++ library -#----------------------- -libkinetics_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -libkinetics_la_SOURCES = $(cc_sources) $(h_sources) -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Cantera/src/kinetics/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu Cantera/src/kinetics/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-libLTLIBRARIES: $(lib_LTLIBRARIES) - @$(NORMAL_INSTALL) - test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ - } - -uninstall-libLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ - done - -clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" != "$$p" || dir=.; \ - echo "rm -f \"$${dir}/so_locations\""; \ - rm -f "$${dir}/so_locations"; \ - done -libkinetics.la: $(libkinetics_la_OBJECTS) $(libkinetics_la_DEPENDENCIES) - $(libkinetics_la_LINK) -rpath $(libdir) $(libkinetics_la_OBJECTS) $(libkinetics_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AqueousKinetics.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FalloffFactory.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GRI_30_Kinetics.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GasKinetics.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/KineticsFactory.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/importKinetics.Plo@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LTLIBRARIES) -installdirs: - for dir in "$(DESTDIR)$(libdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-libLTLIBRARIES - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-libLTLIBRARIES - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libLTLIBRARIES clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am \ - install-libLTLIBRARIES install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-libLTLIBRARIES - - ReactionStoichMgr.cpp Kinetics.cpp solveSP.cpp - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/Cantera/src/spectra/Makefile.in b/Cantera/src/spectra/Makefile.in deleted file mode 100644 index 8169f4973..000000000 --- a/Cantera/src/spectra/Makefile.in +++ /dev/null @@ -1,582 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = Cantera/src/spectra -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(libdir)" -LTLIBRARIES = $(lib_LTLIBRARIES) -libctspectra_la_LIBADD = -am__objects_1 = LineBroadener.lo rotor.lo spectralUtilities.lo -am__objects_2 = -am_libctspectra_la_OBJECTS = $(am__objects_1) $(am__objects_2) -libctspectra_la_OBJECTS = $(am_libctspectra_la_OBJECTS) -libctspectra_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(libctspectra_la_LDFLAGS) $(LDFLAGS) -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(libctspectra_la_SOURCES) -DIST_SOURCES = $(libctspectra_la_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -h_sources = DiatomicMolecule.h LineBroadener.h Nuclei.h \ - rotor.h spectralUtilities.h - -cc_sources = LineBroadener.cpp rotor.cpp spectralUtilities.cpp -INCLUDES = -I../base -I../../../ -AM_CXXFLAGS = $(INCLUDES) -lib_LTLIBRARIES = libctspectra.la -library_includedir = $(includedir) - -#----------------------- -# Cantera Spectra C/C++ library -#----------------------- -libctspectra_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -libctspectra_la_SOURCES = $(cc_sources) $(h_sources) -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Cantera/src/spectra/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu Cantera/src/spectra/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-libLTLIBRARIES: $(lib_LTLIBRARIES) - @$(NORMAL_INSTALL) - test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ - } - -uninstall-libLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ - done - -clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" != "$$p" || dir=.; \ - echo "rm -f \"$${dir}/so_locations\""; \ - rm -f "$${dir}/so_locations"; \ - done -libctspectra.la: $(libctspectra_la_OBJECTS) $(libctspectra_la_DEPENDENCIES) - $(libctspectra_la_LINK) -rpath $(libdir) $(libctspectra_la_OBJECTS) $(libctspectra_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LineBroadener.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rotor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/spectralUtilities.Plo@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LTLIBRARIES) -installdirs: - for dir in "$(DESTDIR)$(libdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-libLTLIBRARIES - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-libLTLIBRARIES - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libLTLIBRARIES clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am \ - install-libLTLIBRARIES install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-libLTLIBRARIES - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/Cantera/src/transport/Makefile.in b/Cantera/src/transport/Makefile.in deleted file mode 100644 index f856a731a..000000000 --- a/Cantera/src/transport/Makefile.in +++ /dev/null @@ -1,601 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = Cantera/src/transport -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(libdir)" -LTLIBRARIES = $(lib_LTLIBRARIES) -libtransport_la_LIBADD = -am__objects_1 = AqueousTransport.lo LiquidTransport.lo \ - MMCollisionInt.lo SimpleTransport.lo TransportBase.lo \ - WaterTransport.lo DustyGasTransport.lo MixTransport.lo \ - MultiTransport.lo SolidTransport.lo TransportFactory.lo -am__objects_2 = -am_libtransport_la_OBJECTS = $(am__objects_1) $(am__objects_2) -libtransport_la_OBJECTS = $(am_libtransport_la_OBJECTS) -libtransport_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(libtransport_la_LDFLAGS) $(LDFLAGS) -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(libtransport_la_SOURCES) -DIST_SOURCES = $(libtransport_la_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -h_sources = AqueousTransport.h LiquidTransportData.h L_matrix.h \ - MultiTransport.h TransportBase.h WaterTransport.h \ - DustyGasTransport.h LiquidTransport.h MixTransport.h \ - SimpleTransport.h TransportFactory.h FtnTransport.h \ - LiquidTransportParams.h MMCollisionInt.h \ - SolidTransport.h TransportParams.h - -cc_sources = AqueousTransport.cpp LiquidTransport.cpp MMCollisionInt.cpp \ - SimpleTransport.cpp TransportBase.cpp WaterTransport.cpp \ - DustyGasTransport.cpp MixTransport.cpp MultiTransport.cpp \ - SolidTransport.cpp TransportFactory.cpp - -INCLUDES = -I../base -I../thermo -I../numerics -I../../../ -AM_CXXFLAGS = $(INCLUDES) -lib_LTLIBRARIES = libtransport.la -library_includedir = $(includedir) - -#----------------------- -# Cantera Transport C/C++ library -#----------------------- -libtransport_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -libtransport_la_SOURCES = $(cc_sources) $(h_sources) -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Cantera/src/transport/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu Cantera/src/transport/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-libLTLIBRARIES: $(lib_LTLIBRARIES) - @$(NORMAL_INSTALL) - test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ - } - -uninstall-libLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ - done - -clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" != "$$p" || dir=.; \ - echo "rm -f \"$${dir}/so_locations\""; \ - rm -f "$${dir}/so_locations"; \ - done -libtransport.la: $(libtransport_la_OBJECTS) $(libtransport_la_DEPENDENCIES) - $(libtransport_la_LINK) -rpath $(libdir) $(libtransport_la_OBJECTS) $(libtransport_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AqueousTransport.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DustyGasTransport.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LiquidTransport.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MMCollisionInt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MixTransport.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MultiTransport.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SimpleTransport.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SolidTransport.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TransportBase.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TransportFactory.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/WaterTransport.Plo@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LTLIBRARIES) -installdirs: - for dir in "$(DESTDIR)$(libdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-libLTLIBRARIES - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-libLTLIBRARIES - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libLTLIBRARIES clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am \ - install-libLTLIBRARIES install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-libLTLIBRARIES - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: From b44aef4ccb9f8a2357b3f9c4b5f0d6a5e09bfb18 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 23:44:20 +0000 Subject: [PATCH 027/124] [cantera+autotools]: adding test directory required tests --- Makefile.am | 2 +- configure.ac | 3 ++- test_problems/Makefile.am | 18 ++++++++++++++++++ 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index dd5e33329..c82503591 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -#include $(top_srcdir)/doxygen/aminclude.am +include $(top_srcdir)/doxygen/aminclude.am # Build in these directories: SUBDIRS = Cantera examples test_problems diff --git a/configure.ac b/configure.ac index f40581b8f..f13b359aa 100644 --- a/configure.ac +++ b/configure.ac @@ -54,7 +54,8 @@ DX_PS_FEATURE(OFF) DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) # Generate Output Files -AC_OUTPUT(Makefile test_problems/Makefile examples/Makefile \ +AC_OUTPUT(Makefile examples/Makefile \ + test_problems/Makefile \ doxygen/Makefile \ Cantera/Makefile \ Cantera/src/Makefile Cantera/src/base/Makefile \ diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index a7919df96..18b0f0722 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -1,3 +1,21 @@ + +SUBDIRS = cxx_ex surfkin fracCoeff silane_equil VPsilance_test \ + negATest diamondSurf diamondSurf_dupl surfSolverTest \ + ChemEquil_gri_matrix ChemEquil_gri_pairs \ + ChemEquil_ionizedGas ChemEquil_red1 CpJump \ + mixGasTransport multiGasTransport printUtilUnitTest + +# +# would be good to add: +# +# pureFluidTest +# rankine_democxx +# min_python +# ck2cti_test +# nasa9_reader +# cathermo +# VCSnonideal + EXTRA_DIST = dist-hook: From 5af8b69446a4bced54972ead3c0bb32d539c14cd Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 23:46:41 +0000 Subject: [PATCH 028/124] [cantera+autotools]: adding aminclude.am --- doxygen/aminclude.am | 171 ++++++++++++++++++++++++++++++++++++++ test_problems/Makefile.am | 2 +- 2 files changed, 172 insertions(+), 1 deletion(-) create mode 100644 doxygen/aminclude.am diff --git a/doxygen/aminclude.am b/doxygen/aminclude.am new file mode 100644 index 000000000..c035d2422 --- /dev/null +++ b/doxygen/aminclude.am @@ -0,0 +1,171 @@ +#----------------------------------- +# PECOS - add any additional doxygen +# dependencies here. +#----------------------------------- + +PECOS_extra_dependencies = doxygen/cantera.page \ + doxygen/txt_common/about.page \ + doxygen/txt_common/gpl.page \ + doxygen/txt_common/acknowledgment.page + +## --------------------------------- ## +## Format-independent Doxygen rules. ## +## --------------------------------- ## + +if DX_COND_doc + +## ------------------------------- ## +## Rules specific for HTML output. ## +## ------------------------------- ## + +if DX_COND_html + +DX_CLEAN_HTML = @DX_DOCDIR@/html + +endif DX_COND_html + +## ------------------------------ ## +## Rules specific for CHM output. ## +## ------------------------------ ## + +if DX_COND_chm + +DX_CLEAN_CHM = @DX_DOCDIR@/chm + +if DX_COND_chi + +DX_CLEAN_CHI = @DX_DOCDIR@/@PACKAGE@.chi + +endif DX_COND_chi + +endif DX_COND_chm + +## ------------------------------ ## +## Rules specific for MAN output. ## +## ------------------------------ ## + +if DX_COND_man + +DX_CLEAN_MAN = @DX_DOCDIR@/man + +endif DX_COND_man + +## ------------------------------ ## +## Rules specific for RTF output. ## +## ------------------------------ ## + +if DX_COND_rtf + +DX_CLEAN_RTF = @DX_DOCDIR@/rtf + +endif DX_COND_rtf + +## ------------------------------ ## +## Rules specific for XML output. ## +## ------------------------------ ## + +if DX_COND_xml + +DX_CLEAN_XML = @DX_DOCDIR@/xml + +endif DX_COND_xml + +## ----------------------------- ## +## Rules specific for PS output. ## +## ----------------------------- ## + +if DX_COND_ps + +DX_CLEAN_PS = @DX_DOCDIR@/@PACKAGE@.ps + +DX_PS_GOAL = doxygen-ps + +doxygen-ps: @DX_DOCDIR@/@PACKAGE@.ps + +@DX_DOCDIR@/@PACKAGE@.ps: @DX_DOCDIR@/@PACKAGE@.tag + cd @DX_DOCDIR@/latex; \ + rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \ + $(DX_LATEX) refman.tex; \ + $(MAKEINDEX_PATH) refman.idx; \ + $(DX_LATEX) refman.tex; \ + countdown=5; \ + while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \ + refman.log > /dev/null 2>&1 \ + && test $$countdown -gt 0; do \ + $(DX_LATEX) refman.tex; \ + countdown=`expr $$countdown - 1`; \ + done; \ + $(DX_DVIPS) -o ../@PACKAGE@.ps refman.dvi + +endif DX_COND_ps + +## ------------------------------ ## +## Rules specific for PDF output. ## +## ------------------------------ ## + +if DX_COND_pdf + +DX_CLEAN_PDF = @DX_DOCDIR@/@PACKAGE@.pdf + +DX_PDF_GOAL = doxygen-pdf + +doxygen-pdf: @DX_DOCDIR@/@PACKAGE@.pdf + +@DX_DOCDIR@/@PACKAGE@.pdf: @DX_DOCDIR@/@PACKAGE@.tag + cd @DX_DOCDIR@/latex; \ + rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \ + $(DX_PDFLATEX) refman.tex; \ + $(DX_MAKEINDEX) refman.idx; \ + $(DX_PDFLATEX) refman.tex; \ + countdown=5; \ + while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \ + refman.log > /dev/null 2>&1 \ + && test $$countdown -gt 0; do \ + $(DX_PDFLATEX) refman.tex; \ + countdown=`expr $$countdown - 1`; \ + done; \ + mv refman.pdf ../@PACKAGE@.pdf + +endif DX_COND_pdf + +## ------------------------------------------------- ## +## Rules specific for LaTeX (shared for PS and PDF). ## +## ------------------------------------------------- ## + +if DX_COND_latex + +DX_CLEAN_LATEX = @DX_DOCDIR@/latex + +endif DX_COND_latex + +.PHONY: doxygen-run doxygen-doc $(DX_PS_GOAL) $(DX_PDF_GOAL) + +.INTERMEDIATE: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL) + +doxygen-run: @DX_DOCDIR@/@PACKAGE@.tag + +doxygen-doc: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL) + +doc: doxygen-doc +docs: doxygen-doc + +@DX_DOCDIR@/@PACKAGE@.tag: $(DX_CONFIG) $(pkginclude_HEADERS) $(PECOS_extra_dependencies) + rm -rf @DX_DOCDIR@ + $(DX_ENV) $(DX_DOXYGEN) $(srcdir)/$(DX_CONFIG) + +DX_CLEANFILES = \ + @DX_DOCDIR@/@PACKAGE@.tag \ + -r \ + $(DX_CLEAN_HTML) \ + $(DX_CLEAN_CHM) \ + $(DX_CLEAN_CHI) \ + $(DX_CLEAN_MAN) \ + $(DX_CLEAN_RTF) \ + $(DX_CLEAN_XML) \ + $(DX_CLEAN_PS) \ + $(DX_CLEAN_PDF) \ + $(DX_CLEAN_LATEX) + +# Additional PECOS dependencies + +endif DX_COND_doc diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 18b0f0722..0bce1584a 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -1,5 +1,5 @@ -SUBDIRS = cxx_ex surfkin fracCoeff silane_equil VPsilance_test \ +#SUBDIRS = cxx_ex surfkin fracCoeff silane_equil VPsilance_test \ negATest diamondSurf diamondSurf_dupl surfSolverTest \ ChemEquil_gri_matrix ChemEquil_gri_pairs \ ChemEquil_ionizedGas ChemEquil_red1 CpJump \ From cd61541a84ddaf9783bfec3ba3d117d15a79637d Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 23:51:51 +0000 Subject: [PATCH 029/124] [cantera+autotools]: thank you for the 2nd pair of eyes, paul -- doxygen is very close to compiling now --- doxygen/txt_common/about.page | 39 ++++++++++++++++++++++++++++++++++ doxygen/txt_common/footer.html | 8 +++++++ doxygen/txt_common/gpl.page | 13 ++++++++++++ 3 files changed, 60 insertions(+) create mode 100644 doxygen/txt_common/about.page create mode 100644 doxygen/txt_common/footer.html create mode 100644 doxygen/txt_common/gpl.page diff --git a/doxygen/txt_common/about.page b/doxygen/txt_common/about.page new file mode 100644 index 000000000..9f65c8afb --- /dev/null +++ b/doxygen/txt_common/about.page @@ -0,0 +1,39 @@ +/*! \page About + +\htmlonly + + + + +
+ The Center for + Predictive Engineering and Computational Sciences (PECOS) + is one of five US centers sponsored under the Predictive + Science Academic Alliance Program (PSAAP) of the National + Nuclear Security Administration's Advanced Simulation and + Computing Program. The PECOS center is housed within + the Institute for + Computational Engineering and Sciences (ICES) at the + University of Texas at + Austin. For additional information or questions regarding + the PECOS center, please contact info@pecos.ices.utexas.edu. +
+\endhtmlonly + +\latexonly +\begin{tabular}{m{2.2cm} m{0.80\textwidth} } +\includegraphics[width=2cm]{../../doxygen/fig_common/circle-logo.pdf} & +The \href{http://pecos.ices.utexas.edu}{Center for Predictive +Engineering and Computational Sciences} (PECOS) is one of five US +centers sponsored under the Predictive Science Academic Alliance +Program (PSAAP) of the National Nuclear Security Administration's +Advanced Simulation and Computing Program. The PECOS center is housed +within the \href{http://www.ices.utexas.edu}{Institute for +Computational Engineering and Sciences} (ICES) at the +\href{http://www.utexas.edu"}{University of Texas at Austin}. For +additional information or questions regarding the PECOS center, please +contact info@pecos.ices.utexas.edu. +\end{tabular} +\endlatexonly + +*/ diff --git a/doxygen/txt_common/footer.html b/doxygen/txt_common/footer.html new file mode 100644 index 000000000..e39a73413 --- /dev/null +++ b/doxygen/txt_common/footer.html @@ -0,0 +1,8 @@ +
+Generated on $datetime for $projectname +by  +doxygen +$doxygenversion
+ + + diff --git a/doxygen/txt_common/gpl.page b/doxygen/txt_common/gpl.page new file mode 100644 index 000000000..7c2066fc6 --- /dev/null +++ b/doxygen/txt_common/gpl.page @@ -0,0 +1,13 @@ +/*! \page License + +
+This program is free software; you can redistribute it and/or modify +it under the terms of the Version 2 GNU General Public License as published by +the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License +for more details. +*/ \ No newline at end of file From c1a7ed92b8521984da2a116b7b16544bf12529a5 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 9 Dec 2011 23:54:19 +0000 Subject: [PATCH 030/124] [cantera+autotools]: adding style file for latex goodness, should be good to go! --- doxygen/Makefile.am | 2 +- doxygen/cantera.sty | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 doxygen/cantera.sty diff --git a/doxygen/Makefile.am b/doxygen/Makefile.am index 8a3090c57..d4b54bc41 100644 --- a/doxygen/Makefile.am +++ b/doxygen/Makefile.am @@ -1,5 +1,5 @@ EXTRA_DIST = cantera.dox cantera.page txt_common fig_common -EXTRA_DIST += install.page cantera.sty tutorial.page +EXTRA_DIST += install.page tutorial.page dist-hook: rm -rf `find $(distdir)/ -name .svn` diff --git a/doxygen/cantera.sty b/doxygen/cantera.sty new file mode 100644 index 000000000..fca692fa3 --- /dev/null +++ b/doxygen/cantera.sty @@ -0,0 +1,20 @@ +\typeout{Document Style `masa'. Released 04 March 2011} +\usepackage{pdflscape} +\usepackage[authoryear]{natbib} +%\usepackage[utf8x]{inputenc} +\usepackage{amsmath} +\usepackage{amsfonts} +\usepackage{geometry} + +\newcommand{\D}{\partial} +\newcommand{\Diff}[2] {\dfrac{\partial( #1)}{\partial #2}} +\newcommand{\diff}[2] {\dfrac{\partial #1}{\partial #2}} +\newcommand{\bv}[1]{\ensuremath{\mbox{\boldmath$ #1 $}}} +\newcommand{\gv}[1]{\ensuremath{\mbox{\boldmath$ #1 $}}} +\newcommand{\grad}[1]{\gv{\nabla} #1} +\newcommand{\Rho}{\,\mathtt{Rho}} +\newcommand{\PP}{\,\mathtt{P}} +%\newcommand{\U}{\,\mathtt{U}} +\newcommand{\V}{\,\mathtt{V}} +\newcommand{\W}{\,\mathtt{W}} +\newcommand{\Lo}{\,\mathcal{L}} From 69d7edcd39aecfa0c63b6a1349b191e2c965f52d Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Mon, 12 Dec 2011 00:36:51 +0000 Subject: [PATCH 031/124] [cantera+autotools]: adding demo ack page --- doxygen/txt_common/acknowledgment.page | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 doxygen/txt_common/acknowledgment.page diff --git a/doxygen/txt_common/acknowledgment.page b/doxygen/txt_common/acknowledgment.page new file mode 100644 index 000000000..f964d71c3 --- /dev/null +++ b/doxygen/txt_common/acknowledgment.page @@ -0,0 +1,7 @@ +/*! \page Acknowledgments + +This material is based in part upon work supported by the Department +of Energy National Nuclear Security Administration under Award +Number \e DE-FC52-08NA28615. + +*/ \ No newline at end of file From a5980d9495bd6550c7e9536a98d31f323a62525a Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 20 Dec 2011 06:01:38 +0000 Subject: [PATCH 032/124] [cantera + autotools]: removing some cruft, next, fixing up the doxygen hooks --- CMakeLists.txt | 51 ------- Cantera/CMakeLists.txt | 16 --- Cantera/cmake_install.cmake | 36 ----- Cantera/src/CMakeLists.txt | 11 -- Cantera/src/base/CMakeLists.txt | 12 -- Cantera/src/kinetics/CMakeLists.txt | 22 --- Cantera/src/kinetics/Kinetics.cpp | 2 - Cantera/src/numerics/CMakeLists.txt | 16 --- Cantera/src/oneD/CMakeLists.txt | 18 --- Cantera/src/spectra/CMakeLists.txt | 13 -- Cantera/src/thermo/CMakeLists.txt | 30 ----- Cantera/src/transport/CMakeLists.txt | 18 --- Cantera/src/zeroD/CMakeLists.txt | 16 --- License.rtf | 176 ------------------------ config.cmake | 25 ---- config.h_cmake.in | 140 ------------------- config_cantera.cmake | 22 --- winconfig.h | 192 --------------------------- 18 files changed, 816 deletions(-) delete mode 100644 CMakeLists.txt delete mode 100644 Cantera/CMakeLists.txt delete mode 100644 Cantera/cmake_install.cmake delete mode 100644 Cantera/src/CMakeLists.txt delete mode 100644 Cantera/src/base/CMakeLists.txt delete mode 100644 Cantera/src/kinetics/CMakeLists.txt delete mode 100644 Cantera/src/numerics/CMakeLists.txt delete mode 100644 Cantera/src/oneD/CMakeLists.txt delete mode 100644 Cantera/src/spectra/CMakeLists.txt delete mode 100644 Cantera/src/thermo/CMakeLists.txt delete mode 100644 Cantera/src/transport/CMakeLists.txt delete mode 100644 Cantera/src/zeroD/CMakeLists.txt delete mode 100755 License.rtf delete mode 100755 config.cmake delete mode 100644 config.h_cmake.in delete mode 100644 config_cantera.cmake delete mode 100644 winconfig.h diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index 915661c8d..000000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,51 +0,0 @@ -PROJECT (Cantera) - -#---------------------------- -# user-configurable settings -#---------------------------- -INCLUDE (config_cantera.cmake) - - -#---------------------------- -# Python -#---------------------------- -#if (PYTHON_CMD STREQUAL "default") -INCLUDE( FindPythonInterp ) -INCLUDE( FindPythonLibs) -SET( PYTHON_EXE ${PYTHON_EXECUTABLE} ) -#else (PYTHON_CMD STREQUAL "default") -# SET( PYTHON_EXE ${PYTHON_CMD} ) -#endif (PYTHON_CMD STREQUAL "default") - - -#--------------------------------------- -# configuration -#--------------------------------------- -CONFIGURE_FILE ( - ${PROJECT_SOURCE_DIR}/config.h_cmake.in - ${PROJECT_BINARY_DIR}/config.h ) - - -#---------------------------------------- -# output paths -#---------------------------------------- -SET (LIBRARY_OUTPUT_PATH - ${PROJECT_BINARY_DIR}/build/lib/${CMAKE_SYSTEM_PROCESSOR}-${CMAKE_SYSTEM_VERSION} CACHE PATH "Single directory for all libraries" - ) - -SET (EXECUTABLE_OUTPUT_PATH - ${PROJECT_BINARY_DIR}/build/bin/${CMAKE_SYSTEM_PROCESSOR}-${CMAKE_SYSTEM_VERSION} CACHE PATH "Single directory for all executables" - ) - -MARK_AS_ADVANCED ( - LIBRARY_OUTPUT_PATH - EXECUTABLE_OUTPUT_PATH - ) - -INSTALL_FILES(/include/cantera/kernel FILES config.h) -INSTALL_FILES(/include/cantera FILES config.h) -ADD_SUBDIRECTORY (ext) -ADD_SUBDIRECTORY (Cantera) - -SET(CMAKE_INSTALL_PREFIX /Applications/Cantera ) -INSTALL_FILES ( /include/cantera .h ${CANTERA_CXX_HEADERS} ) diff --git a/Cantera/CMakeLists.txt b/Cantera/CMakeLists.txt deleted file mode 100644 index 82af06ff1..000000000 --- a/Cantera/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -#------------------------------------------------- -# Build the kernel -#------------------------------------------------- -add_subdirectory(src) - -#------------------------------------------------- -# Build clib -#------------------------------------------------- -add_subdirectory(clib) - -#------------------------------------------------- -# Build C++ user interface -#------------------------------------------------- -add_subdirectory(cxx) - - diff --git a/Cantera/cmake_install.cmake b/Cantera/cmake_install.cmake deleted file mode 100644 index 736794ad1..000000000 --- a/Cantera/cmake_install.cmake +++ /dev/null @@ -1,36 +0,0 @@ -# Install script for directory: /Users/dgg/dv/sf/cantera/Cantera - -# Set the install prefix -IF(NOT DEFINED CMAKE_INSTALL_PREFIX) - SET(CMAKE_INSTALL_PREFIX "/usr/local") -ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX) -STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -IF(NOT CMAKE_INSTALL_CONFIG_NAME) - IF(BUILD_TYPE) - STRING(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - ELSE(BUILD_TYPE) - SET(CMAKE_INSTALL_CONFIG_NAME "Debug") - ENDIF(BUILD_TYPE) - MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -ENDIF(NOT CMAKE_INSTALL_CONFIG_NAME) - -# Set the component getting installed. -IF(NOT CMAKE_INSTALL_COMPONENT) - IF(COMPONENT) - MESSAGE(STATUS "Install component: \"${COMPONENT}\"") - SET(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - ELSE(COMPONENT) - SET(CMAKE_INSTALL_COMPONENT) - ENDIF(COMPONENT) -ENDIF(NOT CMAKE_INSTALL_COMPONENT) - -IF(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for each subdirectory. - INCLUDE("/Users/dgg/dv/sf/cantera/Cantera/src/cmake_install.cmake") - INCLUDE("/Users/dgg/dv/sf/cantera/Cantera/clib/cmake_install.cmake") - INCLUDE("/Users/dgg/dv/sf/cantera/Cantera/cxx/cmake_install.cmake") - -ENDIF(NOT CMAKE_INSTALL_LOCAL_ONLY) diff --git a/Cantera/src/CMakeLists.txt b/Cantera/src/CMakeLists.txt deleted file mode 100644 index 814022fc2..000000000 --- a/Cantera/src/CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ -add_subdirectory(base) -add_subdirectory(thermo) -add_subdirectory(numerics) -add_subdirectory(kinetics) -add_subdirectory(transport) -add_subdirectory(equil) -add_subdirectory(spectra) - -add_subdirectory(oneD) -add_subdirectory(zeroD) - diff --git a/Cantera/src/base/CMakeLists.txt b/Cantera/src/base/CMakeLists.txt deleted file mode 100644 index 9e2b6d60d..000000000 --- a/Cantera/src/base/CMakeLists.txt +++ /dev/null @@ -1,12 +0,0 @@ - -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}) - -SET (CTBASE_SRCS misc.cpp ct2ctml.cpp ctml.cpp - plots.cpp stringUtils.cpp xml.cpp clockWC.cpp) -ADD_LIBRARY(ctbase ${CTBASE_SRCS}) - -SET (CTBASE_H global.h ctml.h - ct_defs.h ctexceptions.h logger.h XML_Writer.h - ctml.h plots.h stringUtils.h xml.h utilities.h - Array.h vec_functions.h global.h FactoryBase.h clockWC.h ) -INSTALL_FILES(/include/cantera/kernel FILES ${CTBASE_H}) diff --git a/Cantera/src/kinetics/CMakeLists.txt b/Cantera/src/kinetics/CMakeLists.txt deleted file mode 100644 index ef97e31a7..000000000 --- a/Cantera/src/kinetics/CMakeLists.txt +++ /dev/null @@ -1,22 +0,0 @@ -SET (KINETICS_SRCS importKinetics.cpp GRI_30_Kinetics.cpp KineticsFactory.cpp - GasKinetics.cpp FalloffFactory.cpp ReactionStoichMgr.cpp Kinetics.cpp - solveSP.cpp InterfaceKinetics.cpp ImplicitSurfChem.cpp Group.cpp - ReactionPath.cpp) - -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/base) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/thermo) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/numerics) - -ADD_LIBRARY(kinetics ${KINETICS_SRCS}) - -TARGET_LINK_LIBRARIES (kinetics numerics thermo ctbase) - -SET(KINETICS_H importKinetics.h GRI_30_Kinetics.h KineticsFactory.h - Kinetics.h GasKinetics.h - FalloffFactory.h ReactionStoichMgr.h reaction_defs.h - FalloffMgr.h ThirdBodyMgr.h RateCoeffMgr.h ReactionData.h - RxnRates.h Enhanced3BConc.h StoichManager.h solveSP.h InterfaceKinetics.h - ImplicitSurfChem.h EdgeKinetics.h Group.h ReactionPath.h) - -INSTALL_FILES(/cantera/kernel FILES ${KINETICS_H}) diff --git a/Cantera/src/kinetics/Kinetics.cpp b/Cantera/src/kinetics/Kinetics.cpp index c2338e1e1..4fd23f477 100644 --- a/Cantera/src/kinetics/Kinetics.cpp +++ b/Cantera/src/kinetics/Kinetics.cpp @@ -12,8 +12,6 @@ */ // Copyright 2001-2004 California Institute of Technology - - #include "InterfaceKinetics.h" #include "SurfPhase.h" diff --git a/Cantera/src/numerics/CMakeLists.txt b/Cantera/src/numerics/CMakeLists.txt deleted file mode 100644 index d7c452775..000000000 --- a/Cantera/src/numerics/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -SET (NUMERICS_SRCS DenseMatrix.cpp funcs.cpp Func1.cpp - ODE_integrators.cpp BandMatrix.cpp DAE_solvers.cpp - sort.cpp ) - -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/base) - -ADD_LIBRARY(numerics ${NUMERICS_SRCS}) - -TARGET_LINK_LIBRARIES (numerics ctbase cvode) - -SET(NUMERICS_H ArrayViewer.h CVodeInt.h CVodesIntegrator.h DenseMatrix.h - funcs.h ctlapack.h Func1.h FuncEval.h - polyfit.h - BandMatrix.h Integrator.h DAE_Solver.h ResidEval.h sort.h) -INSTALL_FILES( /include/cantera/kernel FILES ${NUMERICS_H}) diff --git a/Cantera/src/oneD/CMakeLists.txt b/Cantera/src/oneD/CMakeLists.txt deleted file mode 100644 index 63ed9d6ab..000000000 --- a/Cantera/src/oneD/CMakeLists.txt +++ /dev/null @@ -1,18 +0,0 @@ -SET (ONED_SRCS MultiJac.cpp MultiNewton.cpp newton_utils.cpp OneDim.cpp - StFlow.cpp boundaries1D.cpp refine.cpp Sim1D.cpp Domain1D.cpp ) - -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/base) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/thermo) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/numerics) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/kinetics) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/transport) - -ADD_LIBRARY(oneD ${ONED_SRCS} ) - -SET (ONED_H Inlet1D.h MultiJac.h Sim1D.h StFlow.h - Surf1D.h Domain1D.h MultiNewton.h OneDim.h - Resid1D.h Solid1D.h refine.h) - -INSTALL_FILES(/include/cantera/kernel FILES ${ONED_H}) - diff --git a/Cantera/src/spectra/CMakeLists.txt b/Cantera/src/spectra/CMakeLists.txt deleted file mode 100644 index 9b8a58746..000000000 --- a/Cantera/src/spectra/CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -SET (SPECTRA_SRCS rotor.cpp LineBroadener.cpp spectralUtilities.cpp) - -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/base) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/thermo) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/numerics) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/transport) - -ADD_LIBRARY(spectra ${SPECTRA_SRCS} ) - -SET (SPECTRA_H rotor.h LineBroadener.h Nuclei.h spectralUtilities.h) -INSTALL_FILES(/include/cantera/kernel FILES ${SPECTRA_H}) - diff --git a/Cantera/src/thermo/CMakeLists.txt b/Cantera/src/thermo/CMakeLists.txt deleted file mode 100644 index abd385e16..000000000 --- a/Cantera/src/thermo/CMakeLists.txt +++ /dev/null @@ -1,30 +0,0 @@ -SET (THERMO_SRCS State.cpp Elements.cpp Constituents.cpp Phase.cpp - ThermoPhase.cpp IdealGasPhase.cpp ConstDensityThermo.cpp - SpeciesThermoFactory.cpp ConstCpPoly.cpp Nasa9Poly1.cpp - Nasa9PolyMultiTempRegion.cpp - Mu0Poly.cpp GeneralSpeciesThermo.cpp SurfPhase.cpp - ThermoFactory.cpp phasereport.cpp SemiconductorPhase.cpp - StoichSubstance.cpp PureFluidPhase.cpp LatticeSolidPhase.cpp - LatticePhase.cpp) - -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/base) - -ADD_LIBRARY(thermo ${THERMO_SRCS}) - -TARGET_LINK_LIBRARIES (thermo ctbase) - -SET(THERMO_H State.h Elements.h Constituents.h Phase.h mix_defs.h - ThermoPhase.h IdealGasPhase.h ConstDensityThermo.h - SpeciesThermoFactory.h ThermoFactory.h - NasaPoly1.h NasaPoly2.h NasaThermo.h Nasa9Poly1.h - Nasa9PolyMultiTempRegion.h - ShomateThermo.h ShomatePoly.h ConstCpPoly.h - SimpleThermo.h SpeciesThermoMgr.h - SpeciesThermoInterpType.h - GeneralSpeciesThermo.h Mu0Poly.h - speciesThermoTypes.h SpeciesThermo.h SurfPhase.h - EdgePhase.h ) -# @phase_header_files@) - -INSTALL_FILES(/include/cantera/kernel FILES ${THERMO_H}) diff --git a/Cantera/src/transport/CMakeLists.txt b/Cantera/src/transport/CMakeLists.txt deleted file mode 100644 index cfe392c18..000000000 --- a/Cantera/src/transport/CMakeLists.txt +++ /dev/null @@ -1,18 +0,0 @@ -SET (TRANSPORT_SRCS TransportFactory.cpp MultiTransport.cpp MixTransport.cpp - MMCollisionInt.cpp SolidTransport.cpp DustyGasTransport.cpp) - -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/base) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/thermo) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/numerics) - -ADD_LIBRARY(transport ${TRANSPORT_SRCS}) - -TARGET_LINK_LIBRARIES (transport numerics thermo ctbase) - -SET (TRANSPORT_H TransportFactory.h MultiTransport.h MixTransport.h - MMCollisionInt.h SolidTransport.h DustyGasTransport.h - TransportBase.h L_matrix.h TransportParams.h ) -INSTALL_FILES(/include/cantera/kernel FILES ${TRANSPORT_H}) - - diff --git a/Cantera/src/zeroD/CMakeLists.txt b/Cantera/src/zeroD/CMakeLists.txt deleted file mode 100644 index b30aa2755..000000000 --- a/Cantera/src/zeroD/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -SET (ZEROD_SRCS Reactor.cpp ReactorBase.cpp FlowDevice.cpp Wall.cpp ReactorNet.cpp - FlowReactor.cpp ConstPressureReactor.cpp ReactorFactory.cpp ) - -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/base) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/thermo) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/numerics) -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/Cantera/src/kinetics) - -ADD_LIBRARY(zeroD ${ZEROD_SRCS} ) - -SET (ZEROD_H Reactor.h ReactorBase.h FlowDevice.h Wall.h ReactorNet.h - flowControllers.h Reservoir.h FlowReactor.h - ConstPressureReactor.h ReactorFactory.h ) -INSTALL_FILES(/include/cantera/kernel FILES ${ZEROD_H}) - diff --git a/License.rtf b/License.rtf deleted file mode 100755 index 1adaa3d95..000000000 --- a/License.rtf +++ /dev/null @@ -1,176 +0,0 @@ -{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff0\deff0\stshfdbch0\stshfloch0\stshfhich0\stshfbi0\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f34\fbidi \froman\fcharset1\fprq2{\*\panose 02040503050406030204}Cambria Math;} -{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\fhimajor\f31502\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria;}{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f39\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} -{\f40\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\f42\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f43\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f44\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\f45\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f46\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f47\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} -{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} -{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} -{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} -{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} -{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} -{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhimajor\f31528\fbidi \froman\fcharset238\fprq2 Cambria CE;}{\fhimajor\f31529\fbidi \froman\fcharset204\fprq2 Cambria Cyr;} -{\fhimajor\f31531\fbidi \froman\fcharset161\fprq2 Cambria Greek;}{\fhimajor\f31532\fbidi \froman\fcharset162\fprq2 Cambria Tur;}{\fhimajor\f31535\fbidi \froman\fcharset186\fprq2 Cambria Baltic;} -{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} -{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} -{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} -{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} -{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} -{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} -{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} -{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE;}{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;} -{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} -{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}} -{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0; -\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}{\*\defchp \fs22 }{\*\defpap \ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 } -\noqfpromote {\stylesheet{\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext0 \sqformat \spriority0 Normal;}{\* -\cs10 \additive \ssemihidden Default Paragraph Font;}{\* -\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa200\sl276\slmult1 -\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext11 \ssemihidden \sunhideused \sqformat Normal Table;}} -{\*\rsidtbl \rsid602915\rsid2033138\rsid8664322\rsid12135870}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info -{\title Copyright (c) 2001-2009, California Institute of Technology}{\author Dave Goodwin}{\operator Harry K. Moffat}{\creatim\yr2009\mo7\dy31\hr19\min41}{\revtim\yr2009\mo7\dy31\hr19\min41}{\version2}{\edmins6}{\nofpages1}{\nofwords256}{\nofchars1502} -{\*\company Caltech}{\nofcharsws1755}{\vern32771}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}}\paperw12240\paperh15840\margl1318\margr1318\margt1440\margb1440\gutter0\ltrsect -\widowctrl\ftnbj\aenddoc\trackmoves1\trackformatting1\donotembedsysfont0\relyonvml0\donotembedlingdata1\grfdocevents0\validatexml0\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors0\noxlattoyen -\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\hyphcaps0\horzdoc\dghspace120\dgvspace120\dghorigin1701\dgvorigin1984\dghshow0\dgvshow3\jcompress\viewkind1\viewscale100\nolnhtadjtbl\rsidroot8664322 \fet0{\*\wgrffmtfilter 2450}\ilfomacatclnup0\ltrpar -\sectd \ltrsect\linex0\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4 -\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (} -{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \ltrpar -\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid602915 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 \ltrch\fcs0 -\insrsid8664322\charrsid602915 -\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12135870 Copyright (c) 2001-2009}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid2033138\charrsid602915 , California Institute of Technology}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid602915 . }{\rtlch\fcs1 \af0 \ltrch\fcs0 -\insrsid2033138\charrsid602915 All rights reserved.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid2033138 -\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid602915 -\par }\pard \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12135870 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12135870 Copyright (c) 2009, Sandia Corporation. Under the terms of -Contract AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights to certain parts of this software. -\par All rights reserved. -\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12135870\charrsid602915 -\par }\pard \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid602915 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid2033138\charrsid602915 -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -\par -\par \u-4064\'3fRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -\par -\par Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -\par -\par \u-4064\'3fNeither the name of the California Institute of Technology}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12135870 , Sandia Corporation nor the names of other}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid2033138\charrsid602915 - contributors may be used to endorse or promote products derived from this software without specific prior written permission. -\par -\par THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND AN -Y EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDE -N -TAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STR -ICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -\par -\par -\par }{\*\themedata 504b030414000600080000002100828abc13fa0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb6ac3301045f785fe83d0b6d8 -72ba28a5d8cea249777d2cd20f18e4b12d6a8f843409c9df77ecb850ba082d74231062ce997b55ae8fe3a00e1893f354e9555e6885647de3a8abf4fbee29bbd7 -2a3150038327acf409935ed7d757e5ee14302999a654e99e393c18936c8f23a4dc072479697d1c81e51a3b13c07e4087e6b628ee8cf5c4489cf1c4d075f92a0b -44d7a07a83c82f308ac7b0a0f0fbf90c2480980b58abc733615aa2d210c2e02cb04430076a7ee833dfb6ce62e3ed7e14693e8317d8cd0433bf5c60f53fea2fe7 -065bd80facb647e9e25c7fc421fd2ddb526b2e9373fed4bb902e182e97b7b461e6bfad3f010000ffff0300504b030414000600080000002100a5d6a7e7c00000 -00360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4fc7060abb08 -84a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b63095120f88d94fbc -52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462a1a82fe353 -bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f7468656d652f7468 -656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b4b0d592c9c -070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b4757e8d3f7 -29e245eb2b260a0238fd010000ffff0300504b03041400060008000000210096b5ade296060000501b0000160000007468656d652f7468656d652f7468656d65 -312e786d6cec594f6fdb3614bf0fd87720746f6327761a07758ad8b19b2d4d1bc46e871e698996d850a240d2497d1bdae38001c3ba618715d86d87615b8116d8 -a5fb34d93a6c1dd0afb0475292c5585e9236d88aad3e2412f9e3fbff1e1fa9abd7eec70c1d1221294fda5efd72cd4324f1794093b0eddd1ef62fad79482a9c04 -98f184b4bd2991deb58df7dfbb8ad755446282607d22d771db8b944ad79796a40fc3585ee62949606ecc458c15bc8a702910f808e8c66c69b9565b5d8a314d3c -94e018c8de1a8fa94fd05093f43672e23d06af89927ac06762a049136785c10607758d9053d965021d62d6f6804fc08f86e4bef210c352c144dbab999fb7b471 -7509af678b985ab0b6b4ae6f7ed9ba6c4170b06c788a705430adf71bad2b5b057d03606a1ed7ebf5babd7a41cf00b0ef83a6569632cd467faddec9699640f671 -9e76b7d6ac355c7c89feca9cccad4ea7d36c65b258a206641f1b73f8b5da6a6373d9c11b90c537e7f08dce66b7bbeae00dc8e257e7f0fd2badd5868b37a088d1 -e4600ead1ddaef67d40bc898b3ed4af81ac0d76a197c86826828a24bb318f3442d8ab518dfe3a20f000d6458d104a9694ac6d88728eee2782428d60cf03ac1a5 -193be4cbb921cd0b495fd054b5bd0f530c1931a3f7eaf9f7af9e3f45c70f9e1d3ff8e9f8e1c3e3073f5a42ceaa6d9c84e5552fbffdeccfc71fa33f9e7ef3f2d1 -17d57859c6fffac327bffcfc793510d26726ce8b2f9ffcf6ecc98baf3efdfdbb4715f04d814765f890c644a29be408edf3181433567125272371be15c308d3f2 -8acd249438c19a4b05fd9e8a1cf4cd296699771c393ac4b5e01d01e5a30a787d72cf1178108989a2159c77a2d801ee72ce3a5c545a6147f32a99793849c26ae6 -6252c6ed637c58c5bb8b13c7bfbd490a75330f4b47f16e441c31f7184e140e494214d273fc80900aedee52ead87597fa824b3e56e82e451d4c2b4d32a423279a -668bb6690c7e9956e90cfe766cb37b077538abd27a8b1cba48c80acc2a841f12e698f13a9e281c57911ce298950d7e03aba84ac8c154f8655c4f2af074481847 -bd804859b5e696007d4b4edfc150b12addbecba6b18b148a1e54d1bc81392f23b7f84137c2715a851dd0242a633f900710a218ed715505dfe56e86e877f0034e -16bafb0e258ebb4faf06b769e888340b103d3311da9750aa9d0a1cd3e4efca31a3508f6d0c5c5c398602f8e2ebc71591f5b616e24dd893aa3261fb44f95d843b -5974bb5c04f4edafb95b7892ec1108f3f98de75dc97d5772bdff7cc95d94cf672db4b3da0a6557f70db629362d72bcb0431e53c6066acac80d699a6409fb44d0 -8741bdce9c0e4971624a2378cceaba830b05366b90e0ea23aaa241845368b0eb9e2612ca8c742851ca251ceccc70256d8d87265dd96361531f186c3d9058edf2 -c00eafe8e1fc5c509031bb4d680e9f39a3154de0accc56ae644441edd76156d7429d995bdd88664a9dc3ad50197c38af1a0c16d684060441db02565e85f3b966 -0d0713cc48a0ed6ef7dedc2dc60b17e92219e180643ed27acffba86e9c94c78ab90980d8a9f0913ee49d62b512b79626fb06dccee2a432bbc60276b9f7dec44b -7904cfbca4f3f6443ab2a49c9c2c41476dafd55c6e7ac8c769db1bc399161ee314bc2e75cf8759081743be1236ec4f4d6693e5336fb672c5dc24a8c33585b5fb -9cc24e1d4885545b58463634cc5416022cd19cacfccb4d30eb45296023fd35a458598360f8d7a4003bbaae25e331f155d9d9a5116d3bfb9a95523e51440ca2e0 -088dd844ec6370bf0e55d027a012ae264c45d02f708fa6ad6da6dce29c255df9f6cae0ec38666984b372ab5334cf640b37795cc860de4ae2816e95b21be5ceaf -8a49f90b52a51cc6ff3355f47e0237052b81f6800fd7b802239daf6d8f0b1571a8426944fdbe80c6c1d40e8816b88b8569082ab84c36ff0539d4ff6dce591a26 -ade1c0a7f669880485fd484582903d284b26fa4e2156cff62e4b9265844c4495c495a9157b440e091bea1ab8aaf7760f4510eaa69a6465c0e04ec69ffb9e65d0 -28d44d4e39df9c1a52ecbd3607fee9cec7263328e5d661d3d0e4f62f44acd855ed7ab33cdf7bcb8ae889599bd5c8b3029895b6825696f6af29c239b75a5bb1e6 -345e6ee6c28117e73586c1a2214ae1be07e93fb0ff51e133fb65426fa843be0fb515c187064d0cc206a2fa926d3c902e907670048d931db4c1a44959d366ad93 -b65abe595f70a75bf03d616c2dd959fc7d4e6317cd99cbcec9c58b34766661c7d6766ca1a9c1b327531486c6f941c638c67cd22a7f75e2a37be0e82db8df9f30 -254d30c1372581a1f51c983c80e4b71ccdd28dbf000000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468656d652f74 -68656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4350d363f24 -51eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d262452282e3198 -720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d9850528 -a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100828abc13fa0000001c0200001300000000000000000000000000 -000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b000000000000000000000000 -002b0100005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c00000000000000000000000000140200007468 -656d652f7468656d652f7468656d654d616e616765722e786d6c504b01022d001400060008000000210096b5ade296060000501b000016000000000000000000 -00000000d10200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b010000270000000000 -00000000000000009b0900007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000960a00000000} -{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d -617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 -6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 -656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} -{\*\latentstyles\lsdstimax267\lsdlockeddef0\lsdsemihiddendef1\lsdunhideuseddef1\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4; -\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9; -\lsdpriority39 \lsdlocked0 toc 1;\lsdpriority39 \lsdlocked0 toc 2;\lsdpriority39 \lsdlocked0 toc 3;\lsdpriority39 \lsdlocked0 toc 4;\lsdpriority39 \lsdlocked0 toc 5;\lsdpriority39 \lsdlocked0 toc 6;\lsdpriority39 \lsdlocked0 toc 7; -\lsdpriority39 \lsdlocked0 toc 8;\lsdpriority39 \lsdlocked0 toc 9;\lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdpriority1 \lsdlocked0 Default Paragraph Font; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority22 \lsdlocked0 Strong;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority59 \lsdlocked0 Table Grid;\lsdunhideused0 \lsdlocked0 Placeholder Text;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;\lsdunhideused0 \lsdlocked0 Revision; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdpriority37 \lsdlocked0 Bibliography;\lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;}}{\*\datastore 010500000200000018000000 -4d73786d6c322e534158584d4c5265616465722e352e3000000000000000000000060000 -d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffffec69d9888b8b3d4c859eaf6cd158be0f0000000000000000000000009083 -98404912ca01feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 -000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000105000000000000}} \ No newline at end of file diff --git a/config.cmake b/config.cmake deleted file mode 100755 index e29ab0219..000000000 --- a/config.cmake +++ /dev/null @@ -1,25 +0,0 @@ - -OPTION(CANTERA_BUILD_PYTHON_IFACE "Build the Python user interface?" ON) -OPTION(CANTERA_BUILD_CXX_IFACE "Build the C++ user interface?" ON) -OPTION(CANTERA_BUILD_F90_IFACE "Build the Fortran 90 user interface?" ON) -OPTION(CANTERA_BUILD_CXX_IFACE "Build the Matlab Toolbox?" OFF) -OPTION(CANTERA_BUILD_WITH_F2C "Use f2c versions of 3rd party numerical routines" OFF) - -OPTION (CANTERA_BUILD_LAPACK 0) -OPTION (CANTERA_HAVE_SUNDIALS 1) - -# SET(PYTHON_CMD ${PYTHON_EXE}) - -SET(CANTERA_VERSION "1.7.1") - -SET( WITH_PURE_FLUIDS 1 ) - -SET( WITH_LATTICE_SOLID 1 ) - -SET( WITH_METAL 1 ) - -SET( WITH_STOICH_SUBSTANCE 1 ) - -SET( WITH_IDEAL_SOLUTIONS 0 ) - -SET(WITH_ELECTROLYTES 0 ) diff --git a/config.h_cmake.in b/config.h_cmake.in deleted file mode 100644 index 17b681840..000000000 --- a/config.h_cmake.in +++ /dev/null @@ -1,140 +0,0 @@ -// -// Input file for CMAKE to generate config.h -// - - -#ifndef CT_CONFIG_H -#define CT_CONFIG_H - - -//------------------------ Development flags ------------------// -// -// Compile in additional debug printing where available. -// Note, the printing may need to be turned on via a switch. -// This just compiles in the code. -#cmakedefine DEBUG_MODE - -// define types doublereal, integer, and ftnlen to match the -// corresponding Fortran data types on your system. The defaults -// are OK for most systems - -typedef double doublereal; // Fortran double precision -typedef int integer; // Fortran integer -typedef int ftnlen; // Fortran hidden string length type - - -// Fortran compilers pass character strings in argument lists by -// adding a hidden argement with the length of the string. Some -// compilers add the hidden length argument immediately after the -// CHARACTER variable being passed, while others put all of the hidden -// length arguments at the end of the argument list. Define this if -// the lengths are at the end of the argument list. This is usually the -// case for most unix Fortran compilers, but is (by default) false for -// Visual Fortran under Windows. -#cmakedefine STRING_LEN_AT_END - - -// Define this if Fortran adds a trailing underscore to names in object files. -// For linux and most unix systems, this is the case. -#cmakedefine FTN_TRAILING_UNDERSCORE - - -#cmakedefine HAS_SUNDIALS -#cmakedefine SUNDIALS_VERSION_22 -#cmakedefine SUNDIALS_VERSION_23 - -//-------- LAPACK / BLAS --------- - -#define LAPACK_FTN_STRING_LEN_AT_END -#define LAPACK_NAMES_LOWERCASE -#define LAPACK_FTN_TRAILING_UNDERSCORE - - -//--------- operating system -------------------------------------- - -// The configure script defines this if the operatiing system is Mac -// OS X, This used to add some Mac-specific directories to the default -// data file search path. -#cmakedefine DARWIN -#cmakedefine HAS_SSTREAM - -// Cantera version -#define CANTERA_VERSION "@CANTERA_VERSION@" - -// Identify whether the operating system is cygwin's overlay of -// windows, with gcc being used as the compiler. -#cmakedefine CYGWIN - -// Identify whether the operating system is windows based, with -// microsoft vc++ being used as the compiler -#cmakedefine WINMSVC - -//--------- Fonts for reaction path diagrams ---------------------- -#define RXNPATH_FONT Helvetica - -//--------------------- Python ------------------------------------ -// This path to the python executable is created during -// Cantera's setup. It identifies the python executable -// used to run Python to process .cti files. Note that this is only -// used if environment variable PYTHON_CMD is not set. -#define PYTHON_EXE "@PYTHON_EXE@" - -// If this is defined, the Cantera Python interface will use the -// Numeric package; otherwise, it will use numarray. -#cmakedefine HAS_NUMERIC - -// If this is defined, then python will not be assumed to be -// present to support conversions -#cmakedefine HAS_NO_PYTHON - -//--------------------- Cantera ----------------------------------- -// This is the data pathway used to locate the top of the -// build directory. -#cmakedefine CANTERA_ROOT - -// This data pathway is used to locate a directory where datafiles -// are to be found. Note, the local directory is always searched -// as well. -#cmakedefine CANTERA_DATA - - -#cmakedefine WITH_HTML_LOGS - -// define STORE_MOLE_FRACTIONS if you want Cantera to internally -// represent the composition of a mixture as mole fractions. Usually -// the best choice. -#define STORE_MOLE_FRACTIONS - -// define STORE_MASS_FRACTIONS if you want Cantera to internally -// represent the composition of a mixture as mass fractions. Usually -// results in slightly worse performance, but may not in all cases. -//#define STORE_MASS_FRACTIONS -#cmakedefine STORE_MASS_FRACTIONS - -//--------------------- compile options ---------------------------- -#cmakedefine USE_PCH - -#cmakedefine THREAD_SAFE_CANTERA - -//--------------------- optional phase models ---------------------- -// This define indicates the enabling of the inclusion of -// accurate liquid/vapor equations -// of state for several fluids, including water, nitrogen, hydrogen, -// oxygen, methane, andd HFC-134a. -#cmakedefine INCL_PURE_FLUIDS -#cmakedefine WITH_PURE_FLUIDS - -#cmakedefine WITH_LATTICE_SOLID -#cmakedefine WITH_METAL -#cmakedefine WITH_STOICH_SUBSTANCE -// Enable expanded thermodynamic capabilities, adding -// ideal solid solutions -#cmakedefine WITH_IDEAL_SOLUTIONS -// Enable expanded electrochemistry capabilities, include thermo -// models for electrolyte solutions. -#cmakedefine WITH_ELECTROLYTES - -#cmakedefine WITH_PRIME - - -#endif diff --git a/config_cantera.cmake b/config_cantera.cmake deleted file mode 100644 index 075d86bc3..000000000 --- a/config_cantera.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -OPTION(BUILD_PYTHON_PACKAGE "Build the Python user interface?" ON) -OPTION(BUILD_CXX_INTERFACE "Build the C++ user interface?" ON) -OPTION(BUILD_F90_INTERFACE "Build the Fortran 90 user interface?" ON) -OPTION(BUILD_MATLAB_TOOLBOX "Build the Matlab Toolbox?" OFF) - -OPTION(CANTERA_BUILD_WITH_F2C "Use f2c versions of 3rd party numerical routines" ON) - -OPTION (BUILD_LAPACK "Build the lapack library?" 1) -OPTION (HAVE_SUNDIALS "Use Sundials from LLNL?" 0) - -# SET(PYTHON_CMD ${PYTHON_EXE}) - -SET(CANTERA_VERSION "1.7.2") - - -SET( WITH_PURE_FLUIDS 1 ) -SET( WITH_LATTICE_SOLID 1 ) -SET( WITH_METAL 1 ) -SET( WITH_STOICH_SUBSTANCE 1 ) -SET( WITH_IDEAL_SOLUTIONS 0 ) -SET(WITH_ELECTROLYTES 0 ) diff --git a/winconfig.h b/winconfig.h deleted file mode 100644 index f0afd2e8e..000000000 --- a/winconfig.h +++ /dev/null @@ -1,192 +0,0 @@ -/* config.h. Generated from config.h.in by configure. */ -// -// Run the 'preconfig' script to generate 'config.h' from this input file. -// -#ifndef CT_CONFIG_H -#define CT_CONFIG_H - - -//---------------------------- Version Flags ------------------// -// Cantera version -> this will be a double-quoted string value -// refering to branch number within svn -#define CANTERA_VERSION "1.8.x" - -// Integer for major number of Cantera -#define CANTERA_VERSION_MAJORNUMBER 18 -// Flag indicating it's part of major version 18 -#define CANTERA_VERSION_18 1 -// Flag indicating it's a development version -#define CANTERA_VERSION_18_XXX 1 - - -//------------------------ Development flags ------------------// -// -// Compile in additional debug printing where available. -// Note, the printing may need to be turned on via a switch. -// This just compiles in the code. -/* #undef DEBUG_MODE */ - -// Compiling with PURIFY instrumentation -/* #undef PURIFY_MODE */ - -//------------------------ Fortran settings -------------------// - - -// define types doublereal, integer, and ftnlen to match the -// corresponding Fortran data types on your system. The defaults -// are OK for most systems - -typedef double doublereal; // Fortran double precision -typedef int integer; // Fortran integer -typedef int ftnlen; // Fortran hidden string length type - - - -// Fortran compilers pass character strings in argument lists by -// adding a hidden argement with the length of the string. Some -// compilers add the hidden length argument immediately after the -// CHARACTER variable being passed, while others put all of the hidden -// length arguments at the end of the argument list. Define this if -// the lengths are at the end of the argument list. This is usually the -// case for most unix Fortran compilers, but is (by default) false for -// Visual Fortran under Windows. -#define STRING_LEN_AT_END - - -// Define this if Fortran adds a trailing underscore to names in object files. -// For linux and most unix systems, this is the case. -#define FTN_TRAILING_UNDERSCORE 1 - - -#define HAS_SUNDIALS 1 -/* #undef SUNDIALS_VERSION_22 */ -#define SUNDIALS_VERSION_23 1 - -//-------- LAPACK / BLAS --------- - -#define LAPACK_FTN_STRING_LEN_AT_END 1 -#define LAPACK_NAMES_LOWERCASE 1 -#define LAPACK_FTN_TRAILING_UNDERSCORE 1 - - -//--------- operating system -------------------------------------- - -// The configure script defines this if the operatiing system is Mac -// OS X, This used to add some Mac-specific directories to the default -// data file search path. -/* #undef DARWIN */ -#define HAS_SSTREAM 1 - - -// Identify whether the operating system is cygwin's overlay of -// windows, with gcc being used as the compiler. -/* #undef CYGWIN */ - -// Identify whether the operating system is windows based, with -// microsoft vc++ being used as the compiler -#define WINMSVC 1 - -// Identify whether the operating system is solaris -// with a native compiler -/* #undef SOLARIS */ - -//--------- Fonts for reaction path diagrams ---------------------- -#define RXNPATH_FONT "Helvetica" - -//---------- C++ Compiler Variations ------------------------------ - -// This define is needed to account for the variability for how -// static variables in templated classes are defined. Right now -// this is only turned on for the SunPro compiler on solaris. -// in that system , you need to declare the static storage variable. -// with the following line in the include file -// -// template Cabinet* Cabinet::__storage; -// -// Note, on other systems that declaration is treated as a definition -// and this leads to multiple defines at link time -/* #undef NEEDS_GENERIC_TEMPL_STATIC_DECL */ - -//--------------------- Python ------------------------------------ -// This path to the python executable is created during -// Cantera's setup. It identifies the python executable -// used to run Python to process .cti files. Note that this is only -// used if environment variable PYTHON_CMD is not set. -#define PYTHON_EXE "c:/python26/python.exe" - -// If this is defined, the Cantera Python interface will use the -// Numeric package -/* #undef HAS_NUMERIC */ - -// If this is defined, the Cantera Python interface will use the -// numarray package -/* #undef HAS_NUMARRAY */ - -// If this is defined, the Cantera Python interface will use the -// numpy package -#define HAS_NUMPY 1 - -// If this is defined, then python will not be assumed to be -// present to support conversions -/* #undef HAS_NO_PYTHON */ - -//--------------------- Cantera ----------------------------------- -// This is the data pathway used to locate the top of the -// build directory. -/* #undef CANTERA_ROOT */ - -// This data pathway is used to locate a directory where datafiles -// are to be found. Note, the local directory is always searched -// as well. -#define CANTERA_DATA "C:/cygwin/usr/local/cantera/data" - - -#define WITH_HTML_LOGS 1 - -// define STORE_MOLE_FRACTIONS if you want Cantera to internally -// represent the composition of a mixture as mole fractions. Usually -// the best choice. -#define STORE_MOLE_FRACTIONS - -// define STORE_MASS_FRACTIONS if you want Cantera to internally -// represent the composition of a mixture as mass fractions. Usually -// results in slightly worse performance, but may not in all cases. -//#define STORE_MASS_FRACTIONS -/* #undef STORE_MASS_FRACTIONS */ - -//--------------------- compile options ---------------------------- -/* #undef USE_PCH */ - -/* #undef THREAD_SAFE_CANTERA */ - -//--------------------- optional phase models ---------------------- -// This define indicates the enabling of the inclusion of -// accurate liquid/vapor equations -// of state for several fluids, including water, nitrogen, hydrogen, -// oxygen, methane, andd HFC-134a. -#define INCL_PURE_FLUIDS 1 -#define WITH_PURE_FLUIDS 1 - -#define WITH_LATTICE_SOLID 1 -#define WITH_METAL 1 -#define WITH_STOICH_SUBSTANCE 1 -// Enable expanded thermodynamic capabilities, adding -// ideal solid solutions -#define WITH_IDEAL_SOLUTIONS 1 -// Enable expanded electrochemistry capabilities, include thermo -// models for electrolyte solutions. -#define WITH_ELECTROLYTES 1 - -/* #undef WITH_PRIME */ - -// Enable the VCS NonIdeal equilibrium solver. This is -// accessed by specifying the solver=2 option -#define WITH_VCSNONIDEAL 1 - -//-------------- Optional Cantera Capabilities ---------------------- - -// Enable sensitivity analysis via changing H298 directly -// for species -/* #undef H298MODIFY_CAPABILITY */ - -#endif From 19b4ae4ecd53ff2c8ee01df84e64947c6bb881b0 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 20 Dec 2011 06:40:43 +0000 Subject: [PATCH 033/124] [cantera]: adding more doxygen pages to be snarfed during doc build --- doxygen/cantera.dox | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/doxygen/cantera.dox b/doxygen/cantera.dox index e6fc49b8f..7ccb04da6 100644 --- a/doxygen/cantera.dox +++ b/doxygen/cantera.dox @@ -568,7 +568,44 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = Cantera/src/kinetics/Kinetics.h \ +INPUT = Cantera/src/kinetics/Kinetics.h \ + Cantera/src/base/Array.h \ + Cantera/src/base/config.h \ + Cantera/src/base/clockWC.h \ + Cantera/src/base/ctexceptions.h \ + Cantera/src/base/ct_defs.h \ + Cantera/src/base/ctml.h \ + Cantera/src/base/FactoryBase.h \ + Cantera/src/base/global.h \ + Cantera/src/base/logger.h \ + Cantera/src/base/LogPrintCtrl.h \ + Cantera/src/base/mpd_allo.h \ + Cantera/src/base/plots.h \ + Cantera/src/base/PrintCtrl.h \ + Cantera/src/base/stringUtils.h \ + Cantera/src/base/units.h \ + Cantera/src/base/utilities.h \ + Cantera/src/base/vec_functions.h \ + Cantera/src/base/xml.h \ + Cantera/src/base/XML_Writer.h \ + Cantera/src/converters/ck2ct.h \ + Cantera/src/converters/CKParser.h \ + Cantera/src/converters/CKReader.h \ + Cantera/src/converters/Constituent.h \ + Cantera/src/converters/Reaction.h \ + Cantera/src/converters/Species.h \ + Cantera/src/converters/writelog.h \ + Cantera/src/converters/ck2ctml.h \ + Cantera/src/converters/ckr_defs.h \ + Cantera/src/converters/ckr_utils.h \ + Cantera/src/converters/Element.h \ + Cantera/src/converters/RxnSpecies.h \ + Cantera/src/converters/thermoFunctions.h \ + Cantera/src/equil/MultiPhase.h \ + Cantera/src/equil/PropertyCalculator.h \ + Cantera/src/equil/ChemEquil.h \ + Cantera/src/numerics/polyfit.h \ + Cantera/src/kinetics/Kinetics.h \ $(SRCDIR)/doxygen/cantera.page \ $(SRCDIR)/doxygen/fortran_interface.page \ $(SRCDIR)/doxygen/txt_common/acknowledgment.page \ From 374d43d697418c257cacdbf4c2db29e566f3f154 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 20 Dec 2011 06:45:06 +0000 Subject: [PATCH 034/124] [cantera+autotools]: removing preconfigure scripts from documentation directory --- docs/README.txt | 38 ---- .../cygwin_gcc344_dbg_f2c_numeric.sh | 164 ----------------- .../cygwin_gcc344_dbg_f2c_numpy.sh | 167 ------------------ .../cygwin_gcc434_dbg_f2c_numpy.sh | 167 ------------------ .../linux_32_gcc343_dbg_python235_numeric | 138 --------------- .../linux_32_gcc343_opt_python235_numeric | 138 --------------- .../linux_64_gcc424_dbg_python252_numpy | 113 ------------ .../linux_64_gcc424_dbg_python264_numpy | 112 ------------ .../linux_64_gcc424_opt_python252_numpy | 111 ------------ .../mac_gcc401_python251_numpy | 106 ----------- .../sol10_64bit_CC57_dbg_py24_numarray | 141 --------------- .../sol10_64bit_CC57_opt_py24_numarray | 141 --------------- docs/install_examples/test_base | 113 ------------ 13 files changed, 1649 deletions(-) delete mode 100644 docs/README.txt delete mode 100755 docs/install_examples/cygwin_gcc344_dbg_f2c_numeric.sh delete mode 100755 docs/install_examples/cygwin_gcc344_dbg_f2c_numpy.sh delete mode 100755 docs/install_examples/cygwin_gcc434_dbg_f2c_numpy.sh delete mode 100755 docs/install_examples/linux_32_gcc343_dbg_python235_numeric delete mode 100755 docs/install_examples/linux_32_gcc343_opt_python235_numeric delete mode 100755 docs/install_examples/linux_64_gcc424_dbg_python252_numpy delete mode 100755 docs/install_examples/linux_64_gcc424_dbg_python264_numpy delete mode 100755 docs/install_examples/linux_64_gcc424_opt_python252_numpy delete mode 100755 docs/install_examples/mac_gcc401_python251_numpy delete mode 100755 docs/install_examples/sol10_64bit_CC57_dbg_py24_numarray delete mode 100755 docs/install_examples/sol10_64bit_CC57_opt_py24_numarray delete mode 100755 docs/install_examples/test_base diff --git a/docs/README.txt b/docs/README.txt deleted file mode 100644 index 5a8b00867..000000000 --- a/docs/README.txt +++ /dev/null @@ -1,38 +0,0 @@ -README.txt (docs directory) - - -Contents of the Directory -------------------------------- - - - 1 install_examples directory - -------------------------------- - - The install_examples directory contains various successful compilation environments that - Cantera has been tested out on. These files are "pre-preconfig files". In other words - these are shell scripts that are executed before Cantera's main preconfig script is run. - - In order to use these scripts, you should copy them to the top directory of the Cantera - distribution. Then, most of the scripts will still need some editing to specify path - information and locations of the installation directory. - Then, you can then execute the scripts to create the Makefiles in the distribution. - A typical successful session of making the distribution, testing it, and then running - the small test problem section would consist of the following commands: - - - - Install a python math package (either numeric, numarray, or numpy) - - Install sundials or choose vode within Cantera - autoconf - script_prepreconfig.sh - make - make install - cd test_problems - make - make test - - - You can then go to the installation directories and test your Cantera installations - further. - - - diff --git a/docs/install_examples/cygwin_gcc344_dbg_f2c_numeric.sh b/docs/install_examples/cygwin_gcc344_dbg_f2c_numeric.sh deleted file mode 100755 index 9c4450748..000000000 --- a/docs/install_examples/cygwin_gcc344_dbg_f2c_numeric.sh +++ /dev/null @@ -1,164 +0,0 @@ -#!/bin/sh -# ------------------------------------------------------------------------------ -# -# Example Cantera pre-preconfig configuration script -# 10/20/09 -# -# Platform: cygwin -# Compiler: gcc v. 3.4.4 -# Optimization: Debug version -# python: v. 2.5.2 (full installation) -# matlab: no -# f2c: yes -# num python numeric -# -# -# --------------------------------------------------------------------------- -# The only place where the User must custimize this installation -# is located at the top here: -# -# Specify the installation directory here: -# -Cantera_Install_Dir='/cygdrive/c/cygwin_env/arch/cygwin/cantera-1.8_develop' -# -# Specify the Sundials installation directory here (leave it as a null script -# if you don't want to link sundials in -# -# Sundials_Home='' -Sundials_Home='/cygdrive/c/cygwin_env/arch/cygwin/sundials-2.3.0_dbg' -# -# Specify the Sundials version number (either 2.2, 2.3, or 2.4) -Sundials_Version='2.3' -# Sundials_Version=2.4' -# ----------------------------------------------------------------------------- -# -# User may optionally customize below this line (but doesn't have to) -- -# -CANTERA_CONFIG_PREFIX=$Cantera_Install_Dir -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/bin/python -export PYTHON_CMD - -# -# The full python package works within cygwin. Minimal is needed at the least -# -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -# -# Matlab on the pc is supported through the windows vc++ 8.0 compilation -# environment -# -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX - -NUMARRAY_HOME='' -export NUMARRAY_HOME -# -# Turns on extra debugging -# -DEBUG_MODE='y' -export DEBUG_MODE -# -# Numeric must have already been installed in the -# /usr/lib/python2.5/site-packages -# directory before the Cantera installation. If not, you can always -# do a minimal python installation and forego forming Cantera's python interface. -# -USE_NUMERIC="y" -export USE_NUMERIC -# -# We use F2C with the cygwin installation. However, the g77 interface should -# work too. -# -BUILD_WITH_F2C="y" -export BUILD_WITH_F2C - -BITCOMPILE="32" -export BITCOMPILE -# -# We use the default gcc compilers that come with cygwin. Currently, this -# is gcc v. 3.4.4. -# -CXX='g++' -export CXX -# -CC='gcc' -export CC -# -F77='g77' -export F77 -# -# Debug options -# -# -DDEBUG_HKM -# -DDEBUG_BASISOPTIMIZE -# -DDEBUG_CHEMEQUIL -# -CXXFLAGS="-g -Wall " -export CXXFLAGS - -CFLAGS=$CXXFLAGS -export CFLAGS - -FFLAGS="-g " -export FFLAGS - -LDFLAGS='-g' -export LDFLAGS - -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS - -# The gcc compiler in cygwin will put a .exe extension on anyway. So, -# we might as well define this field as .exe. cygwin will automagically -# equate executable files with no extension as having an .exe extension. -# This is very mysterious. However, the mystery goes away if you define -# these files to have a .exe suffix from the getgo. -EXE_EXT=".exe" -export EXE_EXT - -EXTRA_LINK="" -export EXTRA_LINK - -MAKE=make -export MAKE -# -# Specify the SUNDIALS option -# -if test -n "$Sundials_Home" -then - USE_SUNDIALS='y' - SUNDIALS_VERSION=$Sundials_Version -else - USE_SUNDIALS='n' -fi -export USE_SUNDIALS -export SUNDIALS_VERSION -# -# Specify where to find the sundials installation directories -# -SUNDIALS_HOME=$Sundials_Home -export SUNDIALS_HOME -# -# Ok, fire off the main preconfig script -# -./preconfig - diff --git a/docs/install_examples/cygwin_gcc344_dbg_f2c_numpy.sh b/docs/install_examples/cygwin_gcc344_dbg_f2c_numpy.sh deleted file mode 100755 index b00277856..000000000 --- a/docs/install_examples/cygwin_gcc344_dbg_f2c_numpy.sh +++ /dev/null @@ -1,167 +0,0 @@ -#!/bin/sh -# ------------------------------------------------------------------------------ -# -# Example Cantera pre-preconfig configuration script -# 10/20/09 -# -# Platform: cygwin -# Compiler: gcc v. 3.4.4 -# Optimization: Debug version -# python: v. 2.5.2 (full installation) -# matlab: no -# f2c: yes -# num python: numpy, which is distributed with cygwin -# -# -# --------------------------------------------------------------------------- -# The only place where the User must custimize this installation -# is located at the top here: -# -# Specify the installation directory here: -# -Cantera_Install_Dir='/cygdrive/c/cygwin_env/arch/cygwin/cantera-1.8_develop' -# -# Specify the Sundials installation directory here (leave it as a null script -# if you don't want to link sundials in -# -# Sundials_Home='' -Sundials_Home='/cygdrive/c/cygwin_env/arch/cygwin/sundials-2.3.0_dbg' -# -# Specify the Sundials version number (either 2.2, 2.3, or 2.4) -Sundials_Version='2.3' -# Sundials_Version=2.4' -# ----------------------------------------------------------------------------- -# -CANTERA_CONFIG_PREFIX=$Cantera_Install_Dir -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/bin/python -export PYTHON_CMD - -# -# The full python package works within cygwin. Minimal is needed at the least -# -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -# -# Matlab on the pc is supported through the windows vc++ 8.0 compilation -# environment. Therefore, we turn it off here. -# -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX - -NUMARRAY_HOME='' -export NUMARRAY_HOME -# -# Turns on extra debugging -# -DEBUG_MODE='y' -export DEBUG_MODE -# -# Numpy must have already been installed in the -# /usr/lib/python2.5/site-packages -# directory before the Cantera installation. If not, you can always -# do a minimal python installation and forego forming Cantera's python interface. -# -USE_NUMPY="y" -export USE_NUMPY -# -# Specify where to find the include files within the numpy distribution -# -NUMPY_INC_DIR="/usr/lib/python2.5/site-packages/numpy/core/include" -export NUMPY_INC_DIR -# -# We use F2C with the cygwin installation. However, the g77 interface should -# work too. -# -BUILD_WITH_F2C="y" -export BUILD_WITH_F2C - -BITCOMPILE="32" -export BITCOMPILE -# -# We use the default gcc compilers that come with cygwin. Currently, this -# is gcc v. 3.4.4. -# -CXX='g++' -export CXX -# -CC='gcc' -export CC -# -F77='g77' -export F77 -# -# Debug options -# -# -DDEBUG_HKM -# -DDEBUG_BASISOPTIMIZE -# -DDEBUG_CHEMEQUIL -# -CXXFLAGS="-g -Wall " -export CXXFLAGS - -CFLAGS=$CXXFLAGS -export CFLAGS - -FFLAGS="-g " -export FFLAGS - -LDFLAGS='-g' -export LDFLAGS - -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS - -# The gcc compiler in cygwin will put a .exe extension on anyway. So, -# we might as well define this field as .exe. cygwin will automagically -# equate executable files with no extension as having an .exe extension. -# This is very mysterious. However, the mystery goes away if you define -# these files to have a .exe suffix from the getgo. -EXE_EXT=".exe" -export EXE_EXT - -EXTRA_LINK="" -export EXTRA_LINK - -MAKE=make -export MAKE -# -# Specify the SUNDIALS option -# -if test -n "$Sundials_Home" -then - USE_SUNDIALS='y' - SUNDIALS_VERSION=$Sundials_Version -else - USE_SUNDIALS='n' -fi -export USE_SUNDIALS -export SUNDIALS_VERSION -# -# Specify where to find the sundials installation directories -# -SUNDIALS_HOME=$Sundials_Home -export SUNDIALS_HOME -# -# Ok, fire off the main preconfig script -# -./preconfig - diff --git a/docs/install_examples/cygwin_gcc434_dbg_f2c_numpy.sh b/docs/install_examples/cygwin_gcc434_dbg_f2c_numpy.sh deleted file mode 100755 index 3fe470105..000000000 --- a/docs/install_examples/cygwin_gcc434_dbg_f2c_numpy.sh +++ /dev/null @@ -1,167 +0,0 @@ -#!/bin/sh -# ------------------------------------------------------------------------------ -# -# Example Cantera pre-preconfig configuration script -# 10/20/09 -# -# Platform: CYGWIN_NT-5.1 1.7.1(0.218/5/3) -# Compiler: gcc v. 4.3.4 -# Optimization: Debug version -# python: v. 2.5.2 (full installation) -# matlab: no -# f2c: yes -# num python: numpy, which is distributed with cygwin -# -# -# --------------------------------------------------------------------------- -# The only place where the User must custimize this installation -# is located at the top here: -# -# Specify the installation directory here: -# -Cantera_Install_Dir='/cygdrive/c/cygwin_env/arch/cygwin/cantera-1.8.0' -# -# Specify the Sundials installation directory here (leave it as a null script -# if you don't want to link sundials in -# -# Sundials_Home='' -Sundials_Home='/cygdrive/c/cygwin_env/arch/cygwin/sundials-2.3.0_dbg' -# -# Specify the Sundials version number (either 2.2, 2.3, or 2.4) -Sundials_Version='2.3' -# Sundials_Version=2.4' -# ----------------------------------------------------------------------------- -# -CANTERA_CONFIG_PREFIX=$Cantera_Install_Dir -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/bin/python -export PYTHON_CMD - -# -# The full python package works within cygwin. Minimal is needed at the least -# -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -# -# Matlab on the pc is supported through the windows vc++ 8.0 compilation -# environment. Therefore, we turn it off here. -# -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX - -NUMARRAY_HOME='' -export NUMARRAY_HOME -# -# Turns on extra debugging -# -DEBUG_MODE='y' -export DEBUG_MODE -# -# Numpy must have already been installed in the -# /usr/lib/python2.5/site-packages -# directory before the Cantera installation. If not, you can always -# do a minimal python installation and forego forming Cantera's python interface. -# -USE_NUMPY="y" -export USE_NUMPY -# -# Specify where to find the include files within the numpy distribution -# -NUMPY_INC_DIR="/usr/lib/python2.5/site-packages/numpy/core/include" -export NUMPY_INC_DIR -# -# We use F2C with the cygwin installation. However, the g77 interface should -# work too. -# -BUILD_WITH_F2C="y" -export BUILD_WITH_F2C - -BITCOMPILE="32" -export BITCOMPILE -# -# We use the default gcc compilers that come with cygwin. Currently, this -# is gcc v. 3.4.4. -# -CXX='g++' -export CXX -# -CC='gcc' -export CC -# -F77='g77' -export F77 -# -# Debug options -# -# -DDEBUG_HKM -# -DDEBUG_BASISOPTIMIZE -# -DDEBUG_CHEMEQUIL -# -CXXFLAGS="-g -Wall " -export CXXFLAGS - -CFLAGS=$CXXFLAGS -export CFLAGS - -FFLAGS="-g " -export FFLAGS - -LDFLAGS='-g' -export LDFLAGS - -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS - -# The gcc compiler in cygwin will put a .exe extension on anyway. So, -# we might as well define this field as .exe. cygwin will automagically -# equate executable files with no extension as having an .exe extension. -# This is very mysterious. However, the mystery goes away if you define -# these files to have a .exe suffix from the getgo. -EXE_EXT=".exe" -export EXE_EXT - -EXTRA_LINK="" -export EXTRA_LINK - -MAKE=make -export MAKE -# -# Specify the SUNDIALS option -# -if test -n "$Sundials_Home" -then - USE_SUNDIALS='y' - SUNDIALS_VERSION=$Sundials_Version -else - USE_SUNDIALS='n' -fi -export USE_SUNDIALS -export SUNDIALS_VERSION -# -# Specify where to find the sundials installation directories -# -SUNDIALS_HOME=$Sundials_Home -export SUNDIALS_HOME -# -# Ok, fire off the main preconfig script -# -./preconfig - diff --git a/docs/install_examples/linux_32_gcc343_dbg_python235_numeric b/docs/install_examples/linux_32_gcc343_dbg_python235_numeric deleted file mode 100755 index 73e6695a2..000000000 --- a/docs/install_examples/linux_32_gcc343_dbg_python235_numeric +++ /dev/null @@ -1,138 +0,0 @@ -#!/bin/sh -# -# -CANTERA_CONFIG_PREFIX=${HOME}/arch/linux/cantera-1.7_develop -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/local/python/2.3.5/bin/python -#PYTHON_CMD=/usr/local/python/2.5.2/bin/python -export PYTHON_CMD - -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -WITH_ADSORBATE="n" -export WITH_ADSORBATE - -DEBUG_MODE='y' -export DEBUG_MODE - -# Note, MATLAB must be built 64 bit on linux. -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX - -MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab" -export MATLAB_CMD - -BUILD_F90_INTERFACE="y" -export BUILD_F90_INTERFACE - -BUILD_THREAD_SAFE="n" -export BUILD_THREAD_SAFE - -BOOST_INC_DIR=${HOME}/arch/linux/boost/include/boost-1_34_1 -export BOOST_INC_DIR - -BOOST_LIB_DIR=${HOME}/arch/linux/boost/lib -export BOOST_LIB_DIR - -BOOST_THREAD_LIB=boost_thread-gcc34-mt -export BOOST_THREAD_LIB - -NUMARRAY_HOME='' -export NUMARRAY_HOME - -GRAPHVIZDIR=${HOME}'/arch/linux/bin' -export GRAPHVIZDIR - -# -# Only Numeric is installed in the /usr/local/python/2.3.5/lib/python2.3/site-packages -# directory currently. -# -USE_NUMERIC="y" -export USE_NUMERIC - -#USE_NUMPY="y" -#export USE_NUMPY - -BUILD_WITH_F2C="n" -export BUILD_WITH_F2C - -BITCOMPILE="32" -export BITCOMPILE - -do_purify=0 -if test "$do_purify" = 1 -then - PURIFY='purify' - CC='gcc -m32 -Wa,--32' - CXX='g++ -m32 -Wa,--32' - F77='g77 -m32 -Wa,--32' -else - CXX='mpiCC' - CC='mpicc' - F77='mpif77' -fi - -export CXX -export CC -export F77 -export PURIFY - -AFLAGS="-g -m32 -Wa,--32" -export AFLAGS - -CFLAGS="-g -m32 -Wa,--32 -Wall" -export CFLAGS - -WITH_H298MODIFY_CAPABILITY="y" -export WITH_H298MODIFY_CAPABILITY - -# -# -DDEBUG_BASISOPTIMIZE -# -DDEBUG_CHEMEQUIL -# -DDEBUG_HKM -# -DH298MODIFY_CAPABILITY -# -CXXFLAGS="-g -m32 -Wa,--32 -Wall -DDEBUG_HKM " -export CXXFLAGS - -FFLAGS="-g -m32 -Wa,--32 -DDEBUG_HKM" -export FFLAGS - -LDFLAGS='-m32 -Wa,--32' -export LDFLAGS - -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS - -EXTRA_LINK="-m32 -Wa,--32" -export EXTRA_LINK - -MAKE=gmake -export MAKE -# -# This is sundials 2.3 -# -USE_SUNDIALS='y' -export USE_SUNDIALS -SUNDIALS_HOME=${HOME}'/arch/linux/sundials' -export SUNDIALS_HOME - -./preconfig diff --git a/docs/install_examples/linux_32_gcc343_opt_python235_numeric b/docs/install_examples/linux_32_gcc343_opt_python235_numeric deleted file mode 100755 index 225b89055..000000000 --- a/docs/install_examples/linux_32_gcc343_opt_python235_numeric +++ /dev/null @@ -1,138 +0,0 @@ -#!/bin/sh -# -# -CANTERA_CONFIG_PREFIX=${HOME}/arch/linux/cantera-1.7_develop -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/local/python/2.3.5/bin/python -#PYTHON_CMD=/usr/local/python/2.5.2/bin/python -export PYTHON_CMD - -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -WITH_ADSORBATE="n" -export WITH_ADSORBATE - -DEBUG_MODE='y' -export DEBUG_MODE - -# Note, MATLAB must be built 64 bit on linux. -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX - -MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab" -export MATLAB_CMD - -BUILD_F90_INTERFACE="y" -export BUILD_F90_INTERFACE - -BUILD_THREAD_SAFE="n" -export BUILD_THREAD_SAFE - -BOOST_INC_DIR=${HOME}/arch/linux/boost/include/boost-1_34_1 -export BOOST_INC_DIR - -BOOST_LIB_DIR=${HOME}/arch/linux/boost/lib -export BOOST_LIB_DIR - -BOOST_THREAD_LIB=boost_thread-gcc34-mt -export BOOST_THREAD_LIB - -NUMARRAY_HOME='' -export NUMARRAY_HOME - -GRAPHVIZDIR=${HOME}'/arch/linux/bin' -export GRAPHVIZDIR - -# -# Only Numeric is installed in the /usr/local/python/2.3.5/lib/python2.3/site-packages -# directory currently. -# -USE_NUMERIC="y" -export USE_NUMERIC - -#USE_NUMPY="y" -#export USE_NUMPY - -BUILD_WITH_F2C="n" -export BUILD_WITH_F2C - -BITCOMPILE="32" -export BITCOMPILE - -do_purify=0 -if test "$do_purify" = 1 -then - PURIFY='purify' - CC='gcc -m32 -Wa,--32' - CXX='g++ -m32 -Wa,--32' - F77='g77 -m32 -Wa,--32' -else - CXX='mpiCC' - CC='mpicc' - F77='mpif77' -fi - -export CXX -export CC -export F77 -export PURIFY - -AFLAGS="-O -m32 -Wa,--32" -export AFLAGS - -CFLAGS="-O -m32 -Wa,--32 -Wall" -export CFLAGS - -WITH_H298MODIFY_CAPABILITY="y" -export WITH_H298MODIFY_CAPABILITY - -# -# -DDEBUG_BASISOPTIMIZE -# -DDEBUG_CHEMEQUIL -# -DDEBUG_HKM -# -DH298MODIFY_CAPABILITY -# -CXXFLAGS="-O -m32 -Wa,--32 -Wall -DDEBUG_HKM " -export CXXFLAGS - -FFLAGS="-O -m32 -Wa,--32 -DDEBUG_HKM" -export FFLAGS - -LDFLAGS='-m32 -Wa,--32' -export LDFLAGS - -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS - -EXTRA_LINK="-m32 -Wa,--32" -export EXTRA_LINK - -MAKE=gmake -export MAKE -# -# This is sundials 2.3 -# -USE_SUNDIALS='y' -export USE_SUNDIALS -SUNDIALS_HOME=${HOME}'/arch/linux/sundials' -export SUNDIALS_HOME - -./preconfig diff --git a/docs/install_examples/linux_64_gcc424_dbg_python252_numpy b/docs/install_examples/linux_64_gcc424_dbg_python252_numpy deleted file mode 100755 index 2da813547..000000000 --- a/docs/install_examples/linux_64_gcc424_dbg_python252_numpy +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh -# -# This is currently the test base. Meaning that the blessed versions -# of all test problems are created from this configuration. -# -CANTERA_CONFIG_PREFIX=${HOME}/arch/linux64_gcc424/cantera-1.8_python252_numpy -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/local/python/2.5.2/bin/python -export PYTHON_CMD - -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -DEBUG_MODE='y' -export DEBUG_MODE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -BUILD_MATLAB_TOOLBOX="y" -export BUILD_MATLAB_TOOLBOX - -INSTALL_BIN=config/install-sh -export INSTALL_BIN - -MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab" -export MATLAB_CMD - -BUILD_F90_INTERFACE="y" -export BUILD_F90_INTERFACE - -NUMARRAY_HOME='' -export NUMARRAY_HOME - -USE_NUMPY='y' -export USE_NUMPY - -NUMPY_INC_DIR="/usr/local/python/2.5.2/lib/python2.5/site-packages/numpy/core/include" -export NUMPY_INC_DIR - -GRAPHVIZDIR=${HOME}'/arch/linux/bin' -export GRAPHVIZDIR - -# -# -USE_NUMERIC="n" -export USE_NUMERIC - -BUILD_WITH_F2C="n" -export BUILD_WITH_F2C - -BITCOMPILE="64" -export BITCOMPILE - -AFLAGS='DEBUG' - -#CXX='g++ -m32 -Wa,--32' -CXX='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc' -export CXX - -CXX_DEPENDS='/home/sntools/extras/compilers/gcc-4.2.4/bin/g++ -MM' -export CXX_DEPENDS - - -#CC='gcc -m32 -Wa,--32' -CC='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc' -export CC - -#F77='g77 -m32 -Wa,--32' -F77='/home/sntools/extras/compilers/gcc-4.2.4/bin/gfortran' -export F77 - -CFLAGS="-g -Wall" -export CFLAGS - -CXXFLAGS="-g -Wall -DDEBUG_HKM -DDEBUG_HKM_EPEQUIL" -export CXXFLAGS - -FFLAGS="-g -DDEBUG_HKM -fno-second-underscore" -export FFLAGS - -LDFLAGS=' ' -export LDFLAGS - -LCXX_END_LIBS="-lgfortran -lm -lstdc++" -export LCXX_END_LIBS - -EXTRA_LINK=" " -export EXTRA_LINK - -MAKE=gmake -export MAKE - -USE_SUNDIALS='y' -export USE_SUNDIALS -SUNDIALS_HOME=${HOME}'/arch/linux64/sundials' -export SUNDIALS_HOME - -./preconfig diff --git a/docs/install_examples/linux_64_gcc424_dbg_python264_numpy b/docs/install_examples/linux_64_gcc424_dbg_python264_numpy deleted file mode 100755 index d5e2effa5..000000000 --- a/docs/install_examples/linux_64_gcc424_dbg_python264_numpy +++ /dev/null @@ -1,112 +0,0 @@ -#!/bin/sh -# -# This is currently the test base. Meaning that the blessed versions -# of all test problems are created from this configuration. -# -CANTERA_CONFIG_PREFIX=${HOME}/arch/linux64_gcc424/cantera-1.8_Develop -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=${HOME}/arch/linux64_gcc424/python-2.6.4/bin/python -export PYTHON_CMD - -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -DEBUG_MODE='y' -export DEBUG_MODE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -WITH_H298MODIFY_CAPABILITY='y' -export WITH_H298MODIFY_CAPABILITY - -BUILD_MATLAB_TOOLBOX="y" -export BUILD_MATLAB_TOOLBOX - -INSTALL_BIN=config/install-sh -export INSTALL_BIN - -MATLAB_CMD="/usr/local/matlab/7.9/bin/matlab" -export MATLAB_CMD - -BUILD_F90_INTERFACE="y" -export BUILD_F90_INTERFACE - -NUMARRAY_HOME='' -export NUMARRAY_HOME - -USE_NUMPY='y' -export USE_NUMPY - -NUMPY_INC_DIR="${HOME}/arch/linux64_gcc424/python-2.6.4/lib/python2.6/site-packages/numpy/core/include" -export NUMPY_INC_DIR - -GRAPHVIZDIR=${HOME}'/arch/linux/bin' -export GRAPHVIZDIR - -# -# -USE_NUMERIC="n" -export USE_NUMERIC - -BUILD_WITH_F2C="n" -export BUILD_WITH_F2C - -BITCOMPILE="64" -export BITCOMPILE - -AFLAGS='DEBUG' - -CXX='/sierra/Sntools/extras/compilers/gcc-4.2.4/bin/g++' -export CXX - -CXX_DEPENDS='/sierra/Sntools/extras/compilers/gcc-4.2.4/bin/g++ -MM' -export CXX_DEPENDS - -CC='/sierra/Sntools/extras/compilers/gcc-4.2.4/bin/gcc' -export CC - -F77='/sierra/Sntools/extras/compilers/gcc-4.2.4/bin/gfortran' -export F77 - -CFLAGS="-g -Wall" -export CFLAGS - -CXXFLAGS="-g -Wall -Woverloaded-virtual -DDEBUG_HKM -DDEBUG_HKM_EPEQUIL" -export CXXFLAGS - -FFLAGS="-g -DDEBUG_HKM -fno-second-underscore" -export FFLAGS - -LDFLAGS=' ' -export LDFLAGS - -LCXX_END_LIBS="-lgfortran " -export LCXX_END_LIBS - -EXTRA_LINK=" " -export EXTRA_LINK - -MAKE=gmake -export MAKE - -USE_SUNDIALS='y' -export USE_SUNDIALS -SUNDIALS_HOME='${HOME}/arch/linux64_gcc424/sundials-2.4.0_dbg' -export SUNDIALS_HOME - -./preconfig diff --git a/docs/install_examples/linux_64_gcc424_opt_python252_numpy b/docs/install_examples/linux_64_gcc424_opt_python252_numpy deleted file mode 100755 index e0a4a2d57..000000000 --- a/docs/install_examples/linux_64_gcc424_opt_python252_numpy +++ /dev/null @@ -1,111 +0,0 @@ -#!/bin/sh -# -# -CANTERA_CONFIG_PREFIX=${HOME}/arch/linux64_gcc424/cantera-1.8_python252_numpy -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/local/python/2.5.2/bin/python -export PYTHON_CMD - -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -DEBUG_MODE='y' -export DEBUG_MODE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -BUILD_MATLAB_TOOLBOX="y" -export BUILD_MATLAB_TOOLBOX - -INSTALL_BIN=config/install-sh -export INSTALL_BIN - -MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab" -export MATLAB_CMD - -BUILD_F90_INTERFACE="y" -export BUILD_F90_INTERFACE - -NUMARRAY_HOME='' -export NUMARRAY_HOME - -USE_NUMPY='y' -export USE_NUMPY - -NUMPY_INC_DIR="/usr/local/python/2.5.2/lib/python2.5/site-packages/numpy/core/include" -export NUMPY_INC_DIR - -GRAPHVIZDIR=${HOME}'/arch/linux/bin' -export GRAPHVIZDIR - -# -# -USE_NUMERIC="n" -export USE_NUMERIC - -BUILD_WITH_F2C="n" -export BUILD_WITH_F2C - -BITCOMPILE="64" -export BITCOMPILE - -AFLAGS='DEBUG' - -#CXX='g++ -m32 -Wa,--32' -CXX='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc' -export CXX - -CXX_DEPENDS='/home/sntools/extras/compilers/gcc-4.2.4/bin/g++ -MM' -export CXX_DEPENDS - - -#CC='gcc -m32 -Wa,--32' -CC='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc' -export CC - -#F77='g77 -m32 -Wa,--32' -F77='/home/sntools/extras/compilers/gcc-4.2.4/bin/gfortran' -export F77 - -CFLAGS="-O -Wall" -export CFLAGS - -CXXFLAGS="-O -Wall -DDEBUG_HKM -DDEBUG_HKM_EPEQUIL" -export CXXFLAGS - -FFLAGS="-O -DDEBUG_HKM -fno-second-underscore" -export FFLAGS - -LDFLAGS=' ' -export LDFLAGS - -LCXX_END_LIBS="-lgfortran -lm -lstdc++" -export LCXX_END_LIBS - -EXTRA_LINK=" " -export EXTRA_LINK - -MAKE=gmake -export MAKE - -USE_SUNDIALS='y' -export USE_SUNDIALS -SUNDIALS_HOME=${HOME}'/arch/linux64/sundials' -export SUNDIALS_HOME - -./preconfig diff --git a/docs/install_examples/mac_gcc401_python251_numpy b/docs/install_examples/mac_gcc401_python251_numpy deleted file mode 100755 index 3940a8e50..000000000 --- a/docs/install_examples/mac_gcc401_python251_numpy +++ /dev/null @@ -1,106 +0,0 @@ -#!/bin/sh -# -# This is currently the test base. Meaning that the blessed versions -# of all test problems are created from this configuration. -# -CANTERA_CONFIG_PREFIX=${HOME}/arch/mac/cantera-1.8_python251_numpy -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/bin/python -export PYTHON_CMD - -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -DEBUG_MODE='y' -export DEBUG_MODE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX - -INSTALL_BIN=config/install-sh -export INSTALL_BIN - -# MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab" -# export MATLAB_CMD - -BUILD_F90_INTERFACE="n" -export BUILD_F90_INTERFACE - -USE_NUMPY='y' -export USE_NUMPY - -NUMPY_INC_DIR="/home/hkmoffa/arch/mac/lib/python2.5/site-packages/numpy/core/include" -export NUMPY_INC_DIR - -#GRAPHVIZDIR=${HOME}'/arch/linux/bin' -#export GRAPHVIZDIR - -# -# -USE_NUMERIC="n" -export USE_NUMERIC - -BUILD_WITH_F2C="y" -export BUILD_WITH_F2C - -BITCOMPILE="64" -export BITCOMPILE - -AFLAGS='DEBUG' - -CXX='gcc' -export CXX - -CXX_DEPENDS='g++ -MM' -export CXX_DEPENDS - -CC='gcc' -export CC - -F77='g77' -export F77 - -CFLAGS="-g -Wall" -export CFLAGS - -CXXFLAGS="-g -Wall -DDEBUG_HKM -DDEBUG_HKM_EPEQUIL" -export CXXFLAGS - -FFLAGS="-g -DDEBUG_HKM -fno-second-underscore" -export FFLAGS - -LDFLAGS=' ' -export LDFLAGS - -LCXX_END_LIBS=" -lm -lstdc++" -export LCXX_END_LIBS - -EXTRA_LINK=" " -export EXTRA_LINK - -MAKE=make -export MAKE - -USE_SUNDIALS='n' -export USE_SUNDIALS -SUNDIALS_HOME='/home/hkmoffa/arch/linux64/sundials' -export SUNDIALS_HOME - -./preconfig diff --git a/docs/install_examples/sol10_64bit_CC57_dbg_py24_numarray b/docs/install_examples/sol10_64bit_CC57_dbg_py24_numarray deleted file mode 100755 index 98d450e33..000000000 --- a/docs/install_examples/sol10_64bit_CC57_dbg_py24_numarray +++ /dev/null @@ -1,141 +0,0 @@ -#!/bin/sh -# -# Sierra 64 bit setup: -# -xO4 -xtarget=native64 -xarch=native64 -xcode=pic32 -DSUN10 -library=stlport4 -# -# Sierra warnings setup: -# +w2 -errtags -erroff=doubunder,reftotemp,ppextraw,inllargeint,inllargeuse,wnoelseretvalue,truncwarn,diffenumtype,notused,wvarhid enmem,badcastw,hidef -errwarn=%all,no%wunreachable,no%partinit -# -# Notes: -# When you add flsgs with % in them python won't build, because there is an -# error in the python distutils routines. I am currently manually -# fixing these. -# -# Program Names: -# -MAKE=gmake -export MAKE - -# -# Pointers to the 64 bit python built with Sunpro compilers -PYTHON_DIR=${HOME}/arch/sol_py64 -export PYTHON_DIR -PYTHON_CMD=${HOME}/arch/sol_py64/bin/python -export PYTHON_CMD - -# -# Use the CC compiler for C++ code -CXX=CC -export CXX -# -# Specification of the c compiler -# -CC=cc -export CC - -CXX_DEPENDS='CC -xM1' -export CXX_DEPENDS - -USE_NUMERIC='n' -export USE_NUMERIC - -# -# HKM 7/22/09 -# The matlab option is currently not working. Matlab uses the gcc -# compiler. This setup uses the solaris compiler. I can get -# the matlab extensions to compile. But, when I run matlab -# I get an unsatisfied external -# When I add the commands: -# -l/opt/SUNWspro/lib/f9 -lCrun -lCstd -lfsu -# to the matlab build, I can get rid of the runtime unsatisfied -# external. However, I immediate crash dump matlab. This -# suggests that there are duplicate Cstd routines from gcc and -# from the solaris compilers fighting it out. -# I believe the solution will involve compiling everything -# with gcc in order to get matlab on solaris to work. -# -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX - -DEBUG_MODE="y" -export DEBUG_MODE - -# -# Compiler Flags -# -BITCOMPILE="64" -export BITCOMPILE -# -# remember the issue with % and python -# -EFLAGS=" +w2 -errtags -erroff=doubunder,reftotemp,ppextraw,inllargeint,inllargeuse,wnoelseretvalue,truncwarn,diffenumtype,notused,wvarhidenmem,badcastw,hidef -errwarn=%all,no%wunreachable,no%partinit" -#AFLAGS=" -xtarget=native64 -xarch=native64 -xcode=pic32 -library=stlport4" -AFLAGS=" -xtarget=native64 -xarch=native64 -xcode=pic32" -export AFLAGS - -F77=f77 -export F77 - -F90=f95 -export F90 - -FFLAGS="-g -xtarget=native64 -xarch=native64 -xcode=pic32 " -export FFLAGS - -CFLAGS="-g -xtarget=native64 -xarch=native64 -xcode=pic32 -v " -export CFLAGS - -CXXFLAGS="-g $AFLAGS $EFLAGS -DDEBUG_HKM" -export CXXFLAGS - -LCXX_END_LIBS="-lm " -export LCXX_END_LIBS - -# other useful endlibs for solaris 64 bit are -# -mt -lsunmath -lfsu - -USE_SUNDIALS='n' -export USE_SUNDIALS - -WITH_VCSNONIDEAL='y' -export WITH_VCSNONIDEAL - -# -# Location Variables - set the directory to point to -# a 64-bit specific directory. -# -CANTERA_INSTALL_DIR=${HOME}/arch/sol_py64/cantera-1.8 -export CANTERA_INSTALL_DIR - -CANTERA_CONFIG_PREFIX=${HOME}/arch/sol_py64/cantera-1.8 -export CANTERA_CONFIG_PREFIX - -#CANTERA_PYTHON_HOME=${CANTERA_PYTHON_HOME:="$HOME/python_modules"} -#export CANTERA_PYTHON_HOME - -SET_PYTHON_SITE_PACKAGE_TOPDIR="y" -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=${HOME}"/arch/sol_py64/cantera-1.8" -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_PACKAGE="full" -#PYTHON_PACKAGE="minimal" -#PYTHON_PACKAGE="none" -export PYTHON_PACKAGE - -BUILD_WITH_F2C="n" -export BUILD_WITH_F2C - -# -# Archive commands -# -ARCHIVE="CC -xar -xcode=pic32 -o " -export ARCHIVE - - -# -# Invoke the regular configure script -# -./preconfig - diff --git a/docs/install_examples/sol10_64bit_CC57_opt_py24_numarray b/docs/install_examples/sol10_64bit_CC57_opt_py24_numarray deleted file mode 100755 index cc6fc347f..000000000 --- a/docs/install_examples/sol10_64bit_CC57_opt_py24_numarray +++ /dev/null @@ -1,141 +0,0 @@ -#!/bin/sh -# -# Sierra 64 bit setup: -# -xO4 -xtarget=native64 -xarch=native64 -xcode=pic32 -DSUN10 -library=stlport4 -# -# Sierra warnings setup: -# +w2 -errtags -erroff=doubunder,reftotemp,ppextraw,inllargeint,inllargeuse,wnoelseretvalue,truncwarn,diffenumtype,notused,wvarhid enmem,badcastw,hidef -errwarn=%all,no%wunreachable,no%partinit -# -# Notes: -# When you add flsgs with % in them python won't build, because there is an -# error in the python distutils routines. I am currently manually -# fixing these. -# -# Program Names: -# -MAKE=gmake -export MAKE - -# -# Pointers to the 64 bit python built with Sunpro compilers -PYTHON_DIR=${HOME}/arch/sol_py64 -export PYTHON_DIR -PYTHON_CMD=${HOME}/arch/sol_py64/bin/python -export PYTHON_CMD - -# -# Use the CC compiler for C++ code -CXX=CC -export CXX -# -# Specification of the c compiler -# -CC=cc -export CC - -CXX_DEPENDS='CC -xM1' -export CXX_DEPENDS - -USE_NUMERIC='n' -export USE_NUMERIC - -# -# HKM 7/22/09 -# The matlab option is currently not working. Matlab uses the gcc -# compiler. This setup uses the solaris compiler. I can get -# the matlab extensions to compile. But, when I run matlab -# I get an unsatisfied external -# When I add the commands: -# -l/opt/SUNWspro/lib/f9 -lCrun -lCstd -lfsu -# to the matlab build, I can get rid of the runtime unsatisfied -# external. However, I immediate crash dump matlab. This -# suggests that there are duplicate Cstd routines from gcc and -# from the solaris compilers fighting it out. -# I believe the solution will involve compiling everything -# with gcc in order to get matlab on solaris to work. -# -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX - -DEBUG_MODE="y" -export DEBUG_MODE - -# -# Compiler Flags -# -BITCOMPILE="64" -export BITCOMPILE -# -# remember the issue with % and python -# -EFLAGS=" +w2 -errtags -erroff=doubunder,reftotemp,ppextraw,inllargeint,inllargeuse,wnoelseretvalue,truncwarn,diffenumtype,notused,wvarhidenmem,badcastw,hidef -errwarn=%all,no%wunreachable,no%partinit" -#AFLAGS=" -xtarget=native64 -xarch=native64 -xcode=pic32 -library=stlport4" -AFLAGS=" -xtarget=native64 -xarch=native64 -xcode=pic32" -export AFLAGS - -F77=f77 -export F77 - -F90=f95 -export F90 - -FFLAGS="-O -xtarget=native64 -xarch=native64 -xcode=pic32 " -export FFLAGS - -CFLAGS="-O -xtarget=native64 -xarch=native64 -xcode=pic32 -v " -export CFLAGS - -CXXFLAGS="-O $AFLAGS $EFLAGS -DDEBUG_HKM" -export CXXFLAGS - -LCXX_END_LIBS="-lm " -export LCXX_END_LIBS - -# other useful endlibs for solaris 64 bit are -# -mt -lsunmath -lfsu - -USE_SUNDIALS='n' -export USE_SUNDIALS - -WITH_VCSNONIDEAL='y' -export WITH_VCSNONIDEAL - -# -# Location Variables - set the directory to point to -# a 64-bit specific directory. -# -CANTERA_INSTALL_DIR=${HOME}/arch/sol_py64/cantera-1.8.0 -export CANTERA_INSTALL_DIR - -CANTERA_CONFIG_PREFIX=${HOME}/arch/sol_py64/cantera-1.8.0 -export CANTERA_CONFIG_PREFIX - -#CANTERA_PYTHON_HOME=${CANTERA_PYTHON_HOME:="$HOME/python_modules"} -#export CANTERA_PYTHON_HOME - -SET_PYTHON_SITE_PACKAGE_TOPDIR="y" -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=${HOME}"/arch/sol_py64/cantera-1.8.0" -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_PACKAGE="full" -#PYTHON_PACKAGE="minimal" -#PYTHON_PACKAGE="none" -export PYTHON_PACKAGE - -BUILD_WITH_F2C="n" -export BUILD_WITH_F2C - -# -# Archive commands -# -ARCHIVE="CC -xar -xcode=pic32 -o " -export ARCHIVE - - -# -# Invoke the regular configure script -# -./preconfig - diff --git a/docs/install_examples/test_base b/docs/install_examples/test_base deleted file mode 100755 index 2da813547..000000000 --- a/docs/install_examples/test_base +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh -# -# This is currently the test base. Meaning that the blessed versions -# of all test problems are created from this configuration. -# -CANTERA_CONFIG_PREFIX=${HOME}/arch/linux64_gcc424/cantera-1.8_python252_numpy -export CANTERA_CONFIG_PREFIX - -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX -export PYTHON_SITE_PACKAGE_TOPDIR - -PYTHON_CMD=/usr/local/python/2.5.2/bin/python -export PYTHON_CMD - -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -DEBUG_MODE='y' -export DEBUG_MODE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -BUILD_MATLAB_TOOLBOX="y" -export BUILD_MATLAB_TOOLBOX - -INSTALL_BIN=config/install-sh -export INSTALL_BIN - -MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab" -export MATLAB_CMD - -BUILD_F90_INTERFACE="y" -export BUILD_F90_INTERFACE - -NUMARRAY_HOME='' -export NUMARRAY_HOME - -USE_NUMPY='y' -export USE_NUMPY - -NUMPY_INC_DIR="/usr/local/python/2.5.2/lib/python2.5/site-packages/numpy/core/include" -export NUMPY_INC_DIR - -GRAPHVIZDIR=${HOME}'/arch/linux/bin' -export GRAPHVIZDIR - -# -# -USE_NUMERIC="n" -export USE_NUMERIC - -BUILD_WITH_F2C="n" -export BUILD_WITH_F2C - -BITCOMPILE="64" -export BITCOMPILE - -AFLAGS='DEBUG' - -#CXX='g++ -m32 -Wa,--32' -CXX='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc' -export CXX - -CXX_DEPENDS='/home/sntools/extras/compilers/gcc-4.2.4/bin/g++ -MM' -export CXX_DEPENDS - - -#CC='gcc -m32 -Wa,--32' -CC='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc' -export CC - -#F77='g77 -m32 -Wa,--32' -F77='/home/sntools/extras/compilers/gcc-4.2.4/bin/gfortran' -export F77 - -CFLAGS="-g -Wall" -export CFLAGS - -CXXFLAGS="-g -Wall -DDEBUG_HKM -DDEBUG_HKM_EPEQUIL" -export CXXFLAGS - -FFLAGS="-g -DDEBUG_HKM -fno-second-underscore" -export FFLAGS - -LDFLAGS=' ' -export LDFLAGS - -LCXX_END_LIBS="-lgfortran -lm -lstdc++" -export LCXX_END_LIBS - -EXTRA_LINK=" " -export EXTRA_LINK - -MAKE=gmake -export MAKE - -USE_SUNDIALS='y' -export USE_SUNDIALS -SUNDIALS_HOME=${HOME}'/arch/linux64/sundials' -export SUNDIALS_HOME - -./preconfig From 92abf1f919dcc25437034c24645bcc9ec498c4ae Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 4 Jan 2012 00:42:46 +0000 Subject: [PATCH 035/124] [cantera]: changing relative directory of all generated libraries to build directory, in keeping with cantera 1.8 standard. Next: make working 'make check'! --- Cantera/src/base/Makefile.am | 6 +- Cantera/src/converters/Makefile.am | 6 +- Cantera/src/equil/Makefile.am | 6 +- Cantera/src/kinetics/Makefile.am | 6 +- Cantera/src/numerics/Makefile.am | 6 +- Cantera/src/oneD/Makefile.am | 6 +- Cantera/src/spectra/Makefile.am | 6 +- Cantera/src/thermo/Makefile.am | 6 +- Cantera/src/transport/Makefile.am | 6 +- Cantera/src/zeroD/Makefile.am | 6 +- configure.ac | 1 + examples/Makefile.am | 2 + examples/cxx/Makefile.am | 18 ++++ examples/cxx/Makefile.in | 131 ----------------------------- examples/cxx/equil_example1.cpp | 2 +- test_problems/Makefile.am | 1 + test_problems/cxx_ex/Makefile.in | 16 ---- 17 files changed, 53 insertions(+), 178 deletions(-) create mode 100644 examples/cxx/Makefile.am delete mode 100755 examples/cxx/Makefile.in delete mode 100644 test_problems/cxx_ex/Makefile.in diff --git a/Cantera/src/base/Makefile.am b/Cantera/src/base/Makefile.am index 024e153cf..809df5d3a 100644 --- a/Cantera/src/base/Makefile.am +++ b/Cantera/src/base/Makefile.am @@ -12,12 +12,12 @@ cc_sources = ct2ctml.cpp ctml.cpp misc.cpp plots.cpp \ INCLUDES = AM_CXXFLAGS = $(INCLUDES) -lib_LTLIBRARIES = libctbase.la +lib_LTLIBRARIES = $(top_builddir)/build/lib/libctbase.la library_includedir = $(includedir) #----------------------- # Cantera Converters C/C++ library #----------------------- -libctbase_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -libctbase_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_libctbase_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libctbase_la_SOURCES = $(cc_sources) $(h_sources) diff --git a/Cantera/src/converters/Makefile.am b/Cantera/src/converters/Makefile.am index 67370eb59..951b8cc90 100644 --- a/Cantera/src/converters/Makefile.am +++ b/Cantera/src/converters/Makefile.am @@ -9,12 +9,12 @@ cc_sources = atomicWeightDB.cpp ck2ctml.cpp CKReader.cpp filter.cpp \ INCLUDES = -I../base -I../../../ AM_CXXFLAGS = $(INCLUDES) -lib_LTLIBRARIES = libconverters.la +lib_LTLIBRARIES = $(top_builddir)/build/lib/libconverters.la library_includedir = $(includedir) #----------------------- # Cantera Converters C/C++ library #----------------------- -libconverters_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -libconverters_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_libconverters_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libconverters_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/Cantera/src/equil/Makefile.am b/Cantera/src/equil/Makefile.am index 80af02903..c0be25f05 100644 --- a/Cantera/src/equil/Makefile.am +++ b/Cantera/src/equil/Makefile.am @@ -8,12 +8,12 @@ INCLUDES = -I../base -I../thermo -I../numerics -I../../../ INCLUDES += -I../../../ext/f2c_libs/ AM_CXXFLAGS = $(INCLUDES) -lib_LTLIBRARIES = libequil.la +lib_LTLIBRARIES = $(top_builddir)/build/lib/libequil.la library_includedir = $(includedir) #----------------------- # Cantera Converters C/C++ library #----------------------- -libequil_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -libequil_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_libequil_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libequil_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/Cantera/src/kinetics/Makefile.am b/Cantera/src/kinetics/Makefile.am index 9c4e7d4ea..429481b93 100644 --- a/Cantera/src/kinetics/Makefile.am +++ b/Cantera/src/kinetics/Makefile.am @@ -12,12 +12,12 @@ cc_sources = importKinetics.cpp GRI_30_Kinetics.cpp KineticsFactory.cpp \ INCLUDES = -I../base -I../thermo -I../../../ AM_CXXFLAGS = $(INCLUDES) -lib_LTLIBRARIES = libkinetics.la +lib_LTLIBRARIES = $(top_builddir)/build/lib/libkinetics.la library_includedir = $(includedir) #----------------------- # Cantera Kinetics C/C++ library #----------------------- -libkinetics_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -libkinetics_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_libkinetics_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libkinetics_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/Cantera/src/numerics/Makefile.am b/Cantera/src/numerics/Makefile.am index 988057674..7a061bc5f 100644 --- a/Cantera/src/numerics/Makefile.am +++ b/Cantera/src/numerics/Makefile.am @@ -11,12 +11,12 @@ cc_sources = DenseMatrix.cpp funcs.cpp Func1.cpp ODE_integrators.cpp \ INCLUDES = -I../base -I../../../ AM_CXXFLAGS = $(INCLUDES) -lib_LTLIBRARIES = libctnumerics.la +lib_LTLIBRARIES = $(top_builddir)/build/lib/libctnumerics.la library_includedir = $(includedir) #----------------------- # Cantera numerics C/C++ library #----------------------- -libctnumerics_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -libctnumerics_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_libctnumerics_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libctnumerics_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/Cantera/src/oneD/Makefile.am b/Cantera/src/oneD/Makefile.am index 22b229924..08a044274 100644 --- a/Cantera/src/oneD/Makefile.am +++ b/Cantera/src/oneD/Makefile.am @@ -8,12 +8,12 @@ h_sources = Inlet1D.h MultiJac.h Sim1D.h StFlow.h \ INCLUDES = -I../base -I../thermo -I../kinetics -I../transport -I../numerics -I../../../ AM_CXXFLAGS = $(INCLUDES) -fPIC -lib_LTLIBRARIES = liboneD.la +lib_LTLIBRARIES = $(top_builddir)/build/lib/liboneD.la library_includedir = $(includedir) #----------------------- # Cantera OneD C/C++ library #----------------------- -liboneD_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -liboneD_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_liboneD_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_liboneD_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/Cantera/src/spectra/Makefile.am b/Cantera/src/spectra/Makefile.am index 07fcc75e7..e2e9eab5a 100644 --- a/Cantera/src/spectra/Makefile.am +++ b/Cantera/src/spectra/Makefile.am @@ -6,12 +6,12 @@ cc_sources = LineBroadener.cpp rotor.cpp spectralUtilities.cpp INCLUDES = -I../base -I../../../ AM_CXXFLAGS = $(INCLUDES) -lib_LTLIBRARIES = libctspectra.la +lib_LTLIBRARIES = $(top_builddir)/build/lib/libctspectra.la library_includedir = $(includedir) #----------------------- # Cantera Spectra C/C++ library #----------------------- -libctspectra_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -libctspectra_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_libctspectra_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libctspectra_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/Cantera/src/thermo/Makefile.am b/Cantera/src/thermo/Makefile.am index 0dc9f4129..8916c0645 100644 --- a/Cantera/src/thermo/Makefile.am +++ b/Cantera/src/thermo/Makefile.am @@ -27,12 +27,12 @@ cc_sources = State.cpp Elements.cpp Constituents.cpp Phase.cpp \ INCLUDES = -I../base -I../../../ AM_CXXFLAGS = $(INCLUDES) -lib_LTLIBRARIES = libthermo.la +lib_LTLIBRARIES = $(top_builddir)/build/lib/libthermo.la library_includedir = $(includedir) #----------------------- # Cantera thermo C/C++ library #----------------------- -libthermo_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -libthermo_la_SOURCES = $(cc_sources) $(h_sources) +__top_builddir__build_lib_libthermo_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libthermo_la_SOURCES = $(cc_sources) $(h_sources) diff --git a/Cantera/src/transport/Makefile.am b/Cantera/src/transport/Makefile.am index 35d344709..a5c490b65 100644 --- a/Cantera/src/transport/Makefile.am +++ b/Cantera/src/transport/Makefile.am @@ -13,12 +13,12 @@ cc_sources = AqueousTransport.cpp LiquidTransport.cpp MMCollisionInt.cpp \ INCLUDES = -I../base -I../thermo -I../numerics -I../../../ AM_CXXFLAGS = $(INCLUDES) -lib_LTLIBRARIES = libtransport.la +lib_LTLIBRARIES = $(top_builddir)/build/lib/libtransport.la library_includedir = $(includedir) #----------------------- # Cantera Transport C/C++ library #----------------------- -libtransport_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -libtransport_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_libtransport_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libtransport_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/Cantera/src/zeroD/Makefile.am b/Cantera/src/zeroD/Makefile.am index 7e3335f88..fb78cdc67 100644 --- a/Cantera/src/zeroD/Makefile.am +++ b/Cantera/src/zeroD/Makefile.am @@ -9,12 +9,12 @@ cc_sources = Reactor.cpp ReactorBase.cpp FlowDevice.cpp Wall.cpp \ INCLUDES = -I../base -I../thermo -I../kinetics -I../numerics -I../../../ AM_CXXFLAGS = $(INCLUDES) -lib_LTLIBRARIES = libzeroD.la +lib_LTLIBRARIES = $(top_builddir)/build/lib/libzeroD.la library_includedir = $(includedir) #----------------------- # Cantera OneD C/C++ library #----------------------- -libzeroD_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -libzeroD_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_libzeroD_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libzeroD_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file diff --git a/configure.ac b/configure.ac index f13b359aa..36cfe35f8 100644 --- a/configure.ac +++ b/configure.ac @@ -55,6 +55,7 @@ DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) # Generate Output Files AC_OUTPUT(Makefile examples/Makefile \ + examples/cxx/Makefile \ test_problems/Makefile \ doxygen/Makefile \ Cantera/Makefile \ diff --git a/examples/Makefile.am b/examples/Makefile.am index a7919df96..9b5df6b24 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,3 +1,5 @@ +SUBDIRS = cxx + EXTRA_DIST = dist-hook: diff --git a/examples/cxx/Makefile.am b/examples/cxx/Makefile.am new file mode 100644 index 000000000..7b1a57d20 --- /dev/null +++ b/examples/cxx/Makefile.am @@ -0,0 +1,18 @@ +h_sources = example_utils.h + +cc_sources = equil_example1.cpp examples.cpp flame1.cpp kinetics_example1.cpp \ + kinetics_example2.cpp kinetics_example3.cpp rxnpath_example1.cpp \ + transport_example1.cpp transport_example2.cpp + +INCLUDES = -I../base -I../../Cantera/cxx/include +AM_CXXFLAGS = $(INCLUDES) + +bin_PROGRAMS = cxx_examples +library_includedir = $(includedir) + +#----------------------- +# Cantera cxx examples +#----------------------- + +cxx_examples_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +cxx_examples_SOURCES = $(cc_sources) $(h_sources) diff --git a/examples/cxx/Makefile.in b/examples/cxx/Makefile.in deleted file mode 100755 index 008d0c035..000000000 --- a/examples/cxx/Makefile.in +++ /dev/null @@ -1,131 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# the name of the executable program to be created -PROG_NAME = cxx_examples - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = examples.o kinetics_example1.o kinetics_example2.o \ - kinetics_example3.o equil_example1.o \ - transport_example1.o transport_example2.o \ - rxnpath_example1.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - - -############################################################################# - -# the Fortran compiler -FORT = @F90@ - -PURIFY=@PURIFY@ - -# Fortran compile flags -FORT_FLAGS = @FFLAGS@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ -lctcxx - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - - -#------ you probably don't have to change anything below this line ----- - - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -CANTERA_LIB_DEPS = $(CANTERA_LIBDIR)/libkinetics.a \ - $(CANTERA_LIBDIR)/libtransport.a \ - $(CANTERA_LIBDIR)/libthermo.a \ - $(CANTERA_LIBDIR)/libctnumerics.a \ - $(CANTERA_LIBDIR)/libctbase.a \ - $(CANTERA_LIBDIR)/libctmath.a \ - $(CANTERA_LIBDIR)/libtpx.a \ - $(CANTERA_LIBDIR)/libconverters.a - -ifeq (@build_lapack@, 1) -CANTERA_LAPACK_DEPS = $(CANTERA_LIBDIR)/libctblas.a \ - $(CANTERA_LIBDIR)/libctlapack.a -endif - -ifeq (@use_sundials@, 0) -CANTERA_CVODE_DEPS = $(CANTERA_LIBDIR)/libcvode.a -endif - -LIB_DEPS = $(CANTERA_LIB_DEPS) $(CANTERA_LAPACK_DEPS) $(CANTERA_CVODE_DEPS) - -# the directory where Cantera include files may be found. -CANTERA_INC=-I@ctroot@/build/include - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(CANTERA_INC) $(CXX_FLAGS) - -# how to compile Fortran source files to object files -.@F77_EXT@.@OBJ_EXT@: - $(PURIFY) $(FORT) -c $< $(FORT_FLAGS) - -PROGRAM = ./$(PROG_NAME)$(EXE_EXT) - -all: .depends $(PROGRAM) - -DEPENDS=$(OBJS:.o=.d) - -%.d: - @CXX_DEPENDS@ $(CANTERA_INC) $(CXX_FLAGS) $*.cpp > $*.d - -$(PROGRAM): $(OBJS) $(LIB_DEPS) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(CANTERA_LIBS) \ - $(LINK_OPTIONS) $(EXT_LIBS) @LIBS@ \ - $(LCXX_END_LIBS) - - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends *~ - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -depends: - $(MAKE) .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/examples/cxx/equil_example1.cpp b/examples/cxx/equil_example1.cpp index 1d812033d..270cc3678 100755 --- a/examples/cxx/equil_example1.cpp +++ b/examples/cxx/equil_example1.cpp @@ -16,7 +16,7 @@ #pragma warning(disable:4503) #endif -#include +#include #include #include "example_utils.h" #include diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 0bce1584a..412577506 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -5,6 +5,7 @@ ChemEquil_ionizedGas ChemEquil_red1 CpJump \ mixGasTransport multiGasTransport printUtilUnitTest +SUBDIRS = cxx_ex # # would be good to add: # diff --git a/test_problems/cxx_ex/Makefile.in b/test_problems/cxx_ex/Makefile.in deleted file mode 100644 index 3461c63ce..000000000 --- a/test_problems/cxx_ex/Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ -# -# $Revision: 1.7 $ -# $Author: hkmoffa $ -# $Date: 2006/04/30 18:06:56 $ -# -# -all: - (cd ../../examples/cxx ; @MAKE@ ) -test: - ./runtest - -clean: - (cd ../../examples/cxx ; @MAKE@ clean ) - -depends: - From 035a27011877538303d162ae10bd4ce7cb2c64f5 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 4 Jan 2012 05:49:44 +0000 Subject: [PATCH 036/124] [cantera]: removing a few files and chaning some library paths --- Cantera/cxx/CMakeLists.txt | 4 ---- Cantera/cxx/cmake_install.cmake | 36 --------------------------------- Cantera/cxx/src/CMakeLists.txt | 6 ------ Cantera/src/base/Makefile.am | 8 +++++++- examples/cxx/Makefile.am | 2 +- test_problems/Makefile.am | 2 +- 6 files changed, 9 insertions(+), 49 deletions(-) delete mode 100644 Cantera/cxx/CMakeLists.txt delete mode 100644 Cantera/cxx/cmake_install.cmake delete mode 100644 Cantera/cxx/src/CMakeLists.txt diff --git a/Cantera/cxx/CMakeLists.txt b/Cantera/cxx/CMakeLists.txt deleted file mode 100644 index 32869e907..000000000 --- a/Cantera/cxx/CMakeLists.txt +++ /dev/null @@ -1,4 +0,0 @@ - -add_subdirectory( include ) -add_subdirectory( src ) -add_subdirectory( demos ) diff --git a/Cantera/cxx/cmake_install.cmake b/Cantera/cxx/cmake_install.cmake deleted file mode 100644 index 53b031cef..000000000 --- a/Cantera/cxx/cmake_install.cmake +++ /dev/null @@ -1,36 +0,0 @@ -# Install script for directory: /Users/dgg/dv/sf/cantera/Cantera/cxx - -# Set the install prefix -IF(NOT DEFINED CMAKE_INSTALL_PREFIX) - SET(CMAKE_INSTALL_PREFIX "/usr/local") -ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX) -STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -IF(NOT CMAKE_INSTALL_CONFIG_NAME) - IF(BUILD_TYPE) - STRING(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - ELSE(BUILD_TYPE) - SET(CMAKE_INSTALL_CONFIG_NAME "Debug") - ENDIF(BUILD_TYPE) - MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -ENDIF(NOT CMAKE_INSTALL_CONFIG_NAME) - -# Set the component getting installed. -IF(NOT CMAKE_INSTALL_COMPONENT) - IF(COMPONENT) - MESSAGE(STATUS "Install component: \"${COMPONENT}\"") - SET(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - ELSE(COMPONENT) - SET(CMAKE_INSTALL_COMPONENT) - ENDIF(COMPONENT) -ENDIF(NOT CMAKE_INSTALL_COMPONENT) - -IF(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for each subdirectory. - INCLUDE("/Users/dgg/dv/sf/cantera/Cantera/cxx/include/cmake_install.cmake") - INCLUDE("/Users/dgg/dv/sf/cantera/Cantera/cxx/src/cmake_install.cmake") - INCLUDE("/Users/dgg/dv/sf/cantera/Cantera/cxx/demos/cmake_install.cmake") - -ENDIF(NOT CMAKE_INSTALL_LOCAL_ONLY) diff --git a/Cantera/cxx/src/CMakeLists.txt b/Cantera/cxx/src/CMakeLists.txt deleted file mode 100644 index 4f5e4bdec..000000000 --- a/Cantera/cxx/src/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -SET ( CXX_SRCS importPhase.cpp ) - -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}) -INCLUDE_DIRECTORIES (${PROJECT_BINARY_DIR}/build/include/cantera/kernel) - -ADD_LIBRARY (ctcxx ${CXX_SRCS}) diff --git a/Cantera/src/base/Makefile.am b/Cantera/src/base/Makefile.am index 809df5d3a..13edc9e05 100644 --- a/Cantera/src/base/Makefile.am +++ b/Cantera/src/base/Makefile.am @@ -13,7 +13,11 @@ INCLUDES = AM_CXXFLAGS = $(INCLUDES) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctbase.la -library_includedir = $(includedir) +library_includedir = $(top_builddir)/build/include +library_include_HEADERS = $(h_sources) + +otherincludedir = $(top_builddir)/build/include/cantera/kernel +otherinclude_HEADERS = $(h_sources) #----------------------- # Cantera Converters C/C++ library @@ -21,3 +25,5 @@ library_includedir = $(includedir) __top_builddir__build_lib_libctbase_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libctbase_la_SOURCES = $(cc_sources) $(h_sources) + +CLEANFILES = *.o diff --git a/examples/cxx/Makefile.am b/examples/cxx/Makefile.am index 7b1a57d20..ac8846a1c 100644 --- a/examples/cxx/Makefile.am +++ b/examples/cxx/Makefile.am @@ -4,7 +4,7 @@ cc_sources = equil_example1.cpp examples.cpp flame1.cpp kinetics_example1.cpp \ kinetics_example2.cpp kinetics_example3.cpp rxnpath_example1.cpp \ transport_example1.cpp transport_example2.cpp -INCLUDES = -I../base -I../../Cantera/cxx/include +INCLUDES = -I../base -I../../build/include/ AM_CXXFLAGS = $(INCLUDES) bin_PROGRAMS = cxx_examples diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 412577506..a9fce954a 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -5,7 +5,7 @@ ChemEquil_ionizedGas ChemEquil_red1 CpJump \ mixGasTransport multiGasTransport printUtilUnitTest -SUBDIRS = cxx_ex +#SUBDIRS = cxx_ex # # would be good to add: # From 0308bf9ab63310d5ca0d0b5fc19d9b26b3fae2b3 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 5 Jan 2012 17:16:05 +0000 Subject: [PATCH 037/124] [cantera]: adding ext makefile.am to get an example going --- ext/Makefile.am | 2 + ext/Makefile.in | 691 ++++++++++++++++++++++++++++++++++++------- ext/math/Makefile.am | 21 ++ ext/math/Makefile.in | 74 ----- ext/tpx/Makefile.am | 21 ++ ext/tpx/Makefile.in | 55 ---- 6 files changed, 634 insertions(+), 230 deletions(-) create mode 100644 ext/Makefile.am create mode 100644 ext/math/Makefile.am delete mode 100755 ext/math/Makefile.in create mode 100644 ext/tpx/Makefile.am delete mode 100755 ext/tpx/Makefile.in diff --git a/ext/Makefile.am b/ext/Makefile.am new file mode 100644 index 000000000..323231d9c --- /dev/null +++ b/ext/Makefile.am @@ -0,0 +1,2 @@ +SUBDIRS = tpx + diff --git a/ext/Makefile.in b/ext/Makefile.in index d902d6cfe..c9803ddd7 100755 --- a/ext/Makefile.in +++ b/ext/Makefile.in @@ -1,104 +1,593 @@ -#/bin/sh -# -# $Source: /cvsroot/cantera/cantera/ext/Makefile.in,v $ -# $Author: dggoodwin $ -# $Revision: 1.10 $ -# $Date: 2008/02/13 06:43:27 $ -# -# Makefile for ext directory -# -BUILD_LAPACK=@build_lapack@ -BUILD_BLAS=@build_blas@ -BUILD_WITH_F2C=@build_with_f2c@ -BUILD_F2C_LIB=@build_f2c_lib@ -USE_SUNDIALS=@use_sundials@ +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -LIBS = blas/libctblas.a lapack/libctlapack.a math/libctmath.a \ - cvode/libcvode.a tpx/libtpx.a - -all: -ifeq ($(BUILD_F2C_LIB),1) - (if test -d "f2c_libs" ; then \ - cd f2c_libs ; @MAKE@ ; \ - fi) -endif -ifeq ($(BUILD_WITH_F2C),1) -ifeq ($(BUILD_LAPACK),1) - cd f2c_lapack; @MAKE@ -else - cd f2c_lapack; @MAKE@ clean -endif -ifeq ($(BUILD_BLAS),1) - cd f2c_blas; @MAKE@ -else - cd f2c_blas; @MAKE@ clean -endif -# cd f2c_recipes; @MAKE@ - cd f2c_math; @MAKE@ -else -ifeq ($(BUILD_LAPACK),1) - cd lapack; @MAKE@ -else - cd lapack; @MAKE@ clean -endif -ifeq ($(BUILD_BLAS),1) - cd blas; @MAKE@ -else - cd blas; @MAKE@ clean -endif -# cd recipes; @MAKE@ - cd math; @MAKE@ -endif -ifeq ($(USE_SUNDIALS),0) - cd cvode; @MAKE@ -endif - cd tpx; @MAKE@ +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -clean: - cd lapack; @MAKE@ clean - cd blas; @MAKE@ clean - cd recipes; @MAKE@ clean - cd cvode; @MAKE@ clean - cd math; @MAKE@ clean - cd tpx; @MAKE@ clean - (if test -d "f2c_libs" ; then \ - cd f2c_libs ; @MAKE@ clean ; \ - fi) - (if test -d "f2c_lapack" ; then \ - cd f2c_lapack ; @MAKE@ clean ; \ - fi) - (if test -d "f2c_blas" ; then \ - cd f2c_blas ; @MAKE@ clean ; \ - fi) - (if test -d "f2c_math" ; then \ - cd f2c_math ; @MAKE@ clean ; \ - fi) -# (if test -d "f2c_recipes" ; then \ -# cd f2c_recipes ; @MAKE@ clean ; \ -# fi) +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -depends: -ifeq ($(BUILD_WITH_F2C),1) - (if test -d "f2c_libs" ; then \ - cd f2c_libs ; @MAKE@ depends ; \ - fi) - (if test -d "f2c_lapack" ; then \ - cd f2c_lapack ; @MAKE@ depends ; \ - fi) - (if test -d "f2c_blas" ; then \ - cd f2c_blas ; @MAKE@ depends ; \ - fi) - (if test -d "f2c_math" ; then \ - cd f2c_math ; @MAKE@ depends ; \ - fi) -# (if test -d "f2c_recipes" ; then \ - cd f2c_recipes ; @MAKE@ depends ; \ - fi) -else - cd lapack; @MAKE@ depends - cd blas; @MAKE@ depends -# cd recipes; @MAKE@ depends - cd math; @MAKE@ depends -endif - cd cvode; @MAKE@ depends - cd tpx; @MAKE@ depends +@SET_MAKE@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = ext +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-dvi-recursive install-exec-recursive \ + install-html-recursive install-info-recursive \ + install-pdf-recursive install-ps-recursive install-recursive \ + installcheck-recursive installdirs-recursive pdf-recursive \ + ps-recursive uninstall-recursive +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ + $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ + distdir +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +SUBDIRS = tpx +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu ext/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu ext/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run `make' without going through this Makefile. +# To change the values of `make' variables: instead of editing Makefiles, +# (1) if the variable is set in `config.status', edit `config.status' +# (which will cause the Makefiles to be regenerated when you run `make'); +# (2) otherwise, pass the desired values on the `make' command line. +$(RECURSIVE_TARGETS): + @fail= failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +$(RECURSIVE_CLEAN_TARGETS): + @fail= failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + rev=''; for subdir in $$list; do \ + if test "$$subdir" = "."; then :; else \ + rev="$$subdir $$rev"; \ + fi; \ + done; \ + rev="$$rev ."; \ + target=`echo $@ | sed s/-recursive//`; \ + for subdir in $$rev; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done && test -z "$$fail" +tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done +ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ + install-am install-strip tags-recursive + +.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ + all all-am check check-am clean clean-generic clean-libtool \ + ctags ctags-recursive distclean distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ + uninstall uninstall-am + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/ext/math/Makefile.am b/ext/math/Makefile.am new file mode 100644 index 000000000..b67d774b7 --- /dev/null +++ b/ext/math/Makefile.am @@ -0,0 +1,21 @@ +h_sources = +cc_sources = + +INCLUDES = +AM_CXXFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = $(top_builddir)/build/lib/libctbase.la +library_includedir = $(top_builddir)/build/include +library_include_HEADERS = $(h_sources) + +otherincludedir = $(top_builddir)/build/include/cantera/kernel +otherinclude_HEADERS = $(h_sources) + +#----------------------- +# Cantera Converters C/C++ library +#----------------------- + +__top_builddir__build_lib_libctbase_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libctbase_la_SOURCES = $(cc_sources) $(h_sources) + +CLEANFILES = *.o diff --git a/ext/math/Makefile.in b/ext/math/Makefile.in deleted file mode 100755 index aba77e6e2..000000000 --- a/ext/math/Makefile.in +++ /dev/null @@ -1,74 +0,0 @@ -# -# $Source: /cvsroot/cantera/cantera/ext/math/Makefile.in,v $ -# $Author: hkmoffa $ -# $Revision: 1.13 $ -# $Date: 2008/12/30 21:58:10 $ -# - -.SUFFIXES : -.SUFFIXES : .f .d .o .cpp - -do_ranlib = @DO_RANLIB@ - -LIB = @buildlib@/libctmath.a - -all: $(LIB) - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -F_FLAGS = @FFLAGS@ $(PIC_FLAG) - -OBJS = \ -mach.o \ -ddaspk.o \ -dgbfa.o \ -dgbsl.o \ -dgefa.o \ -dgesl.o \ -dp1vlu.o \ -dpcoef.o \ -dpolft.o \ -fdump.o \ -j4save.o \ -pcoef.o \ -polfit.o \ -pvalue.o \ -xercnt.o \ -xerhlt.o \ -xermsg.o \ -xerprn.o \ -xersve.o \ -xgetua.o \ -printstring.o - -SRCS = $(OBJS:.o=.cpp) -all = $(LIB) - -$(LIB): $(OBJS) - @ARCHIVE@ $(LIB) $(OBJS) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif - -%.o : %.c - $(PURIFY) @CXX@ -c $< @DEFS@ @CXXFLAGS@ @PIC@ -I../.. $(INCLUDES) - -%.o : %.cpp - $(PURIFY) @CXX@ -c $< @DEFS@ @CXXFLAGS@ @PIC@ $(INCLUDES) -# -# Right now g77 is not known to PURIFY. Why I don't know. -# -%.o : %.f - @F77@ -c $< $(F_FLAGS) - -$(OBJS): Makefile - -clean: - $(RM) $(OBJS) $(LIB) - -depends: - echo '...' - - diff --git a/ext/tpx/Makefile.am b/ext/tpx/Makefile.am new file mode 100644 index 000000000..728a02cb0 --- /dev/null +++ b/ext/tpx/Makefile.am @@ -0,0 +1,21 @@ +h_sources = Methane.h Nitrogen.h Oxygen.h Water.h Hydrogen.h RedlichKwong.h \ + CarbonDioxide.h Heptane.h lk.h Sub.h utils.h HFC134a.h + +cc_sources = Methane.cpp Nitrogen.cpp Oxygen.cpp Water.cpp Hydrogen.cpp RedlichKwong.cpp \ + CarbonDioxide.cpp Heptane.cpp lk.cpp Sub.cpp utils.cpp HFC134a.cpp + +INCLUDES = +AM_CXXFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = $(top_builddir)/build/lib/libtpx.la +library_includedir = $(top_builddir)/build/include +library_include_HEADERS = $(h_sources) + +#----------------------- +# Cantera Converters C/C++ library +#----------------------- + +__top_builddir__build_lib_libtpx_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libtpx_la_SOURCES = $(cc_sources) $(h_sources) + +CLEANFILES = *.o diff --git a/ext/tpx/Makefile.in b/ext/tpx/Makefile.in deleted file mode 100755 index bf0ebca96..000000000 --- a/ext/tpx/Makefile.in +++ /dev/null @@ -1,55 +0,0 @@ -#/bin/sh -# -# $Id: Makefile.in,v 1.17 2009/03/28 19:10:17 hkmoffa Exp $ -# -.SUFFIXES : -.SUFFIXES : .cpp .d .o - -do_ranlib = @DO_RANLIB@ - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -COBJS = Methane.o Nitrogen.o Oxygen.o Water.o Hydrogen.o RedlichKwong.o \ - CarbonDioxide.o Heptane.o lk.o Sub.o utils.o HFC134a.o - -CXX_LIBS = @LIBS@ -CXX_INCLUDES = -I../include -TPLIB = @buildlib@/libtpx.a - -DEPENDS = $(COBJS:.o=.d) - -all: $(TPLIB) .depends - -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -.cpp.o: - $(PURIFY) @CXX@ -c $< @DEFS@ $(CXX_FLAGS) $(CXX_INCLUDES) - -.f.o: - $(PURIFY) @F77@ -c $< $(F77_FLAGS) - -$(TPLIB): $(COBJS) $(FOBJS) - @ARCHIVE@ $(TPLIB) $(COBJS) $(FOBJS) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(TPLIB) -endif - -clean: - $(RM) $(COBJS) $(FOBJS) *~ *.d .depends - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(COBJS): Makefile - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - From 4b4fb7f3e1f23c4618d1b9e193f4464485fae70f Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 5 Jan 2012 18:53:52 +0000 Subject: [PATCH 038/124] [cantera]: adding cxx example for regression testing --- examples/cxx/Makefile.am | 25 ++++++++++++++++--------- examples/cxx/equil_example1.cpp | 4 ++-- examples/cxx/example_utils.h | 4 ++-- examples/cxx/examples.cpp | 2 +- examples/cxx/flame1.cpp | 6 +++--- 5 files changed, 24 insertions(+), 17 deletions(-) diff --git a/examples/cxx/Makefile.am b/examples/cxx/Makefile.am index ac8846a1c..33dc42f22 100644 --- a/examples/cxx/Makefile.am +++ b/examples/cxx/Makefile.am @@ -1,18 +1,25 @@ h_sources = example_utils.h -cc_sources = equil_example1.cpp examples.cpp flame1.cpp kinetics_example1.cpp \ - kinetics_example2.cpp kinetics_example3.cpp rxnpath_example1.cpp \ - transport_example1.cpp transport_example2.cpp +cc_sources = examples.cpp kinetics_example1.cpp kinetics_example2.cpp \ + kinetics_example3.cpp equil_example1.cpp \ + transport_example1.cpp transport_example2.cpp \ + rxnpath_example1.cpp -INCLUDES = -I../base -I../../build/include/ -AM_CXXFLAGS = $(INCLUDES) +LINK = -lkinetics -ltransport -lthermo -lctnumerics +LINK += -lctbase -ltpx -lctmath -lconverters +# -luser -lcvode -lctlapack -lctblas -lctf2c -lctcxx -luser -lstdc++ -bin_PROGRAMS = cxx_examples -library_includedir = $(includedir) +LIBS = -L$(top_builddir)/build/lib/ $(LINK) + +INCLUDES = -I../base -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera +AM_CXXFLAGS = $(INCLUDES) + +bin_PROGRAMS = cxx_examples +library_includedir = $(includedir) #----------------------- # Cantera cxx examples #----------------------- -cxx_examples_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -cxx_examples_SOURCES = $(cc_sources) $(h_sources) +cxx_examples_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +cxx_examples_SOURCES = $(cc_sources) $(h_sources) diff --git a/examples/cxx/equil_example1.cpp b/examples/cxx/equil_example1.cpp index 270cc3678..1ca0e6204 100755 --- a/examples/cxx/equil_example1.cpp +++ b/examples/cxx/equil_example1.cpp @@ -19,9 +19,9 @@ #include #include #include "example_utils.h" -#include +#include -#include +#include using namespace Cantera; using namespace Cantera_CXX; diff --git a/examples/cxx/example_utils.h b/examples/cxx/example_utils.h index 2439816e1..f0bfc667f 100755 --- a/examples/cxx/example_utils.h +++ b/examples/cxx/example_utils.h @@ -1,8 +1,8 @@ #ifndef CT_EXAMPLE_UTILS_H #define CT_EXAMPLE_UTILS_H -#include -#include +#include +#include using namespace Cantera; using namespace std; diff --git a/examples/cxx/examples.cpp b/examples/cxx/examples.cpp index 00a5f52ca..4ca4ffa8b 100755 --- a/examples/cxx/examples.cpp +++ b/examples/cxx/examples.cpp @@ -1,5 +1,5 @@ -#include +#include using namespace Cantera; using namespace std; diff --git a/examples/cxx/flame1.cpp b/examples/cxx/flame1.cpp index 2e21318ec..180ecb8f3 100644 --- a/examples/cxx/flame1.cpp +++ b/examples/cxx/flame1.cpp @@ -1,7 +1,7 @@ -#include "/Applications/Cantera/include/cantera/Cantera.h" -#include "cantera/IdealGasMix.h" -#include "cantera/transport.h" +#include "Cantera.h" +#include "IdealGasMix.h" +#include "transport.h" int main() { From 2e697b32232a6a5d289f3b4bbd582f090efe488d Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 5 Jan 2012 18:54:50 +0000 Subject: [PATCH 039/124] [cantera]: few more modifications to trunk of our tools, to enable regression testing with make check --- Makefile.am | 2 +- configure.ac | 3 +++ ext/Makefile.am | 2 +- ext/Makefile.in | 2 +- ext/math/Makefile.am | 19 +++++++++++-------- ext/math/printstring.c | 6 +++++- 6 files changed, 22 insertions(+), 12 deletions(-) diff --git a/Makefile.am b/Makefile.am index c82503591..fd3dc7c19 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,7 @@ include $(top_srcdir)/doxygen/aminclude.am # Build in these directories: -SUBDIRS = Cantera examples test_problems +SUBDIRS = Cantera ext examples test_problems SUBDIRS += doxygen # Distribute these directories: diff --git a/configure.ac b/configure.ac index 36cfe35f8..f819c2875 100644 --- a/configure.ac +++ b/configure.ac @@ -58,6 +58,9 @@ AC_OUTPUT(Makefile examples/Makefile \ examples/cxx/Makefile \ test_problems/Makefile \ doxygen/Makefile \ + ext/Makefile \ + ext/tpx/Makefile \ + ext/math/Makefile \ Cantera/Makefile \ Cantera/src/Makefile Cantera/src/base/Makefile \ Cantera/src/converters/Makefile \ diff --git a/ext/Makefile.am b/ext/Makefile.am index 323231d9c..da562fe76 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -1,2 +1,2 @@ -SUBDIRS = tpx +SUBDIRS = tpx math diff --git a/ext/Makefile.in b/ext/Makefile.in index c9803ddd7..f01d5573b 100755 --- a/ext/Makefile.in +++ b/ext/Makefile.in @@ -240,7 +240,7 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -SUBDIRS = tpx +SUBDIRS = tpx math all: all-recursive .SUFFIXES: diff --git a/ext/math/Makefile.am b/ext/math/Makefile.am index b67d774b7..7a221434d 100644 --- a/ext/math/Makefile.am +++ b/ext/math/Makefile.am @@ -1,21 +1,24 @@ -h_sources = -cc_sources = +cc_sources = mach.cpp printstring.c + +fc_sources = ddaspk.f dgbfa.f dgbsl.f \ + dgefa.f dgesl.f dp1vlu.f dpcoef.f \ + dpolft.f fdump.f j4save.f pcoef.f \ + polfit.f pvalue.f xercnt.f xerhlt.f \ + xermsg.f xerprn.f xersve.f xgetua.f INCLUDES = AM_CXXFLAGS = $(INCLUDES) +AM_FCFLAGS = $(INCLUDES) -lib_LTLIBRARIES = $(top_builddir)/build/lib/libctbase.la +lib_LTLIBRARIES = $(top_builddir)/build/lib/libctmath.la library_includedir = $(top_builddir)/build/include library_include_HEADERS = $(h_sources) -otherincludedir = $(top_builddir)/build/include/cantera/kernel -otherinclude_HEADERS = $(h_sources) - #----------------------- # Cantera Converters C/C++ library #----------------------- -__top_builddir__build_lib_libctbase_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -__top_builddir__build_lib_libctbase_la_SOURCES = $(cc_sources) $(h_sources) +__top_builddir__build_lib_libctmath_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libctmath_la_SOURCES = $(fc_sources) $(cc_sources) CLEANFILES = *.o diff --git a/ext/math/printstring.c b/ext/math/printstring.c index fd6476ed7..f4c8cdde1 100644 --- a/ext/math/printstring.c +++ b/ext/math/printstring.c @@ -1,9 +1,13 @@ #include #include "config.h" + +typedef int ftnlen; + #ifdef __cplusplus extern "C" { #endif -void printstring_(char* s, ftnlen ls) { +void printstring_(char* s, ftnlen ls) +{ printf("%s",s); } #ifdef __cplusplus From cd2948d1390238e7ec74376f59cdd809d5b45797 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 5 Jan 2012 19:56:22 +0000 Subject: [PATCH 040/124] [cantera]: relocating for a moment, saving what i have here --- Cantera/Makefile.am | 2 +- Cantera/user/Makefile.am | 17 ++ Cantera/user/Makefile.in | 66 ----- configure.ac | 5 +- examples/cxx/Makefile.am | 3 +- ext/CMakeLists.txt | 12 - ext/Makefile.am | 2 +- ext/Makefile.in | 593 --------------------------------------- ext/cvode/Makefile.in | 104 ------- 9 files changed, 25 insertions(+), 779 deletions(-) create mode 100644 Cantera/user/Makefile.am delete mode 100644 Cantera/user/Makefile.in delete mode 100644 ext/CMakeLists.txt delete mode 100755 ext/Makefile.in delete mode 100755 ext/cvode/Makefile.in diff --git a/Cantera/Makefile.am b/Cantera/Makefile.am index bc93f0db6..c9ac09f25 100644 --- a/Cantera/Makefile.am +++ b/Cantera/Makefile.am @@ -1,4 +1,4 @@ # $Id: $ # will need to add python and matlab -SUBDIRS = src +SUBDIRS = src user diff --git a/Cantera/user/Makefile.am b/Cantera/user/Makefile.am new file mode 100644 index 000000000..f65351db9 --- /dev/null +++ b/Cantera/user/Makefile.am @@ -0,0 +1,17 @@ +cc_sources = user.cpp + +INCLUDES = -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera +AM_CXXFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = $(top_builddir)/build/lib/libuser.la +library_includedir = $(top_builddir)/build/include +library_include_HEADERS = $(h_sources) + +#----------------------- +# Cantera Converters C/C++ library +#----------------------- + +__top_builddir__build_lib_libuser_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libuser_la_SOURCES = $(cc_sources) $(h_sources) + +CLEANFILES = *.o diff --git a/Cantera/user/Makefile.in b/Cantera/user/Makefile.in deleted file mode 100644 index 2160a2aa5..000000000 --- a/Cantera/user/Makefile.in +++ /dev/null @@ -1,66 +0,0 @@ -#/bin/sh -############################################################### -# $Author: hkmoffa $ -# $Date: 2008/01/01 19:19:50 $ -# $Revision: 1.7 $ -# -# Copyright 2002 California Institute of Technology -# -############################################################### - -############################################################### -# list your object files here -# This is probably the only thing you need to change in this file. - -OBJS = user.o - -############################################################### - -.SUFFIXES : -.SUFFIXES : .cpp .d .o - -OBJDIR = . -PIC_FLAG=@PIC@ -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) - - -CXX_INCLUDES = -I../src/base - -LIB = @buildlib@/libuser.a - -DEPENDS = $(OBJS:.o=.d) - -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_INCLUDES) $*.cpp > $*.d - -.cpp.o: - @CXX@ -c $< $(CXX_FLAGS) $(CXX_INCLUDES) - -.f.o: - @F77@ -c $< $(F77_FLAGS) - -all lib: $(LIB) - -$(LIB): $(OBJS) - @ARCHIVE@ $(LIB) $(OBJS) > /dev/null - -clean: - $(RM) *.o *~ $(LIB) - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(OBJS): Makefile - -install: - -TAGS: - etags *.h *.cpp - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/configure.ac b/configure.ac index f819c2875..c3436b96b 100644 --- a/configure.ac +++ b/configure.ac @@ -61,8 +61,11 @@ AC_OUTPUT(Makefile examples/Makefile \ ext/Makefile \ ext/tpx/Makefile \ ext/math/Makefile \ + ext/cvode/Makefile \ Cantera/Makefile \ - Cantera/src/Makefile Cantera/src/base/Makefile \ + Cantera/user/Makefile \ + Cantera/src/Makefile \ + Cantera/src/base/Makefile \ Cantera/src/converters/Makefile \ Cantera/src/kinetics/Makefile \ Cantera/src/numerics/Makefile Cantera/src/oneD/Makefile \ diff --git a/examples/cxx/Makefile.am b/examples/cxx/Makefile.am index 33dc42f22..da8f90421 100644 --- a/examples/cxx/Makefile.am +++ b/examples/cxx/Makefile.am @@ -7,7 +7,8 @@ cc_sources = examples.cpp kinetics_example1.cpp kinetics_example2.cpp \ LINK = -lkinetics -ltransport -lthermo -lctnumerics LINK += -lctbase -ltpx -lctmath -lconverters -# -luser -lcvode -lctlapack -lctblas -lctf2c -lctcxx -luser -lstdc++ +LINK += -luser +# -lcvode -lctlapack -lctblas -lctf2c -lctcxx -luser -lstdc++ LIBS = -L$(top_builddir)/build/lib/ $(LINK) diff --git a/ext/CMakeLists.txt b/ext/CMakeLists.txt deleted file mode 100644 index 42207b639..000000000 --- a/ext/CMakeLists.txt +++ /dev/null @@ -1,12 +0,0 @@ -SET (CMAKE_C_FLAGS -DSkip_f2c_Undefs) - -INCLUDE_DIRECTORIES (${PROJECT_SOURCE_DIR}/ext/f2c_libs ) - -add_subdirectory ( f2c_libs ) -add_subdirectory ( f2c_blas ) -add_subdirectory ( f2c_lapack ) -add_subdirectory ( f2c_math ) -add_subdirectory ( cvode ) -add_subdirectory ( tpx ) - - diff --git a/ext/Makefile.am b/ext/Makefile.am index da562fe76..f6374a334 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -1,2 +1,2 @@ -SUBDIRS = tpx math +SUBDIRS = tpx math cvode diff --git a/ext/Makefile.in b/ext/Makefile.in deleted file mode 100755 index f01d5573b..000000000 --- a/ext/Makefile.in +++ /dev/null @@ -1,593 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = ext -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ - html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ - $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ - distdir -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -SUBDIRS = tpx math -all: all-recursive - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu ext/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu ext/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run `make' without going through this Makefile. -# To change the values of `make' variables: instead of editing Makefiles, -# (1) if the variable is set in `config.status', edit `config.status' -# (which will cause the Makefiles to be regenerated when you run `make'); -# (2) otherwise, pass the desired values on the `make' command line. -$(RECURSIVE_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -$(RECURSIVE_CLEAN_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - rev=''; for subdir in $$list; do \ - if test "$$subdir" = "."; then :; else \ - rev="$$subdir $$rev"; \ - fi; \ - done; \ - rev="$$rev ."; \ - target=`echo $@ | sed s/-recursive//`; \ - for subdir in $$rev; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done && test -z "$$fail" -tags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ - done -ctags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ - done - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ - install-am install-strip tags-recursive - -.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ - all all-am check check-am clean clean-generic clean-libtool \ - ctags ctags-recursive distclean distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ - uninstall uninstall-am - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/ext/cvode/Makefile.in b/ext/cvode/Makefile.in deleted file mode 100755 index ef438dc2b..000000000 --- a/ext/cvode/Makefile.in +++ /dev/null @@ -1,104 +0,0 @@ -# -# $Source: /cvsroot/cantera/cantera/ext/cvode/Makefile.in,v $ -# $Author: hkmoffa $ -# $Revision: 1.10 $ -# $Date: 2008/12/30 21:49:42 $ -# -#---------------------------------------------------------------------------- -# CVODE -#---------------------------------------------------------------------------- -# This file will compile all the CVODE modules in order to make the Unix -# library cvodelib.a. All object (.o) files are removed after the library -# has been created. -# -# The following variables are used: -# -# COMPILER - set to use the gcc compiler -# OPTS - list of compiler options -# OBJS - list of object files in cvodelib.a -# -# Modify the COMPILER and OPTS variables as needed. -# -do_ranlib = @DO_RANLIB@ - -all: @buildlib@/libcvode.a - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -COMPILER = @CC@ - -OPTS = -I../include @CFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -OBJS = source/cvode.o source/cvdense.o source/dense.o source/cvband.o \ - source/band.o source/cvdiag.o source/cvspgmr.o source/spgmr.o \ - source/iterativ.o source/cvbandpre.o source/nvector.o source/llnlmath.o - - -@buildlib@/libcvode.a: $(OBJS) - $(RM) @buildlib@/libcvode.a - (ar rcv @buildlib@/libcvode.a $(OBJS)) -ifeq ($(do_ranlib),1) - @RANLIB@ @buildlib@/libcvode.a -endif - -source/cvode.o: source/cvode.c include/cvode.h include/llnltyps.h \ - include/nvector.h include/llnlmath.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c cvode.c) - -source/cvdense.o: source/cvdense.c include/cvdense.h include/cvode.h \ - include/dense.h include/llnltyps.h include/nvector.h \ - include/llnlmath.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c cvdense.c) - -source/dense.o: source/dense.c include/dense.h include/llnltyps.h \ - include/nvector.h include/llnlmath.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c dense.c) - -source/cvband.o: source/cvband.c include/cvband.h include/cvode.h \ - include/band.h include/llnltyps.h include/nvector.h \ - include/llnlmath.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c cvband.c) - -source/band.o: source/band.c include/band.h include/llnltyps.h \ - include/nvector.h include/llnlmath.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c band.c) - -source/cvdiag.o: source/cvdiag.c include/cvdiag.h include/cvode.h \ - include/llnltyps.h include/nvector.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c cvdiag.c) - -source/cvspgmr.o: source/cvspgmr.c include/cvspgmr.h include/cvode.h \ - include/llnltyps.h include/nvector.h include/llnlmath.h \ - include/iterativ.h include/spgmr.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c cvspgmr.c) - -source/spgmr.o: source/spgmr.c include/spgmr.h include/iterativ.h \ - include/llnltyps.h include/nvector.h include/llnlmath.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c spgmr.c) - -source/iterativ.o: source/iterativ.c include/iterativ.h include/llnltyps.h \ - include/nvector.h include/llnlmath.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c iterativ.c) - -source/cvbandpre.o: source/cvbandpre.c include/cvbandpre.h include/cvode.h \ - include/nvector.h include/llnltyps.h include/llnlmath.h \ - include/band.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c cvbandpre.c) - -source/nvector.o: source/nvector.c include/nvector.h include/llnltyps.h \ - include/llnlmath.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c nvector.c) - -source/llnlmath.o: source/llnlmath.c include/llnlmath.h include/llnltyps.h - (cd source; $(PURIFY) $(COMPILER) $(OPTS) -c llnlmath.c) - -$(OBJS): Makefile - -clean: - $(RM) @buildlib@/libcvode.a - $(RM) $(OBJS) - -depends: - From 0516439d68dc05cdc2823264b4c0be3888200f25 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 17 Jan 2012 22:11:26 +0000 Subject: [PATCH 041/124] [cantera]: removing these directories, not sure why we need them, and they are counter to the common cantera organizing structure --- ext/cvode/{source => }/band.c | 0 ext/cvode/{include => }/band.h | 0 ext/cvode/{source => }/cvband.c | 0 ext/cvode/{include => }/cvband.h | 0 ext/cvode/{source => }/cvbandpre.c | 0 ext/cvode/{include => }/cvbandpre.h | 0 ext/cvode/{source => }/cvdense.c | 0 ext/cvode/{include => }/cvdense.h | 0 ext/cvode/{source => }/cvdiag.c | 0 ext/cvode/{include => }/cvdiag.h | 0 ext/cvode/{source => }/cvode.c | 0 ext/cvode/{include => }/cvode.h | 0 ext/cvode/{source => }/cvspgmr.c | 0 ext/cvode/{include => }/cvspgmr.h | 0 ext/cvode/{source => }/dense.c | 0 ext/cvode/{include => }/dense.h | 0 ext/cvode/{source => }/iterativ.c | 0 ext/cvode/{include => }/iterativ.h | 0 ext/cvode/{source => }/llnlmath.c | 0 ext/cvode/{include => }/llnlmath.h | 0 ext/cvode/{include => }/llnltyps.h | 0 ext/cvode/{source => }/nvector.c | 0 ext/cvode/{include => }/nvector.h | 0 ext/cvode/{source => }/spgmr.c | 0 ext/cvode/{include => }/spgmr.h | 0 25 files changed, 0 insertions(+), 0 deletions(-) rename ext/cvode/{source => }/band.c (100%) rename ext/cvode/{include => }/band.h (100%) rename ext/cvode/{source => }/cvband.c (100%) rename ext/cvode/{include => }/cvband.h (100%) rename ext/cvode/{source => }/cvbandpre.c (100%) rename ext/cvode/{include => }/cvbandpre.h (100%) rename ext/cvode/{source => }/cvdense.c (100%) rename ext/cvode/{include => }/cvdense.h (100%) rename ext/cvode/{source => }/cvdiag.c (100%) rename ext/cvode/{include => }/cvdiag.h (100%) rename ext/cvode/{source => }/cvode.c (100%) rename ext/cvode/{include => }/cvode.h (100%) rename ext/cvode/{source => }/cvspgmr.c (100%) rename ext/cvode/{include => }/cvspgmr.h (100%) rename ext/cvode/{source => }/dense.c (100%) rename ext/cvode/{include => }/dense.h (100%) rename ext/cvode/{source => }/iterativ.c (100%) rename ext/cvode/{include => }/iterativ.h (100%) rename ext/cvode/{source => }/llnlmath.c (100%) rename ext/cvode/{include => }/llnlmath.h (100%) rename ext/cvode/{include => }/llnltyps.h (100%) rename ext/cvode/{source => }/nvector.c (100%) rename ext/cvode/{include => }/nvector.h (100%) rename ext/cvode/{source => }/spgmr.c (100%) rename ext/cvode/{include => }/spgmr.h (100%) diff --git a/ext/cvode/source/band.c b/ext/cvode/band.c similarity index 100% rename from ext/cvode/source/band.c rename to ext/cvode/band.c diff --git a/ext/cvode/include/band.h b/ext/cvode/band.h similarity index 100% rename from ext/cvode/include/band.h rename to ext/cvode/band.h diff --git a/ext/cvode/source/cvband.c b/ext/cvode/cvband.c similarity index 100% rename from ext/cvode/source/cvband.c rename to ext/cvode/cvband.c diff --git a/ext/cvode/include/cvband.h b/ext/cvode/cvband.h similarity index 100% rename from ext/cvode/include/cvband.h rename to ext/cvode/cvband.h diff --git a/ext/cvode/source/cvbandpre.c b/ext/cvode/cvbandpre.c similarity index 100% rename from ext/cvode/source/cvbandpre.c rename to ext/cvode/cvbandpre.c diff --git a/ext/cvode/include/cvbandpre.h b/ext/cvode/cvbandpre.h similarity index 100% rename from ext/cvode/include/cvbandpre.h rename to ext/cvode/cvbandpre.h diff --git a/ext/cvode/source/cvdense.c b/ext/cvode/cvdense.c similarity index 100% rename from ext/cvode/source/cvdense.c rename to ext/cvode/cvdense.c diff --git a/ext/cvode/include/cvdense.h b/ext/cvode/cvdense.h similarity index 100% rename from ext/cvode/include/cvdense.h rename to ext/cvode/cvdense.h diff --git a/ext/cvode/source/cvdiag.c b/ext/cvode/cvdiag.c similarity index 100% rename from ext/cvode/source/cvdiag.c rename to ext/cvode/cvdiag.c diff --git a/ext/cvode/include/cvdiag.h b/ext/cvode/cvdiag.h similarity index 100% rename from ext/cvode/include/cvdiag.h rename to ext/cvode/cvdiag.h diff --git a/ext/cvode/source/cvode.c b/ext/cvode/cvode.c similarity index 100% rename from ext/cvode/source/cvode.c rename to ext/cvode/cvode.c diff --git a/ext/cvode/include/cvode.h b/ext/cvode/cvode.h similarity index 100% rename from ext/cvode/include/cvode.h rename to ext/cvode/cvode.h diff --git a/ext/cvode/source/cvspgmr.c b/ext/cvode/cvspgmr.c similarity index 100% rename from ext/cvode/source/cvspgmr.c rename to ext/cvode/cvspgmr.c diff --git a/ext/cvode/include/cvspgmr.h b/ext/cvode/cvspgmr.h similarity index 100% rename from ext/cvode/include/cvspgmr.h rename to ext/cvode/cvspgmr.h diff --git a/ext/cvode/source/dense.c b/ext/cvode/dense.c similarity index 100% rename from ext/cvode/source/dense.c rename to ext/cvode/dense.c diff --git a/ext/cvode/include/dense.h b/ext/cvode/dense.h similarity index 100% rename from ext/cvode/include/dense.h rename to ext/cvode/dense.h diff --git a/ext/cvode/source/iterativ.c b/ext/cvode/iterativ.c similarity index 100% rename from ext/cvode/source/iterativ.c rename to ext/cvode/iterativ.c diff --git a/ext/cvode/include/iterativ.h b/ext/cvode/iterativ.h similarity index 100% rename from ext/cvode/include/iterativ.h rename to ext/cvode/iterativ.h diff --git a/ext/cvode/source/llnlmath.c b/ext/cvode/llnlmath.c similarity index 100% rename from ext/cvode/source/llnlmath.c rename to ext/cvode/llnlmath.c diff --git a/ext/cvode/include/llnlmath.h b/ext/cvode/llnlmath.h similarity index 100% rename from ext/cvode/include/llnlmath.h rename to ext/cvode/llnlmath.h diff --git a/ext/cvode/include/llnltyps.h b/ext/cvode/llnltyps.h similarity index 100% rename from ext/cvode/include/llnltyps.h rename to ext/cvode/llnltyps.h diff --git a/ext/cvode/source/nvector.c b/ext/cvode/nvector.c similarity index 100% rename from ext/cvode/source/nvector.c rename to ext/cvode/nvector.c diff --git a/ext/cvode/include/nvector.h b/ext/cvode/nvector.h similarity index 100% rename from ext/cvode/include/nvector.h rename to ext/cvode/nvector.h diff --git a/ext/cvode/source/spgmr.c b/ext/cvode/spgmr.c similarity index 100% rename from ext/cvode/source/spgmr.c rename to ext/cvode/spgmr.c diff --git a/ext/cvode/include/spgmr.h b/ext/cvode/spgmr.h similarity index 100% rename from ext/cvode/include/spgmr.h rename to ext/cvode/spgmr.h From f9f88791222de36355a0d264e1f529379d017c47 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 17 Jan 2012 22:38:14 +0000 Subject: [PATCH 042/124] [cantera]: adding a missing makefile.am --- ext/cvode/Makefile.am | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 ext/cvode/Makefile.am diff --git a/ext/cvode/Makefile.am b/ext/cvode/Makefile.am new file mode 100644 index 000000000..ffad4d340 --- /dev/null +++ b/ext/cvode/Makefile.am @@ -0,0 +1,25 @@ +cc_sources = band.c cvband.c cvbandpre.c cvdense.c cvdiag.c \ + cvode.c cvspgmr.c dense.c iterativ.c llnlmath.c \ + nvector.c spgmr.c + +h_sources = band.h cvband.h cvbandpre.h cvdense.h cvdiag.h \ + cvode.h cvspgmr.h dense.h iterativ.h llnlmath.h \ + llnltyps.h nvector.h spgmr.h + + +INCLUDES = +AM_CXXFLAGS = $(INCLUDES) +AM_FCFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = $(top_builddir)/build/lib/libcvode.la +library_includedir = $(top_builddir)/build/include +library_include_HEADERS = $(h_sources) + +#----------------------- +# Cantera Converters C/C++ library +#----------------------- + +__top_builddir__build_lib_libcvode_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libcvode_la_SOURCES = $(fc_sources) $(cc_sources) + +CLEANFILES = *.o From bc259b91d0e8eba20fb6df633750cba0e554b54c Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 17 Jan 2012 22:41:26 +0000 Subject: [PATCH 043/124] [cantera]: adding a library to the examples makefile depends --- examples/cxx/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/cxx/Makefile.am b/examples/cxx/Makefile.am index da8f90421..d70bfd1bd 100644 --- a/examples/cxx/Makefile.am +++ b/examples/cxx/Makefile.am @@ -7,8 +7,8 @@ cc_sources = examples.cpp kinetics_example1.cpp kinetics_example2.cpp \ LINK = -lkinetics -ltransport -lthermo -lctnumerics LINK += -lctbase -ltpx -lctmath -lconverters -LINK += -luser -# -lcvode -lctlapack -lctblas -lctf2c -lctcxx -luser -lstdc++ +LINK += -luser -lcvode -lstdc++ +# -lctlapack -lctblas -lctf2c -lctcxx -luser -lstdc++ LIBS = -L$(top_builddir)/build/lib/ $(LINK) From bdcd10b9ab702aad7d570c106c093b9145142fa5 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 17 Jan 2012 22:53:51 +0000 Subject: [PATCH 044/124] [cantera]: server is going up and down, committing to save what i have --- ext/lapack/Makefile.am | 28 +++++++++++++ ext/lapack/Makefile.in | 93 ------------------------------------------ 2 files changed, 28 insertions(+), 93 deletions(-) create mode 100644 ext/lapack/Makefile.am delete mode 100755 ext/lapack/Makefile.in diff --git a/ext/lapack/Makefile.am b/ext/lapack/Makefile.am new file mode 100644 index 000000000..df5399853 --- /dev/null +++ b/ext/lapack/Makefile.am @@ -0,0 +1,28 @@ +fc_sources = dbdsqr.f dgbtrf.f dgbtf2.f dgbtrs.f dgbsv.f \ + dgebd2.f dgebrd.f dgelq2.f dgelqf.f dgelss.f \ + dgeqr2.f dgeqrf.f dgetf2.f dgetrf.f dgetri.f \ + dgetrs.f dlabad.f dlabrd.f dlacpy.f dlamch.f \ + dlange.f dlapy2.f dlarf.f dlarfb.f dlarfg.f \ + dlarft.f dlartg.f dlas2.f dlascl.f dlaset.f \ + dlasq1.f dlasq2.f dlasq3.f dlasq4.f dlasr.f \ + dlasrt.f dlassq.f dlasv2.f dlaswp.f dorg2r.f \ + dorgbr.f dorgl2.f dorglq.f dorgqr.f dorm2r.f \ + dormbr.f dorml2.f dormlq.f dormqr.f drscl.f \ + ilaenv.f + +INCLUDES = +AM_CXXFLAGS = $(INCLUDES) +AM_FCFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = $(top_builddir)/build/lib/libctlapack.la +library_includedir = $(top_builddir)/build/include +library_include_HEADERS = $(h_sources) + +#----------------------- +# Cantera Converters C/C++ library +#----------------------- + +__top_builddir__build_lib_libctlapack_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libctlapack_la_SOURCES = $(fc_sources) $(cc_sources) + +CLEANFILES = *.o diff --git a/ext/lapack/Makefile.in b/ext/lapack/Makefile.in deleted file mode 100755 index ce5e6e97e..000000000 --- a/ext/lapack/Makefile.in +++ /dev/null @@ -1,93 +0,0 @@ -# $License$ -# $Id: Makefile.in,v 1.10 2008/12/30 21:58:10 hkmoffa Exp $ -# -#/bin/sh - -.SUFFIXES : -.SUFFIXES : .f .o - -LAPACKLIB = @buildlib@/libctlapack.a - -do_ranlib = @DO_RANLIB@ - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -F_FLAGS = @FFLAGS@ $(PIC_FLAG) - -OBJS = \ -dbdsqr.o \ -dgbtrf.o \ -dgbtf2.o \ -dgbtrs.o \ -dgbsv.o \ -dgebd2.o \ -dgebrd.o \ -dgelq2.o \ -dgelqf.o \ -dgelss.o \ -dgeqr2.o \ -dgeqrf.o \ -dgetf2.o \ -dgetrf.o \ -dgetri.o \ -dgetrs.o \ -dlabad.o \ -dlabrd.o \ -dlacpy.o \ -dlamch.o \ -dlange.o \ -dlapy2.o \ -dlarf.o \ -dlarfb.o \ -dlarfg.o \ -dlarft.o \ -dlartg.o \ -dlas2.o \ -dlascl.o \ -dlaset.o \ -dlasq1.o \ -dlasq2.o \ -dlasq3.o \ -dlasq4.o \ -dlasr.o \ -dlasrt.o \ -dlassq.o \ -dlasv2.o \ -dlaswp.o \ -dorg2r.o \ -dorgbr.o \ -dorgl2.o \ -dorglq.o \ -dorgqr.o \ -dorm2r.o \ -dormbr.o \ -dorml2.o \ -dormlq.o \ -dormqr.o \ -drscl.o \ -ilaenv.o - -#SRCS = $(OBJS:.o=.cpp) - -all: $(LAPACKLIB) - -$(LAPACKLIB): $(OBJS) - @ARCHIVE@ $(LAPACKLIB) $(OBJS) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LAPACKLIB) -endif - -# -# Right now g77 is not a known compiler to PURIFY. Why, -# I don't know. Taking the instrumentation out for now -# -%.o : %.f - @F77@ -c $< $(F77_INCLUDES) $(F_FLAGS) - -$(OBJS): Makefile - -clean: - $(RM) $(OBJS) $(LAPACKLIB) -depends: From 8e14ca5535aa79032f0488368ed84e87bf70d860 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 17 Jan 2012 22:58:11 +0000 Subject: [PATCH 045/124] [cantera]: as previous checkin, working with limited stability here --- configure.ac | 1 + ext/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c3436b96b..5f3a8a75c 100644 --- a/configure.ac +++ b/configure.ac @@ -62,6 +62,7 @@ AC_OUTPUT(Makefile examples/Makefile \ ext/tpx/Makefile \ ext/math/Makefile \ ext/cvode/Makefile \ + ext/lapack/Makefile \ Cantera/Makefile \ Cantera/user/Makefile \ Cantera/src/Makefile \ diff --git a/ext/Makefile.am b/ext/Makefile.am index f6374a334..20d006bb4 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -1,2 +1,2 @@ -SUBDIRS = tpx math cvode +SUBDIRS = tpx math cvode lapack From 2d441139de067d62ea5b5f8c4686c0685a913f17 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 17 Jan 2012 23:01:13 +0000 Subject: [PATCH 046/124] [cantera]: adding another library link to examples --- examples/cxx/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/cxx/Makefile.am b/examples/cxx/Makefile.am index d70bfd1bd..3079ac8e7 100644 --- a/examples/cxx/Makefile.am +++ b/examples/cxx/Makefile.am @@ -7,8 +7,8 @@ cc_sources = examples.cpp kinetics_example1.cpp kinetics_example2.cpp \ LINK = -lkinetics -ltransport -lthermo -lctnumerics LINK += -lctbase -ltpx -lctmath -lconverters -LINK += -luser -lcvode -lstdc++ -# -lctlapack -lctblas -lctf2c -lctcxx -luser -lstdc++ +LINK += -luser -lcvode -lstdc++ -lctlapack +# -lctblas -lctf2c -lctcxx -luser -lstdc++ LIBS = -L$(top_builddir)/build/lib/ $(LINK) From 0f98d7a5fa21a4b81bf7a97ae78f983454ff3352 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 17 Jan 2012 23:16:34 +0000 Subject: [PATCH 047/124] [cantera]: adding blas support --- configure.ac | 1 + examples/cxx/Makefile.am | 3 +- ext/Makefile.am | 2 +- ext/blas/Makefile.am | 24 +++++++++++++ ext/blas/Makefile.in | 78 ---------------------------------------- 5 files changed, 28 insertions(+), 80 deletions(-) create mode 100644 ext/blas/Makefile.am delete mode 100755 ext/blas/Makefile.in diff --git a/configure.ac b/configure.ac index 5f3a8a75c..123b62c49 100644 --- a/configure.ac +++ b/configure.ac @@ -61,6 +61,7 @@ AC_OUTPUT(Makefile examples/Makefile \ ext/Makefile \ ext/tpx/Makefile \ ext/math/Makefile \ + ext/blas/Makefile \ ext/cvode/Makefile \ ext/lapack/Makefile \ Cantera/Makefile \ diff --git a/examples/cxx/Makefile.am b/examples/cxx/Makefile.am index 3079ac8e7..19abff458 100644 --- a/examples/cxx/Makefile.am +++ b/examples/cxx/Makefile.am @@ -8,7 +8,8 @@ cc_sources = examples.cpp kinetics_example1.cpp kinetics_example2.cpp \ LINK = -lkinetics -ltransport -lthermo -lctnumerics LINK += -lctbase -ltpx -lctmath -lconverters LINK += -luser -lcvode -lstdc++ -lctlapack -# -lctblas -lctf2c -lctcxx -luser -lstdc++ +LINK += -lctblas +# -lctf2c -lctcxx -luser -lstdc++ LIBS = -L$(top_builddir)/build/lib/ $(LINK) diff --git a/ext/Makefile.am b/ext/Makefile.am index 20d006bb4..797cbfad0 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -1,2 +1,2 @@ -SUBDIRS = tpx math cvode lapack +SUBDIRS = tpx math cvode lapack blas diff --git a/ext/blas/Makefile.am b/ext/blas/Makefile.am new file mode 100644 index 000000000..3bdd18206 --- /dev/null +++ b/ext/blas/Makefile.am @@ -0,0 +1,24 @@ +fc_sources = dasum.f dcabs1.f ddot.f dgemm.f dger.f drot.f drotm.f \ + dsbmv.f dsdot.f dspr2.f dswap.f dsymv.f dsyr2k.f \ + dsyrk.f dtbsv.f dtpsv.f dtrmv.f dtrsv.f dznrm2.f \ + idamax.f izamax.f xerbla.f daxpy.f dcopy.f dgbmv.f \ + dgemv.f dnrm2.f drotg.f drotmg.f dscal.f dspmv.f \ + dspr.f dsymm.f dsyr2.f dsyr.f dtbmv.f dtpmv.f dtrmm.f \ + dtrsm.f dzasum.f icamax.f isamax.f lsame.f + +INCLUDES = +AM_CXXFLAGS = $(INCLUDES) +AM_FCFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = $(top_builddir)/build/lib/libctblas.la +library_includedir = $(top_builddir)/build/include +library_include_HEADERS = $(h_sources) + +#----------------------- +# Cantera Converters C/C++ library +#----------------------- + +__top_builddir__build_lib_libctblas_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libctblas_la_SOURCES = $(fc_sources) $(cc_sources) + +CLEANFILES = *.o diff --git a/ext/blas/Makefile.in b/ext/blas/Makefile.in deleted file mode 100755 index caef518a0..000000000 --- a/ext/blas/Makefile.in +++ /dev/null @@ -1,78 +0,0 @@ -#/bin/sh -# $License$ -# -# $Id: Makefile.in,v 1.8 2008/12/30 21:49:41 hkmoffa Exp $ -# -do_ranlib = @DO_RANLIB@ -BLASLIB = @buildlib@/libctblas.a - -SUFFIXES= -SUFFIXES= .f .o - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ - -F_FLAGS = @FFLAGS@ $(PIC_FLAG) - -OBJS = \ -dasum.o \ -daxpy.o \ -dcabs1.o \ -dcopy.o \ -ddot.o \ -dgbmv.o \ -dgemm.o \ -dgemv.o \ -dger.o \ -dnrm2.o \ -drot.o \ -drotg.o \ -drotm.o \ -drotmg.o \ -dsbmv.o \ -dscal.o \ -dsdot.o \ -dspmv.o \ -dspr.o \ -dspr2.o \ -dswap.o \ -dsymm.o \ -dsymv.o \ -dsyr.o \ -dsyr2.o \ -dsyr2k.o \ -dsyrk.o \ -dtbmv.o \ -dtbsv.o \ -dtpmv.o \ -dtpsv.o \ -dtrmm.o \ -dtrmv.o \ -dtrsm.o \ -dtrsv.o \ -dzasum.o \ -idamax.o \ -lsame.o \ -xerbla.o - -# dznrm2.o \ - - -#SRCS = $(OBJS:.o=.cpp) - - -$(BLASLIB): $(OBJS) - @ARCHIVE@ $(BLASLIB) $(OBJS) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(ZEROD_LIB) -endif - -%.o : %.f - $(PURIFY) @F77@ -c $< $(F_FLAGS) - -clean: - $(RM) $(OBJS) $(BLASLIB) - -depends: - From 43767fab35647230b5cb1fb07cc2bf8bf91b7b46 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 18 Jan 2012 15:59:22 +0000 Subject: [PATCH 048/124] [cantera]: update from hacking last night, adding f2c lib --- configure.ac | 1 + ext/Makefile.am | 2 +- ext/f2c_libs/CMakeLists.txt | 39 -- ext/f2c_libs/Makefile.am | 54 ++ ext/f2c_libs/Makefile.in | 975 +++++++++++++++++++++++++++++------- 5 files changed, 854 insertions(+), 217 deletions(-) delete mode 100644 ext/f2c_libs/CMakeLists.txt create mode 100644 ext/f2c_libs/Makefile.am diff --git a/configure.ac b/configure.ac index 123b62c49..020ecf307 100644 --- a/configure.ac +++ b/configure.ac @@ -64,6 +64,7 @@ AC_OUTPUT(Makefile examples/Makefile \ ext/blas/Makefile \ ext/cvode/Makefile \ ext/lapack/Makefile \ + ext/f2c_libs/Makefile \ Cantera/Makefile \ Cantera/user/Makefile \ Cantera/src/Makefile \ diff --git a/ext/Makefile.am b/ext/Makefile.am index 797cbfad0..2027c66ca 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -1,2 +1,2 @@ -SUBDIRS = tpx math cvode lapack blas +SUBDIRS = tpx math cvode lapack blas f2c_libs diff --git a/ext/f2c_libs/CMakeLists.txt b/ext/f2c_libs/CMakeLists.txt deleted file mode 100644 index 1a481d2f8..000000000 --- a/ext/f2c_libs/CMakeLists.txt +++ /dev/null @@ -1,39 +0,0 @@ -SET (F2C_LIB_SRCS f77vers.c i77vers.c main.c s_rnge.c abort_.c - exit_.c getarg_.c iargc_.c - getenv_.c signal_.c s_stop.c s_paus.c - system_.c cabs.c - derf_.c derfc_.c erf_.c erfc_.c sig_die.c uninit.c - pow_ci.c pow_dd.c pow_di.c pow_hh.c - pow_ii.c pow_ri.c pow_zi.c pow_zz.c - c_abs.c c_cos.c c_div.c c_exp.c c_log.c c_sin.c - c_sqrt.c - z_abs.c z_cos.c z_div.c z_exp.c z_log.c z_sin.c - z_sqrt.c - r_abs.c r_acos.c r_asin.c r_atan.c r_atn2.c - r_cnjg.c r_cos.c - r_cosh.c r_dim.c r_exp.c r_imag.c r_int.c - r_lg10.c r_log.c r_mod.c r_nint.c r_sign.c - r_sin.c r_sinh.c r_sqrt.c r_tan.c r_tanh.c - d_abs.c d_acos.c d_asin.c d_atan.c d_atn2.c - d_cnjg.c d_cos.c d_cosh.c d_dim.c d_exp.c - d_imag.c d_int.c d_lg10.c d_log.c d_mod.c - d_nint.c d_prod.c d_sign.c d_sin.c d_sinh.c - d_sqrt.c d_tan.c d_tanh.c i_abs.c i_dim.c - i_dnnt.c i_indx.c i_len.c i_mod.c i_nint.c i_sign.c - lbitbits.c lbitshft.c h_abs.c h_dim.c h_dnnt.c - h_indx.c h_len.c h_mod.c h_nint.c h_sign.c - l_ge.c l_gt.c l_le.c l_lt.c hl_ge.c hl_gt.c - hl_le.c hl_lt.c ef1asc_.c ef1cmc_.c - f77_aloc.c s_cat.c s_cmp.c s_copy.c - backspac.c close.c dfe.c dolio.c due.c - endfile.c err.c - fmt.c fmtlib.c ftell_.c iio.c ilnw.c - inquire.c lread.c lwrite.c - open.c rdfmt.c rewind.c rsfe.c rsli.c - rsne.c sfe.c sue.c - typesize.c uio.c util.c wref.c wrtfmt.c - wsfe.c wsle.c wsne.c xwsne.c - dtime_.c etime_.c) - -ADD_LIBRARY(ctf2c ${F2C_LIB_SRCS}) - diff --git a/ext/f2c_libs/Makefile.am b/ext/f2c_libs/Makefile.am new file mode 100644 index 000000000..7d477fde7 --- /dev/null +++ b/ext/f2c_libs/Makefile.am @@ -0,0 +1,54 @@ +cc_sources = abort_.c c_log.c d_atn2.c dfe.c d_prod.c \ + due.c exit_.c getenv_.c hl_le.c i_dim.c \ + inquire.c lread.c pow_ii.c r_acos.c \ + r_dim.c r_nint.c r_tan.c signbit.c \ + uninit.c z_abs.c arithchk.c close.c \ + d_cnjg.c d_imag.c d_sign.c ef1asc_.c \ + f77_aloc.c h_abs.c hl_lt.c i_dnnt.c \ + i_sign.c lwrite.c pow_qq.c r_asin.c \ + rewind.c rsfe.c r_tanh.c s_paus.c util.c \ + z_cos.c backspac.c c_sin.c d_cos.c \ + d_int.c d_sin.c ef1cmc_.c f77vers.c \ + h_dim.c h_mod.c i_indx.c lbitbits.c \ + main.c pow_ri.c r_atan.c r_exp.c r_sign.c\ + s_cat.c s_rnge.c wref.c z_div.c c_abs.c \ + c_sqrt.c d_cosh.c d_lg10.c d_sinh.c \ + endfile.c fmt.c h_dnnt.c h_nint.c iio.c \ + lbitshft.c open.c pow_zi.c r_atn2.c \ + r_imag.c r_sin.c s_cmp.c s_stop.c \ + wrtfmt.c z_exp.c cabs.c d_abs.c d_dim.c \ + d_log.c d_sqrt.c erf_.c fmtlib.c h_indx.c\ + h_sign.c i_len.c l_ge.c pow_ci.c pow_zz.c\ + r_cnjg.c r_int.c r_sinh.c s_copy.c sue.c \ + wsfe.c z_log.c c_cos.c d_acos.c derf_.c \ + d_mod.c d_tan.c erfc_.c ftell64_.c \ + h_len.c i77vers.c ilnw.c l_gt.c pow_dd.c \ + qbitbits.c r_cos.c r_lg10.c rsli.c sfe.c \ + system_.c wsle.c z_sin.c c_div.c d_asin.c\ + derfc_.c d_nint.c d_tanh.c err.c ftell_.c\ + hl_ge.c i_abs.c i_mod.c l_le.c pow_di.c \ + qbitshft.c r_cosh.c r_log.c rsne.c \ + sig_die.c typesize.c wsne.c z_sqrt.c \ + c_exp.c d_atan.c d_exp.c dolio.c dtime_.c\ + etime_.c getarg_.c hl_gt.c iargc_.c \ + i_nint.c l_lt.c pow_hh.c r_abs.c rdfmt.c \ + r_mod.c r_sqrt.c signal_.c uio.c xwsne.c + +h_sources = f2c.h fio.h fmt.h fp.h lio.h rawio.h + +INCLUDES = +AM_CXXFLAGS = $(INCLUDES) +AM_FCFLAGS = $(INCLUDES) + +lib_LTLIBRARIES = $(top_builddir)/build/lib/libctf2c.la +library_includedir = $(top_builddir)/build/include +library_include_HEADERS = $(h_sources) + +#----------------------- +# Cantera Converters C/C++ library +#----------------------- + +__top_builddir__build_lib_libctf2c_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libctf2c_la_SOURCES = $(fc_sources) $(cc_sources) + +CLEANFILES = *.o diff --git a/ext/f2c_libs/Makefile.in b/ext/f2c_libs/Makefile.in index 714b7a4b0..92ab58b6d 100755 --- a/ext/f2c_libs/Makefile.in +++ b/ext/f2c_libs/Makefile.in @@ -1,206 +1,827 @@ -# -# $Source: /cvsroot/cantera/cantera/ext/f2c_libs/Makefile.in,v $ -# $Author$ -# $Revision$ -# $Date$ -# -# Unix makefile: see README. -# For C++, first "make hadd". -# If your compiler does not recognize ANSI C, add -# -DKR_headers -# to the CFLAGS = line below. -# On Sun and other BSD systems that do not provide an ANSI sprintf, add -# -DUSE_STRLEN -# to the CFLAGS = line below. -# On Linux systems, add -# -DNON_UNIX_STDIO -# to the CFLAGS = line below. For libf2c.so under Linux, also add -# -fPIC -# to the CFLAGS = line below. +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -.SUFFIXES: .c .o .d +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# the C compiler +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = ext/f2c_libs +DIST_COMMON = $(library_include_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__installdirs = "$(DESTDIR)$(libdir)" \ + "$(DESTDIR)$(library_includedir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +__top_builddir__build_lib_libctf2c_la_LIBADD = +am__objects_1 = abort_.lo c_log.lo d_atn2.lo dfe.lo d_prod.lo due.lo \ + exit_.lo getenv_.lo hl_le.lo i_dim.lo inquire.lo lread.lo \ + pow_ii.lo r_acos.lo r_dim.lo r_nint.lo r_tan.lo signbit.lo \ + uninit.lo z_abs.lo arithchk.lo close.lo d_cnjg.lo d_imag.lo \ + d_sign.lo ef1asc_.lo f77_aloc.lo h_abs.lo hl_lt.lo i_dnnt.lo \ + i_sign.lo lwrite.lo pow_qq.lo r_asin.lo rewind.lo rsfe.lo \ + r_tanh.lo s_paus.lo util.lo z_cos.lo backspac.lo c_sin.lo \ + d_cos.lo d_int.lo d_sin.lo ef1cmc_.lo f77vers.lo h_dim.lo \ + h_mod.lo i_indx.lo lbitbits.lo main.lo pow_ri.lo r_atan.lo \ + r_exp.lo r_sign.lo s_cat.lo s_rnge.lo wref.lo z_div.lo \ + c_abs.lo c_sqrt.lo d_cosh.lo d_lg10.lo d_sinh.lo endfile.lo \ + fmt.lo h_dnnt.lo h_nint.lo iio.lo lbitshft.lo open.lo \ + pow_zi.lo r_atn2.lo r_imag.lo r_sin.lo s_cmp.lo s_stop.lo \ + wrtfmt.lo z_exp.lo cabs.lo d_abs.lo d_dim.lo d_log.lo \ + d_sqrt.lo erf_.lo fmtlib.lo h_indx.lo h_sign.lo i_len.lo \ + l_ge.lo pow_ci.lo pow_zz.lo r_cnjg.lo r_int.lo r_sinh.lo \ + s_copy.lo sue.lo wsfe.lo z_log.lo c_cos.lo d_acos.lo derf_.lo \ + d_mod.lo d_tan.lo erfc_.lo ftell64_.lo h_len.lo i77vers.lo \ + ilnw.lo l_gt.lo pow_dd.lo qbitbits.lo r_cos.lo r_lg10.lo \ + rsli.lo sfe.lo system_.lo wsle.lo z_sin.lo c_div.lo d_asin.lo \ + derfc_.lo d_nint.lo d_tanh.lo err.lo ftell_.lo hl_ge.lo \ + i_abs.lo i_mod.lo l_le.lo pow_di.lo qbitshft.lo r_cosh.lo \ + r_log.lo rsne.lo sig_die.lo typesize.lo wsne.lo z_sqrt.lo \ + c_exp.lo d_atan.lo d_exp.lo dolio.lo dtime_.lo etime_.lo \ + getarg_.lo hl_gt.lo iargc_.lo i_nint.lo l_lt.lo pow_hh.lo \ + r_abs.lo rdfmt.lo r_mod.lo r_sqrt.lo signal_.lo uio.lo \ + xwsne.lo +am___top_builddir__build_lib_libctf2c_la_OBJECTS = $(am__objects_1) +__top_builddir__build_lib_libctf2c_la_OBJECTS = \ + $(am___top_builddir__build_lib_libctf2c_la_OBJECTS) +__top_builddir__build_lib_libctf2c_la_LINK = $(LIBTOOL) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(AM_CFLAGS) $(CFLAGS) \ + $(__top_builddir__build_lib_libctf2c_la_LDFLAGS) $(LDFLAGS) -o \ + $@ +am__dirstamp = $(am__leading_dot)dirstamp +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(__top_builddir__build_lib_libctf2c_la_SOURCES) +DIST_SOURCES = $(__top_builddir__build_lib_libctf2c_la_SOURCES) +HEADERS = $(library_include_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ CC = @CC@ -SHELL = /bin/sh -do_ranlib = @DO_RANLIB@ -do_stripsymbols = @HAVE_STRIPSYMBOLS@ -PIC_FLAG=@PIC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = abort_.c c_log.c d_atn2.c dfe.c d_prod.c \ + due.c exit_.c getenv_.c hl_le.c i_dim.c \ + inquire.c lread.c pow_ii.c r_acos.c \ + r_dim.c r_nint.c r_tan.c signbit.c \ + uninit.c z_abs.c arithchk.c close.c \ + d_cnjg.c d_imag.c d_sign.c ef1asc_.c \ + f77_aloc.c h_abs.c hl_lt.c i_dnnt.c \ + i_sign.c lwrite.c pow_qq.c r_asin.c \ + rewind.c rsfe.c r_tanh.c s_paus.c util.c \ + z_cos.c backspac.c c_sin.c d_cos.c \ + d_int.c d_sin.c ef1cmc_.c f77vers.c \ + h_dim.c h_mod.c i_indx.c lbitbits.c \ + main.c pow_ri.c r_atan.c r_exp.c r_sign.c\ + s_cat.c s_rnge.c wref.c z_div.c c_abs.c \ + c_sqrt.c d_cosh.c d_lg10.c d_sinh.c \ + endfile.c fmt.c h_dnnt.c h_nint.c iio.c \ + lbitshft.c open.c pow_zi.c r_atn2.c \ + r_imag.c r_sin.c s_cmp.c s_stop.c \ + wrtfmt.c z_exp.c cabs.c d_abs.c d_dim.c \ + d_log.c d_sqrt.c erf_.c fmtlib.c h_indx.c\ + h_sign.c i_len.c l_ge.c pow_ci.c pow_zz.c\ + r_cnjg.c r_int.c r_sinh.c s_copy.c sue.c \ + wsfe.c z_log.c c_cos.c d_acos.c derf_.c \ + d_mod.c d_tan.c erfc_.c ftell64_.c \ + h_len.c i77vers.c ilnw.c l_gt.c pow_dd.c \ + qbitbits.c r_cos.c r_lg10.c rsli.c sfe.c \ + system_.c wsle.c z_sin.c c_div.c d_asin.c\ + derfc_.c d_nint.c d_tanh.c err.c ftell_.c\ + hl_ge.c i_abs.c i_mod.c l_le.c pow_di.c \ + qbitshft.c r_cosh.c r_log.c rsne.c \ + sig_die.c typesize.c wsne.c z_sqrt.c \ + c_exp.c d_atan.c d_exp.c dolio.c dtime_.c\ + etime_.c getarg_.c hl_gt.c iargc_.c \ + i_nint.c l_lt.c pow_hh.c r_abs.c rdfmt.c \ + r_mod.c r_sqrt.c signal_.c uio.c xwsne.c -CFLAGS = @CFLAGS@ $(CXX_OPT) $(PIC_FLAG) +h_sources = f2c.h fio.h fmt.h fp.h lio.h rawio.h +INCLUDES = +AM_CXXFLAGS = $(INCLUDES) +AM_FCFLAGS = $(INCLUDES) +lib_LTLIBRARIES = $(top_builddir)/build/lib/libctf2c.la +library_includedir = $(top_builddir)/build/include +library_include_HEADERS = $(h_sources) -# Destination f2c lib located in Cantera's build directory -# -> Calling it ctf2c -BUILDINCDIR=../../build/include/cantera -F2C_LIB = @buildlib@/libctf2c.a -F2C_H = $(BUILDINCDIR)/f2c.h +#----------------------- +# Cantera Converters C/C++ library +#----------------------- +__top_builddir__build_lib_libctf2c_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libctf2c_la_SOURCES = $(fc_sources) $(cc_sources) +CLEANFILES = *.o +all: all-am -# compile, then strip unnecessary symbols -.c.o: f2c.h - $(CC) -c -DSkip_f2c_Undefs $(CFLAGS) $*.c -ifeq ($(do_stripsymbols),yes) - ld @ldemulationarg@ -r -x -o $*.xxx $*.o - mv $*.xxx $*.o -endif +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu ext/f2c_libs/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu ext/f2c_libs/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -## Under Solaris (and other systems that do not understand ld -x), -## omit -x in the ld line above. -## If your system does not have the ld command, comment out -## or remove both the ld and mv lines above. +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -MISC = f77vers.o i77vers.o main.o s_rnge.o abort_.o exit_.o getarg_.o iargc_.o\ - getenv_.o signal_.o s_stop.o s_paus.o system_.o cabs.o\ - derf_.o derfc_.o erf_.o erfc_.o sig_die.o uninit.o -POW = pow_ci.o pow_dd.o pow_di.o pow_hh.o pow_ii.o pow_ri.o pow_zi.o pow_zz.o -CX = c_abs.o c_cos.o c_div.o c_exp.o c_log.o c_sin.o c_sqrt.o -DCX = z_abs.o z_cos.o z_div.o z_exp.o z_log.o z_sin.o z_sqrt.o -REAL = r_abs.o r_acos.o r_asin.o r_atan.o r_atn2.o r_cnjg.o r_cos.o\ - r_cosh.o r_dim.o r_exp.o r_imag.o r_int.o\ - r_lg10.o r_log.o r_mod.o r_nint.o r_sign.o\ - r_sin.o r_sinh.o r_sqrt.o r_tan.o r_tanh.o -DBL = d_abs.o d_acos.o d_asin.o d_atan.o d_atn2.o\ - d_cnjg.o d_cos.o d_cosh.o d_dim.o d_exp.o\ - d_imag.o d_int.o d_lg10.o d_log.o d_mod.o\ - d_nint.o d_prod.o d_sign.o d_sin.o d_sinh.o\ - d_sqrt.o d_tan.o d_tanh.o -INT = i_abs.o i_dim.o i_dnnt.o i_indx.o i_len.o i_mod.o i_nint.o i_sign.o\ - lbitbits.o lbitshft.o -HALF = h_abs.o h_dim.o h_dnnt.o h_indx.o h_len.o h_mod.o h_nint.o h_sign.o -CMP = l_ge.o l_gt.o l_le.o l_lt.o hl_ge.o hl_gt.o hl_le.o hl_lt.o -EFL = ef1asc_.o ef1cmc_.o -CHAR = f77_aloc.o s_cat.o s_cmp.o s_copy.o -I77 = backspac.o close.o dfe.o dolio.o due.o endfile.o err.o\ - fmt.o fmtlib.o ftell_.o iio.o ilnw.o inquire.o lread.o lwrite.o\ - open.o rdfmt.o rewind.o rsfe.o rsli.o rsne.o sfe.o sue.o\ - typesize.o uio.o util.o wref.o wrtfmt.o wsfe.o wsle.o wsne.o xwsne.o -QINT = pow_qq.o qbitbits.o qbitshft.o ftell64_.o -TIME = dtime_.o etime_.o +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } -# If you get an error compiling dtime_.c or etime_.c, try adding -# -DUSE_CLOCK to the CFLAGS assignment above; if that does not work, -# omit $(TIME) from OFILES = assignment below. +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done -# To get signed zeros in write statements on IEEE-arithmetic systems, -# add -DSIGNED_ZEROS to the CFLAGS assignment below and add signbit.o -# to the end of the OFILES = assignment below. +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +$(top_builddir)/build/lib/$(am__dirstamp): + @$(MKDIR_P) $(top_builddir)/build/lib + @: > $(top_builddir)/build/lib/$(am__dirstamp) +$(top_builddir)/build/lib/libctf2c.la: $(__top_builddir__build_lib_libctf2c_la_OBJECTS) $(__top_builddir__build_lib_libctf2c_la_DEPENDENCIES) $(top_builddir)/build/lib/$(am__dirstamp) + $(__top_builddir__build_lib_libctf2c_la_LINK) -rpath $(libdir) $(__top_builddir__build_lib_libctf2c_la_OBJECTS) $(__top_builddir__build_lib_libctf2c_la_LIBADD) $(LIBS) -# For INTEGER*8 support (which requires system-dependent adjustments to -# f2c.h), add $(QINT) to the OFILES = assignment below... +mostlyclean-compile: + -rm -f *.$(OBJEXT) -OFILES = $(MISC) $(POW) $(CX) $(DCX) $(REAL) $(DBL) $(INT) \ - $(HALF) $(CMP) $(EFL) $(CHAR) $(I77) $(TIME) +distclean-compile: + -rm -f *.tab.c -all: f2c.h signal1.h sysdep1.h $(F2C_LIB) $(F2C_H) +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/abort_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arithchk.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/backspac.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c_abs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c_cos.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c_div.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c_exp.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c_log.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c_sin.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c_sqrt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cabs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/close.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_abs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_acos.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_asin.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_atan.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_atn2.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_cnjg.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_cos.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_cosh.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_dim.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_exp.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_imag.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_int.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_lg10.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_log.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_mod.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_nint.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_prod.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_sign.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_sin.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_sinh.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_sqrt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_tan.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_tanh.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/derf_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/derfc_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dfe.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dolio.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dtime_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/due.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ef1asc_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ef1cmc_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/endfile.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/erf_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/erfc_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/err.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etime_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exit_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/f77_aloc.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/f77vers.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fmt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fmtlib.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ftell64_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ftell_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getarg_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getenv_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h_abs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h_dim.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h_dnnt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h_indx.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h_len.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h_mod.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h_nint.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h_sign.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hl_ge.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hl_gt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hl_le.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hl_lt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i77vers.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i_abs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i_dim.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i_dnnt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i_indx.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i_len.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i_mod.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i_nint.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i_sign.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/iargc_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/iio.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ilnw.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/inquire.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/l_ge.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/l_gt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/l_le.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/l_lt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lbitbits.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lbitshft.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lread.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lwrite.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/open.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_ci.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_dd.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_di.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_hh.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_ii.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_qq.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_ri.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_zi.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_zz.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qbitbits.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qbitshft.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_abs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_acos.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_asin.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_atan.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_atn2.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_cnjg.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_cos.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_cosh.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_dim.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_exp.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_imag.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_int.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_lg10.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_log.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_mod.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_nint.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_sign.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_sin.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_sinh.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_sqrt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_tan.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_tanh.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rdfmt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rewind.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rsfe.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rsli.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rsne.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/s_cat.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/s_cmp.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/s_copy.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/s_paus.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/s_rnge.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/s_stop.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sfe.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sig_die.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/signal_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/signbit.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sue.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/system_.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/typesize.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/uio.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/uninit.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/util.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wref.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wrtfmt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wsfe.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wsle.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wsne.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xwsne.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/z_abs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/z_cos.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/z_div.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/z_exp.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/z_log.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/z_sin.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/z_sqrt.Plo@am__quote@ -$(F2C_LIB): $(OFILES) - @ARCHIVE@ $(F2C_LIB) $? -ifeq ($(do_ranlib),1) - @RANLIB@ $(F2C_LIB) -endif +.c.o: +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< -$(F2C_H): f2c.h - @INSTALL@ -d $(BUILDINCDIR) - @INSTALL@ -c f2c.h $(F2C_H) +.c.obj: +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` -### If your system lacks ranlib, you don't need it; see README. +.c.lo: +@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< -f77vers.o: f77vers.c - $(CC) $(CFLAGS) -c f77vers.c +mostlyclean-libtool: + -rm -f *.lo -i77vers.o: i77vers.c - $(CC) $(CFLAGS) -c i77vers.c +clean-libtool: + -rm -rf $(top_builddir)/build/lib/.libs $(top_builddir)/build/lib/_libs + -rm -rf .libs _libs +install-library_includeHEADERS: $(library_include_HEADERS) + @$(NORMAL_INSTALL) + test -z "$(library_includedir)" || $(MKDIR_P) "$(DESTDIR)$(library_includedir)" + @list='$(library_include_HEADERS)'; test -n "$(library_includedir)" || list=; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(library_includedir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(library_includedir)" || exit $$?; \ + done -# To get an "f2c.h" for use with "f2c -C++", first "make hadd" -hadd: f2c.h0 f2ch.add - cat f2c.h0 f2ch.add >f2c.h +uninstall-library_includeHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(library_include_HEADERS)'; test -n "$(library_includedir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(library_includedir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(library_includedir)" && rm -f $$files -# For use with "f2c" and "f2c -A": -f2c.h: f2c.h0 - cp f2c.h0 f2c.h +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS -# You may need to adjust signal1.h and sysdep1.h suitably for your system... -signal1.h: signal1.h0 - cp signal1.h0 signal1.h +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique -sysdep1.h: sysdep1.h0 - cp sysdep1.h0 sysdep1.h +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" -# If your system lacks onexit() and you are not using an -# ANSI C compiler, then you should uncomment the following -# two lines (for compiling main.o): -#main.o: main.c -# $(CC) -c -DNO_ONEXIT -DSkip_f2c_Undefs main.c -# On at least some Sun systems, it is more appropriate to -# uncomment the following two lines: -#main.o: main.c -# $(CC) -c -Donexit=on_exit -DSkip_f2c_Undefs main.c +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -clean: - $(RM) $(F2C_LIB) *.o *.d arith.h signal1.h sysdep1.h $(F2C_H) +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) $(HEADERS) +installdirs: + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(library_includedir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am -$(OFILES): f2c.h -backspac.o: fio.h -close.o: fio.h -dfe.o: fio.h -dfe.o: fmt.h -due.o: fio.h -endfile.o: fio.h rawio.h -err.o: fio.h rawio.h -fmt.o: fio.h -fmt.o: fmt.h -iio.o: fio.h -iio.o: fmt.h -ilnw.o: fio.h -ilnw.o: lio.h -inquire.o: fio.h -lread.o: fio.h -lread.o: fmt.h -lread.o: lio.h -lread.o: fp.h -lwrite.o: fio.h -lwrite.o: fmt.h -lwrite.o: lio.h -open.o: fio.h rawio.h -rdfmt.o: fio.h -rdfmt.o: fmt.h -rdfmt.o: fp.h -rewind.o: fio.h -rsfe.o: fio.h -rsfe.o: fmt.h -rsli.o: fio.h -rsli.o: lio.h -rsne.o: fio.h -rsne.o: lio.h -sfe.o: fio.h -signbit.o: arith.h -sue.o: fio.h -uio.o: fio.h -uninit.o: arith.h -util.o: fio.h -wref.o: fio.h -wref.o: fmt.h -wref.o: fp.h - wrtfmt.o: fio.h -wrtfmt.o: fmt.h -wsfe.o: fio.h -wsfe.o: fmt.h -wsle.o: fio.h -wsle.o: fmt.h -wsle.o: lio.h -wsne.o: fio.h -wsne.o: lio.h -xwsne.o: fio.h -xwsne.o: lio.h -xwsne.o: fmt.h +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am -arith.h: arithchk.c - $(CC) $(CFLAGS) -o chkll -DNO_FPINIT arithchk.c -lm ||\ - $(CC) -DNO_LONG_LONG $(CFLAGS) -o chkll -DNO_FPINIT arithchk.c -lm - ./chkll >arith.h - rm -f chkll* arithchk.o +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: -$(OFILES): Makefile +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) -# depends target -> already in the Makefile -depends: +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(top_builddir)/build/lib/$(am__dirstamp)" || rm -f $(top_builddir)/build/lib/$(am__dirstamp) +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-library_includeHEADERS + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-libLTLIBRARIES \ + uninstall-library_includeHEADERS + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libLTLIBRARIES clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am \ + install-libLTLIBRARIES install-library_includeHEADERS \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-libLTLIBRARIES \ + uninstall-library_includeHEADERS + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: From 4538e19768d51d190a13b4568840cc71403fee46 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 18 Jan 2012 16:52:47 +0000 Subject: [PATCH 049/124] [cantera]: removing makefile.in --- ext/f2c_libs/Makefile.in | 827 --------------------------------------- 1 file changed, 827 deletions(-) delete mode 100755 ext/f2c_libs/Makefile.in diff --git a/ext/f2c_libs/Makefile.in b/ext/f2c_libs/Makefile.in deleted file mode 100755 index 92ab58b6d..000000000 --- a/ext/f2c_libs/Makefile.in +++ /dev/null @@ -1,827 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = ext/f2c_libs -DIST_COMMON = $(library_include_HEADERS) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(libdir)" \ - "$(DESTDIR)$(library_includedir)" -LTLIBRARIES = $(lib_LTLIBRARIES) -__top_builddir__build_lib_libctf2c_la_LIBADD = -am__objects_1 = abort_.lo c_log.lo d_atn2.lo dfe.lo d_prod.lo due.lo \ - exit_.lo getenv_.lo hl_le.lo i_dim.lo inquire.lo lread.lo \ - pow_ii.lo r_acos.lo r_dim.lo r_nint.lo r_tan.lo signbit.lo \ - uninit.lo z_abs.lo arithchk.lo close.lo d_cnjg.lo d_imag.lo \ - d_sign.lo ef1asc_.lo f77_aloc.lo h_abs.lo hl_lt.lo i_dnnt.lo \ - i_sign.lo lwrite.lo pow_qq.lo r_asin.lo rewind.lo rsfe.lo \ - r_tanh.lo s_paus.lo util.lo z_cos.lo backspac.lo c_sin.lo \ - d_cos.lo d_int.lo d_sin.lo ef1cmc_.lo f77vers.lo h_dim.lo \ - h_mod.lo i_indx.lo lbitbits.lo main.lo pow_ri.lo r_atan.lo \ - r_exp.lo r_sign.lo s_cat.lo s_rnge.lo wref.lo z_div.lo \ - c_abs.lo c_sqrt.lo d_cosh.lo d_lg10.lo d_sinh.lo endfile.lo \ - fmt.lo h_dnnt.lo h_nint.lo iio.lo lbitshft.lo open.lo \ - pow_zi.lo r_atn2.lo r_imag.lo r_sin.lo s_cmp.lo s_stop.lo \ - wrtfmt.lo z_exp.lo cabs.lo d_abs.lo d_dim.lo d_log.lo \ - d_sqrt.lo erf_.lo fmtlib.lo h_indx.lo h_sign.lo i_len.lo \ - l_ge.lo pow_ci.lo pow_zz.lo r_cnjg.lo r_int.lo r_sinh.lo \ - s_copy.lo sue.lo wsfe.lo z_log.lo c_cos.lo d_acos.lo derf_.lo \ - d_mod.lo d_tan.lo erfc_.lo ftell64_.lo h_len.lo i77vers.lo \ - ilnw.lo l_gt.lo pow_dd.lo qbitbits.lo r_cos.lo r_lg10.lo \ - rsli.lo sfe.lo system_.lo wsle.lo z_sin.lo c_div.lo d_asin.lo \ - derfc_.lo d_nint.lo d_tanh.lo err.lo ftell_.lo hl_ge.lo \ - i_abs.lo i_mod.lo l_le.lo pow_di.lo qbitshft.lo r_cosh.lo \ - r_log.lo rsne.lo sig_die.lo typesize.lo wsne.lo z_sqrt.lo \ - c_exp.lo d_atan.lo d_exp.lo dolio.lo dtime_.lo etime_.lo \ - getarg_.lo hl_gt.lo iargc_.lo i_nint.lo l_lt.lo pow_hh.lo \ - r_abs.lo rdfmt.lo r_mod.lo r_sqrt.lo signal_.lo uio.lo \ - xwsne.lo -am___top_builddir__build_lib_libctf2c_la_OBJECTS = $(am__objects_1) -__top_builddir__build_lib_libctf2c_la_OBJECTS = \ - $(am___top_builddir__build_lib_libctf2c_la_OBJECTS) -__top_builddir__build_lib_libctf2c_la_LINK = $(LIBTOOL) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) \ - $(__top_builddir__build_lib_libctf2c_la_LDFLAGS) $(LDFLAGS) -o \ - $@ -am__dirstamp = $(am__leading_dot)dirstamp -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(__top_builddir__build_lib_libctf2c_la_SOURCES) -DIST_SOURCES = $(__top_builddir__build_lib_libctf2c_la_SOURCES) -HEADERS = $(library_include_HEADERS) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = abort_.c c_log.c d_atn2.c dfe.c d_prod.c \ - due.c exit_.c getenv_.c hl_le.c i_dim.c \ - inquire.c lread.c pow_ii.c r_acos.c \ - r_dim.c r_nint.c r_tan.c signbit.c \ - uninit.c z_abs.c arithchk.c close.c \ - d_cnjg.c d_imag.c d_sign.c ef1asc_.c \ - f77_aloc.c h_abs.c hl_lt.c i_dnnt.c \ - i_sign.c lwrite.c pow_qq.c r_asin.c \ - rewind.c rsfe.c r_tanh.c s_paus.c util.c \ - z_cos.c backspac.c c_sin.c d_cos.c \ - d_int.c d_sin.c ef1cmc_.c f77vers.c \ - h_dim.c h_mod.c i_indx.c lbitbits.c \ - main.c pow_ri.c r_atan.c r_exp.c r_sign.c\ - s_cat.c s_rnge.c wref.c z_div.c c_abs.c \ - c_sqrt.c d_cosh.c d_lg10.c d_sinh.c \ - endfile.c fmt.c h_dnnt.c h_nint.c iio.c \ - lbitshft.c open.c pow_zi.c r_atn2.c \ - r_imag.c r_sin.c s_cmp.c s_stop.c \ - wrtfmt.c z_exp.c cabs.c d_abs.c d_dim.c \ - d_log.c d_sqrt.c erf_.c fmtlib.c h_indx.c\ - h_sign.c i_len.c l_ge.c pow_ci.c pow_zz.c\ - r_cnjg.c r_int.c r_sinh.c s_copy.c sue.c \ - wsfe.c z_log.c c_cos.c d_acos.c derf_.c \ - d_mod.c d_tan.c erfc_.c ftell64_.c \ - h_len.c i77vers.c ilnw.c l_gt.c pow_dd.c \ - qbitbits.c r_cos.c r_lg10.c rsli.c sfe.c \ - system_.c wsle.c z_sin.c c_div.c d_asin.c\ - derfc_.c d_nint.c d_tanh.c err.c ftell_.c\ - hl_ge.c i_abs.c i_mod.c l_le.c pow_di.c \ - qbitshft.c r_cosh.c r_log.c rsne.c \ - sig_die.c typesize.c wsne.c z_sqrt.c \ - c_exp.c d_atan.c d_exp.c dolio.c dtime_.c\ - etime_.c getarg_.c hl_gt.c iargc_.c \ - i_nint.c l_lt.c pow_hh.c r_abs.c rdfmt.c \ - r_mod.c r_sqrt.c signal_.c uio.c xwsne.c - -h_sources = f2c.h fio.h fmt.h fp.h lio.h rawio.h -INCLUDES = -AM_CXXFLAGS = $(INCLUDES) -AM_FCFLAGS = $(INCLUDES) -lib_LTLIBRARIES = $(top_builddir)/build/lib/libctf2c.la -library_includedir = $(top_builddir)/build/include -library_include_HEADERS = $(h_sources) - -#----------------------- -# Cantera Converters C/C++ library -#----------------------- -__top_builddir__build_lib_libctf2c_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -__top_builddir__build_lib_libctf2c_la_SOURCES = $(fc_sources) $(cc_sources) -CLEANFILES = *.o -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu ext/f2c_libs/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu ext/f2c_libs/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-libLTLIBRARIES: $(lib_LTLIBRARIES) - @$(NORMAL_INSTALL) - test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ - } - -uninstall-libLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ - done - -clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" != "$$p" || dir=.; \ - echo "rm -f \"$${dir}/so_locations\""; \ - rm -f "$${dir}/so_locations"; \ - done -$(top_builddir)/build/lib/$(am__dirstamp): - @$(MKDIR_P) $(top_builddir)/build/lib - @: > $(top_builddir)/build/lib/$(am__dirstamp) -$(top_builddir)/build/lib/libctf2c.la: $(__top_builddir__build_lib_libctf2c_la_OBJECTS) $(__top_builddir__build_lib_libctf2c_la_DEPENDENCIES) $(top_builddir)/build/lib/$(am__dirstamp) - $(__top_builddir__build_lib_libctf2c_la_LINK) -rpath $(libdir) $(__top_builddir__build_lib_libctf2c_la_OBJECTS) $(__top_builddir__build_lib_libctf2c_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/abort_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arithchk.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/backspac.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c_abs.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c_cos.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c_div.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c_exp.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c_log.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c_sin.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c_sqrt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cabs.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/close.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_abs.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_acos.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_asin.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_atan.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_atn2.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_cnjg.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_cos.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_cosh.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_dim.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_exp.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_imag.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_int.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_lg10.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_log.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_mod.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_nint.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_prod.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_sign.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_sin.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_sinh.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_sqrt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_tan.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/d_tanh.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/derf_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/derfc_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dfe.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dolio.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dtime_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/due.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ef1asc_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ef1cmc_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/endfile.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/erf_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/erfc_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/err.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etime_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exit_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/f77_aloc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/f77vers.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fmt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fmtlib.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ftell64_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ftell_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getarg_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getenv_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h_abs.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h_dim.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h_dnnt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h_indx.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h_len.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h_mod.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h_nint.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h_sign.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hl_ge.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hl_gt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hl_le.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hl_lt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i77vers.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i_abs.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i_dim.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i_dnnt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i_indx.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i_len.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i_mod.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i_nint.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i_sign.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/iargc_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/iio.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ilnw.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/inquire.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/l_ge.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/l_gt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/l_le.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/l_lt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lbitbits.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lbitshft.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lread.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lwrite.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/open.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_ci.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_dd.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_di.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_hh.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_ii.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_qq.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_ri.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_zi.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_zz.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qbitbits.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qbitshft.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_abs.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_acos.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_asin.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_atan.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_atn2.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_cnjg.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_cos.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_cosh.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_dim.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_exp.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_imag.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_int.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_lg10.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_log.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_mod.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_nint.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_sign.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_sin.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_sinh.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_sqrt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_tan.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r_tanh.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rdfmt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rewind.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rsfe.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rsli.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rsne.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/s_cat.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/s_cmp.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/s_copy.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/s_paus.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/s_rnge.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/s_stop.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sfe.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sig_die.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/signal_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/signbit.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sue.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/system_.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/typesize.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/uio.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/uninit.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/util.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wref.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wrtfmt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wsfe.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wsle.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wsne.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xwsne.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/z_abs.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/z_cos.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/z_div.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/z_exp.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/z_log.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/z_sin.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/z_sqrt.Plo@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf $(top_builddir)/build/lib/.libs $(top_builddir)/build/lib/_libs - -rm -rf .libs _libs -install-library_includeHEADERS: $(library_include_HEADERS) - @$(NORMAL_INSTALL) - test -z "$(library_includedir)" || $(MKDIR_P) "$(DESTDIR)$(library_includedir)" - @list='$(library_include_HEADERS)'; test -n "$(library_includedir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(library_includedir)'"; \ - $(INSTALL_HEADER) $$files "$(DESTDIR)$(library_includedir)" || exit $$?; \ - done - -uninstall-library_includeHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(library_include_HEADERS)'; test -n "$(library_includedir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(library_includedir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(library_includedir)" && rm -f $$files - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LTLIBRARIES) $(HEADERS) -installdirs: - for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(library_includedir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -test -z "$(top_builddir)/build/lib/$(am__dirstamp)" || rm -f $(top_builddir)/build/lib/$(am__dirstamp) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-library_includeHEADERS - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-libLTLIBRARIES - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-libLTLIBRARIES \ - uninstall-library_includeHEADERS - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libLTLIBRARIES clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am \ - install-libLTLIBRARIES install-library_includeHEADERS \ - install-man install-pdf install-pdf-am install-ps \ - install-ps-am install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ - uninstall-am uninstall-libLTLIBRARIES \ - uninstall-library_includeHEADERS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: From 187fb69c19bcf65445fd2009f53e6e0a0c2fad29 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 18 Jan 2012 17:15:12 +0000 Subject: [PATCH 050/124] [cantera]: adding ax_enable_builddir to enable builddir creation --- cmake/fortran.cmake | 15 -- configure.ac | 1 + ext/f2c_libs/Makefile.am | 2 +- m4/common/ax_enable_builddir.m4 | 300 ++++++++++++++++++++++++++++++++ 4 files changed, 302 insertions(+), 16 deletions(-) delete mode 100644 cmake/fortran.cmake create mode 100644 m4/common/ax_enable_builddir.m4 diff --git a/cmake/fortran.cmake b/cmake/fortran.cmake deleted file mode 100644 index 21e62eb18..000000000 --- a/cmake/fortran.cmake +++ /dev/null @@ -1,15 +0,0 @@ -#### Cantera Fortran configuration file - -#if (NOT BUILD_WITH_F2C) - -#### Fortran 90 -message("Fortran cmake") - -if (BUILD_F90_INTERFACE) - if (F90 STREQUAL "default") - FIND_LIBRARY(GFORTRAN_LIB gfortran ${F90_LIB_DIR} /usr/local/lib) - IF (GFORTRAN_LIB) - MESSAGE("${GFORTRAN_LIB}") - ENDIF (GFORTRAN_LIB) - endif (F90 STREQUAL "default") -endif (BUILD_F90_INTERFACE) diff --git a/configure.ac b/configure.ac index 020ecf307..f33e32541 100644 --- a/configure.ac +++ b/configure.ac @@ -5,6 +5,7 @@ AC_PREREQ(2.61) AC_INIT([cantera], [1.8.0], [nick@ices.utexas.edu]) AC_CONFIG_HEADER(config.h) AC_CONFIG_AUX_DIR([build-aux]) +AX_ENABLE_BUILDDIR AM_INIT_AUTOMAKE # snarf and provide versioning numbers diff --git a/ext/f2c_libs/Makefile.am b/ext/f2c_libs/Makefile.am index 7d477fde7..339fa54d4 100644 --- a/ext/f2c_libs/Makefile.am +++ b/ext/f2c_libs/Makefile.am @@ -34,7 +34,7 @@ cc_sources = abort_.c c_log.c d_atn2.c dfe.c d_prod.c \ i_nint.c l_lt.c pow_hh.c r_abs.c rdfmt.c \ r_mod.c r_sqrt.c signal_.c uio.c xwsne.c -h_sources = f2c.h fio.h fmt.h fp.h lio.h rawio.h +h_sources = f2c.h fio.h fmt.h fp.h lio.h rawio.h sysdep1.h INCLUDES = AM_CXXFLAGS = $(INCLUDES) diff --git a/m4/common/ax_enable_builddir.m4 b/m4/common/ax_enable_builddir.m4 new file mode 100644 index 000000000..3fb87317d --- /dev/null +++ b/m4/common/ax_enable_builddir.m4 @@ -0,0 +1,300 @@ +# =========================================================================== +# http://www.gnu.org/software/autoconf-archive/ax_enable_builddir.html +# =========================================================================== +# +# SYNOPSIS +# +# AX_ENABLE_BUILDDIR [(dirstring-or-command [,Makefile.mk [,-all]])] +# +# DESCRIPTION +# +# If the current configure was run within the srcdir then we move all +# configure-files into a subdir and let the configure steps continue +# there. We provide an option --disable-builddir to suppress the move into +# a separate builddir. +# +# Defaults: +# +# $1 = $host (overridden with $HOST) +# $2 = Makefile.mk +# $3 = -all +# +# This macro must be called before AM_INIT_AUTOMAKE. It creates a default +# toplevel srcdir Makefile from the information found in the created +# toplevel builddir Makefile. It just copies the variables and +# rule-targets, each extended with a default rule-execution that recurses +# into the build directory of the current "HOST". You can override the +# auto-dection through `config.guess` and build-time of course, as in +# +# make HOST=i386-mingw-cross +# +# which can of course set at configure time as well using +# +# configure --host=i386-mingw-cross +# +# After the default has been created, additional rules can be appended +# that will not just recurse into the subdirectories and only ever exist +# in the srcdir toplevel makefile - these parts are read from the $2 = +# Makefile.mk file +# +# The automatic rules are usually scanning the toplevel Makefile for lines +# like '#### $host |$builddir' to recognize the place where to recurse +# into. Usually, the last one is the only one used. However, almost all +# targets have an additional "*-all" rule which makes the script to +# recurse into _all_ variants of the current HOST (!!) setting. The "-all" +# suffix can be overriden for the macro as well. +# +# a special rule is only given for things like "dist" that will copy the +# tarball from the builddir to the sourcedir (or $(PUB)) for reason of +# convenience. +# +# LICENSE +# +# Copyright (c) 2009 Guido U. Draheim +# Copyright (c) 2009 Alan Jenkins +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 3 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General +# Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program. If not, see . +# +# As a special exception, the respective Autoconf Macro's copyright owner +# gives unlimited permission to copy, distribute and modify the configure +# scripts that are the output of Autoconf when processing the Macro. You +# need not follow the terms of the GNU General Public License when using +# or distributing such scripts, even though portions of the text of the +# Macro appear in them. The GNU General Public License (GPL) does govern +# all other use of the material that constitutes the Autoconf Macro. +# +# This special exception to the GPL applies to versions of the Autoconf +# Macro released by the Autoconf Archive. When you make and distribute a +# modified version of the Autoconf Macro, you may extend this special +# exception to the GPL to apply to your modified version as well. + +#serial 23 + +AC_DEFUN([AX_ENABLE_BUILDDIR],[ +AC_REQUIRE([AC_CANONICAL_HOST])[]dnl +AC_REQUIRE([AX_CONFIGURE_ARGS])[]dnl +AC_REQUIRE([AM_AUX_DIR_EXPAND])[]dnl +AC_BEFORE([$0],[AM_INIT_AUTOMAKE])dnl +AS_VAR_PUSHDEF([SUB],[ax_enable_builddir])dnl +AS_VAR_PUSHDEF([AUX],[ax_enable_builddir_auxdir])dnl +AS_VAR_PUSHDEF([SED],[ax_enable_builddir_sed])dnl +SUB="." +AC_ARG_ENABLE([builddir], AS_HELP_STRING( + [--disable-builddir],[disable automatic build in subdir of sources]) + ,[SUB="$enableval"], [SUB="auto"]) +if test ".$ac_srcdir_defaulted" != ".no" ; then +if test ".$srcdir" = ".." ; then + if test -f config.status ; then + AC_MSG_NOTICE(toplevel srcdir already configured... skipping subdir build) + else + test ".$SUB" = "." && SUB="." + test ".$SUB" = ".no" && SUB="." + test ".$TARGET" = "." && TARGET="$target" + test ".$SUB" = ".auto" && SUB="m4_ifval([$1], [$1],[$TARGET])" + if test ".$SUB" != ".." ; then # we know where to go and + AS_MKDIR_P([$SUB]) + echo __.$SUB.__ > $SUB/conftest.tmp + cd $SUB + if grep __.$SUB.__ conftest.tmp >/dev/null 2>/dev/null ; then + rm conftest.tmp + AC_MSG_RESULT([continue configure in default builddir "./$SUB"]) + else + AC_MSG_ERROR([could not change to default builddir "./$SUB"]) + fi + srcdir=`echo "$SUB" | + sed -e 's,^\./,,;s,[[^/]]$,&/,;s,[[^/]]*/,../,g;s,[[/]]$,,;'` + # going to restart from subdirectory location + test -f $srcdir/config.log && mv $srcdir/config.log . + test -f $srcdir/confdefs.h && mv $srcdir/confdefs.h . + test -f $srcdir/conftest.log && mv $srcdir/conftest.log . + test -f $srcdir/$cache_file && mv $srcdir/$cache_file . + AC_MSG_RESULT(....exec $SHELL $srcdir/[$]0 "--srcdir=$srcdir" "--enable-builddir=$SUB" ${1+"[$]@"}) + case "[$]0" in # restart + [/\\]*) eval $SHELL "'[$]0'" "'--srcdir=$srcdir'" "'--enable-builddir=$SUB'" $ac_configure_args ;; + *) eval $SHELL "'$srcdir/[$]0'" "'--srcdir=$srcdir'" "'--enable-builddir=$SUB'" $ac_configure_args ;; + esac ; exit $? + fi + fi +fi fi +test ".$SUB" = ".auto" && SUB="." +dnl ac_path_prog uses "set dummy" to override $@ which would defeat the "exec" +AC_PATH_PROG(SED,gsed sed, sed) +AUX="$am_aux_dir" +AS_VAR_POPDEF([SED])dnl +AS_VAR_POPDEF([AUX])dnl +AS_VAR_POPDEF([SUB])dnl +AC_CONFIG_COMMANDS([buildir],[dnl .............. config.status .............. +AS_VAR_PUSHDEF([SUB],[ax_enable_builddir])dnl +AS_VAR_PUSHDEF([TOP],[top_srcdir])dnl +AS_VAR_PUSHDEF([SRC],[ac_top_srcdir])dnl +AS_VAR_PUSHDEF([AUX],[ax_enable_builddir_auxdir])dnl +AS_VAR_PUSHDEF([SED],[ax_enable_builddir_sed])dnl +pushdef([END],[Makefile.mk])dnl +pushdef([_ALL],[ifelse([$3],,[-all],[$3])])dnl + SRC="$ax_enable_builddir_srcdir" + if test ".$SUB" = ".." ; then + if test -f "$TOP/Makefile" ; then + AC_MSG_NOTICE([skipping TOP/Makefile - left untouched]) + else + AC_MSG_NOTICE([skipping TOP/Makefile - not created]) + fi + else + if test -f "$SRC/Makefile" ; then + a=`grep "^VERSION " "$SRC/Makefile"` ; b=`grep "^VERSION " Makefile` + test "$a" != "$b" && rm "$SRC/Makefile" + fi + if test -f "$SRC/Makefile" ; then + echo "$SRC/Makefile : $SRC/Makefile.in" > $tmp/conftemp.mk + echo " []@ echo 'REMOVED,,,' >\$[]@" >> $tmp/conftemp.mk + eval "${MAKE-make} -f $tmp/conftemp.mk 2>/dev/null >/dev/null" + if grep '^REMOVED,,,' "$SRC/Makefile" >/dev/null + then rm $SRC/Makefile ; fi + cp $tmp/conftemp.mk $SRC/makefiles.mk~ ## DEBUGGING + fi + if test ! -f "$SRC/Makefile" ; then + AC_MSG_NOTICE([create TOP/Makefile guessed from local Makefile]) + x='`' ; cat >$tmp/conftemp.sed <<_EOF +/^\$/n +x +/^\$/bS +x +/\\\\\$/{H;d;} +{H;s/.*//;x;} +bM +:S +x +/\\\\\$/{h;d;} +{h;s/.*//;x;} +:M +s/\\(\\n\\) /\\1 /g +/^ /d +/^[[ ]]*[[\\#]]/d +/^VPATH *=/d +s/^srcdir *=.*/srcdir = ./ +s/^top_srcdir *=.*/top_srcdir = ./ +/[[:=]]/!d +/^\\./d +dnl Now handle rules (i.e. lines containing ":" but not " = "). +/ = /b +/ .= /b +/:/!b +s/:.*/:/ +s/ / /g +s/ \\([[a-z]][[a-z-]]*[[a-zA-Z0-9]]\\)\\([[ :]]\\)/ \\1 \\1[]_ALL\\2/g +s/^\\([[a-z]][[a-z-]]*[[a-zA-Z0-9]]\\)\\([[ :]]\\)/\\1 \\1[]_ALL\\2/ +s/ / /g +/^all all[]_ALL[[ :]]/i\\ +all-configured : all[]_ALL +dnl dist-all exists... and would make for dist-all-all +s/ [[a-zA-Z0-9-]]*[]_ALL [[a-zA-Z0-9-]]*[]_ALL[]_ALL//g +/[]_ALL[]_ALL/d +a\\ + @ HOST="\$(HOST)\" \\\\\\ + ; test ".\$\$HOST" = "." && HOST=$x sh $AUX/config.guess $x \\\\\\ + ; BUILD=$x grep "^#### \$\$HOST " Makefile | sed -e 's/.*|//' $x \\\\\\ + ; use=$x basename "\$\@" _ALL $x; n=$x echo \$\$BUILD | wc -w $x \\\\\\ + ; echo "MAKE \$\$HOST : \$\$n * \$\@"; if test "\$\$n" -eq "0" ; then : \\\\\\ + ; BUILD=$x grep "^####.*|" Makefile |tail -1| sed -e 's/.*|//' $x ; fi \\\\\\ + ; test ".\$\$BUILD" = "." && BUILD="." \\\\\\ + ; test "\$\$use" = "\$\@" && BUILD=$x echo "\$\$BUILD" | tail -1 $x \\\\\\ + ; for i in \$\$BUILD ; do test ".\$\$i" = "." && continue \\\\\\ + ; (cd "\$\$i" && test ! -f configure && \$(MAKE) \$\$use) || exit; done +dnl special rule add-on: "dist" copies the tarball to $(PUB). (source tree) +/dist[]_ALL *:/a\\ + @ HOST="\$(HOST)\" \\\\\\ + ; test ".\$\$HOST" = "." && HOST=$x sh $AUX/config.guess $x \\\\\\ + ; BUILD=$x grep "^#### \$\$HOST " Makefile | sed -e 's/.*|//' $x \\\\\\ + ; found=$x echo \$\$BUILD | wc -w $x \\\\\\ + ; echo "MAKE \$\$HOST : \$\$found \$(PACKAGE)-\$(VERSION).tar.*" \\\\\\ + ; if test "\$\$found" -eq "0" ; then : \\\\\\ + ; BUILD=$x grep "^#### .*|" Makefile |tail -1| sed -e 's/.*|//' $x \\\\\\ + ; fi ; for i in \$\$BUILD ; do test ".\$\$i" = "." && continue \\\\\\ + ; for f in \$\$i/\$(PACKAGE)-\$(VERSION).tar.* \\\\\\ + ; do test -f "\$\$f" && mv "\$\$f" \$(PUB). ; done ; break ; done +dnl special rule add-on: "dist-foo" copies all the archives to $(PUB). (source tree) +/dist-[[a-zA-Z0-9]]*[]_ALL *:/a\\ + @ HOST="\$(HOST)\" \\\\\\ + ; test ".\$\$HOST" = "." && HOST=$x sh ./config.guess $x \\\\\\ + ; BUILD=$x grep "^#### \$\$HOST " Makefile | sed -e 's/.*|//' $x \\\\\\ + ; found=$x echo \$\$BUILD | wc -w $x \\\\\\ + ; echo "MAKE \$\$HOST : \$\$found \$(PACKAGE)-\$(VERSION).*" \\\\\\ + ; if test "\$\$found" -eq "0" ; then : \\\\\\ + ; BUILD=$x grep "^#### .*|" Makefile |tail -1| sed -e 's/.*|//' $x \\\\\\ + ; fi ; for i in \$\$BUILD ; do test ".\$\$i" = "." && continue \\\\\\ + ; for f in \$\$i/\$(PACKAGE)-\$(VERSION).* \\\\\\ + ; do test -f "\$\$f" && mv "\$\$f" \$(PUB). ; done ; break ; done +dnl special rule add-on: "distclean" removes all local builddirs completely +/distclean[]_ALL *:/a\\ + @ HOST="\$(HOST)\" \\\\\\ + ; test ".\$\$HOST" = "." && HOST=$x sh $AUX/config.guess $x \\\\\\ + ; BUILD=$x grep "^#### .*|" Makefile | sed -e 's/.*|//' $x \\\\\\ + ; use=$x basename "\$\@" _ALL $x; n=$x echo \$\$BUILD | wc -w $x \\\\\\ + ; echo "MAKE \$\$HOST : \$\$n * \$\@ (all local builds)" \\\\\\ + ; test ".\$\$BUILD" = "." && BUILD="." \\\\\\ + ; for i in \$\$BUILD ; do test ".\$\$i" = "." && continue \\\\\\ + ; echo "# rm -r \$\$i"; done ; echo "# (sleep 3)" ; sleep 3 \\\\\\ + ; for i in \$\$BUILD ; do test ".\$\$i" = "." && continue \\\\\\ + ; echo "\$\$i" | grep "^/" > /dev/null && continue \\\\\\ + ; echo "\$\$i" | grep "^../" > /dev/null && continue \\\\\\ + ; echo "rm -r \$\$i"; (rm -r "\$\$i") ; done ; rm Makefile +_EOF + cp "$tmp/conftemp.sed" "$SRC/makefile.sed~" ## DEBUGGING + $SED -f $tmp/conftemp.sed Makefile >$SRC/Makefile + if test -f "$SRC/m4_ifval([$2],[$2],[END])" ; then + AC_MSG_NOTICE([extend TOP/Makefile with TOP/m4_ifval([$2],[$2],[END])]) + cat $SRC/END >>$SRC/Makefile + fi ; xxxx="####" + echo "$xxxx CONFIGURATIONS FOR TOPLEVEL MAKEFILE: " >>$SRC/Makefile + # sanity check + if grep '^; echo "MAKE ' $SRC/Makefile >/dev/null ; then + AC_MSG_NOTICE([buggy sed found - it deletes tab in "a" text parts]) + $SED -e '/^@ HOST=/s/^/ /' -e '/^; /s/^/ /' $SRC/Makefile \ + >$SRC/Makefile~ + (test -s $SRC/Makefile~ && mv $SRC/Makefile~ $SRC/Makefile) 2>/dev/null + fi + else + xxxx="\\#\\#\\#\\#" + # echo "/^$xxxx *$ax_enable_builddir_host /d" >$tmp/conftemp.sed + echo "s!^$xxxx [[^|]]* | *$SUB *\$!$xxxx ...... $SUB!" >$tmp/conftemp.sed + $SED -f "$tmp/conftemp.sed" "$SRC/Makefile" >$tmp/mkfile.tmp + cp "$tmp/conftemp.sed" "$SRC/makefiles.sed~" ## DEBUGGING + cp "$tmp/mkfile.tmp" "$SRC/makefiles.out~" ## DEBUGGING + if cmp -s "$SRC/Makefile" "$tmp/mkfile.tmp" 2>/dev/null ; then + AC_MSG_NOTICE([keeping TOP/Makefile from earlier configure]) + rm "$tmp/mkfile.tmp" + else + AC_MSG_NOTICE([reusing TOP/Makefile from earlier configure]) + mv "$tmp/mkfile.tmp" "$SRC/Makefile" + fi + fi + AC_MSG_NOTICE([build in $SUB (HOST=$ax_enable_builddir_host)]) + xxxx="####" + echo "$xxxx" "$ax_enable_builddir_host" "|$SUB" >>$SRC/Makefile + fi +popdef([END])dnl +AS_VAR_POPDEF([SED])dnl +AS_VAR_POPDEF([AUX])dnl +AS_VAR_POPDEF([SRC])dnl +AS_VAR_POPDEF([TOP])dnl +AS_VAR_POPDEF([SUB])dnl +],[dnl +ax_enable_builddir_srcdir="$srcdir" # $srcdir +ax_enable_builddir_host="$HOST" # $HOST / $host +ax_enable_builddir_version="$VERSION" # $VERSION +ax_enable_builddir_package="$PACKAGE" # $PACKAGE +ax_enable_builddir_auxdir="$ax_enable_builddir_auxdir" # $AUX +ax_enable_builddir_sed="$ax_enable_builddir_sed" # $SED +ax_enable_builddir="$ax_enable_builddir" # $SUB +])dnl +]) From 2fd3ae6598019f1252a18f66e17c1db1b0377a92 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 18 Jan 2012 17:21:07 +0000 Subject: [PATCH 051/124] [cantera]: forgot an important macro --- configure.ac | 1 + m4/common/ax_configure_args.m4 | 70 ++++++++++++++++++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 m4/common/ax_configure_args.m4 diff --git a/configure.ac b/configure.ac index f33e32541..3ef2cd997 100644 --- a/configure.ac +++ b/configure.ac @@ -3,6 +3,7 @@ AC_PREREQ(2.61) AC_INIT([cantera], [1.8.0], [nick@ices.utexas.edu]) +AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADER(config.h) AC_CONFIG_AUX_DIR([build-aux]) AX_ENABLE_BUILDDIR diff --git a/m4/common/ax_configure_args.m4 b/m4/common/ax_configure_args.m4 new file mode 100644 index 000000000..0726b1bc8 --- /dev/null +++ b/m4/common/ax_configure_args.m4 @@ -0,0 +1,70 @@ +# =========================================================================== +# http://www.gnu.org/software/autoconf-archive/ax_configure_args.html +# =========================================================================== +# +# SYNOPSIS +# +# AX_CONFIGURE_ARGS +# +# DESCRIPTION +# +# Helper macro for AX_ENABLE_BUILDDIR. +# +# The traditional way of starting a subdir-configure is running the script +# with ${1+"$@"} but since autoconf 2.60 this is broken. Instead we have +# to rely on eval'ing $ac_configure_args however some old autoconf +# versions do not provide that. To ensure maximum portability of autoconf +# extension macros this helper can be AC_REQUIRE'd so that +# $ac_configure_args will alsways be present. +# +# Sadly, the traditional "exec $SHELL" of the enable_builddir macros is +# spoiled now and must be replaced by "eval + exit $?". +# +# Example: +# +# AC_DEFUN([AX_ENABLE_SUBDIR],[dnl +# AC_REQUIRE([AX_CONFIGURE_ARGS])dnl +# eval $SHELL $ac_configure_args || exit $? +# ...]) +# +# LICENSE +# +# Copyright (c) 2008 Guido U. Draheim +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 3 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General +# Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program. If not, see . +# +# As a special exception, the respective Autoconf Macro's copyright owner +# gives unlimited permission to copy, distribute and modify the configure +# scripts that are the output of Autoconf when processing the Macro. You +# need not follow the terms of the GNU General Public License when using +# or distributing such scripts, even though portions of the text of the +# Macro appear in them. The GNU General Public License (GPL) does govern +# all other use of the material that constitutes the Autoconf Macro. +# +# This special exception to the GPL applies to versions of the Autoconf +# Macro released by the Autoconf Archive. When you make and distribute a +# modified version of the Autoconf Macro, you may extend this special +# exception to the GPL to apply to your modified version as well. + +#serial 9 + +AC_DEFUN([AX_CONFIGURE_ARGS],[ + # [$]@ is unsable in 2.60+ but earlier autoconf had no ac_configure_args + if test "${ac_configure_args+set}" != "set" ; then + ac_configure_args= + for ac_arg in ${1+"[$]@"}; do + ac_configure_args="$ac_configure_args '$ac_arg'" + done + fi +]) From 6de0d5e7f4deee4f6c9521fe4337073b72f62b7e Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 18 Jan 2012 17:39:12 +0000 Subject: [PATCH 052/124] [cantera]: updating from includes to AM_CPPFLAGS --- Cantera/src/base/Makefile.am | 4 ++-- Cantera/src/converters/Makefile.am | 4 ++-- Cantera/src/equil/Makefile.am | 6 +++--- Cantera/src/kinetics/Makefile.am | 4 ++-- Cantera/src/numerics/Makefile.am | 4 ++-- Cantera/src/oneD/Makefile.am | 4 ++-- Cantera/src/spectra/Makefile.am | 4 ++-- Cantera/src/thermo/Makefile.am | 4 ++-- Cantera/src/transport/Makefile.am | 4 ++-- Cantera/src/zeroD/Makefile.am | 4 ++-- Cantera/user/Makefile.am | 4 ++-- configure.ac | 3 +-- examples/cxx/Makefile.am | 4 ++-- ext/blas/Makefile.am | 6 +++--- ext/cvode/Makefile.am | 6 +++--- ext/f2c_libs/Makefile.am | 6 +++--- ext/lapack/Makefile.am | 6 +++--- ext/math/Makefile.am | 6 +++--- ext/tpx/Makefile.am | 4 ++-- 19 files changed, 43 insertions(+), 44 deletions(-) diff --git a/Cantera/src/base/Makefile.am b/Cantera/src/base/Makefile.am index 13edc9e05..4a1345d1a 100644 --- a/Cantera/src/base/Makefile.am +++ b/Cantera/src/base/Makefile.am @@ -9,8 +9,8 @@ cc_sources = ct2ctml.cpp ctml.cpp misc.cpp plots.cpp \ PrintCtrl.cpp LogPrintCtrl.cpp mdp_allo.cpp \ checkFinite.cpp -INCLUDES = -AM_CXXFLAGS = $(INCLUDES) +AM_CPPFLAGS = +AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctbase.la library_includedir = $(top_builddir)/build/include diff --git a/Cantera/src/converters/Makefile.am b/Cantera/src/converters/Makefile.am index 951b8cc90..eb268cf28 100644 --- a/Cantera/src/converters/Makefile.am +++ b/Cantera/src/converters/Makefile.am @@ -6,8 +6,8 @@ cc_sources = atomicWeightDB.cpp ck2ctml.cpp CKReader.cpp filter.cpp \ Reaction.cpp thermoFunctions.cpp ck2ct.cpp CKParser.cpp \ ckr_utils.cpp NASA9Parser.cpp Species.cpp writelog.cpp -INCLUDES = -I../base -I../../../ -AM_CXXFLAGS = $(INCLUDES) +AM_CPPFLAGS = -I../base -I../../../ +AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libconverters.la library_includedir = $(includedir) diff --git a/Cantera/src/equil/Makefile.am b/Cantera/src/equil/Makefile.am index c0be25f05..6abe34773 100644 --- a/Cantera/src/equil/Makefile.am +++ b/Cantera/src/equil/Makefile.am @@ -4,9 +4,9 @@ h_sources = ChemEquil.h MultiPhase.h MultiPhaseEquil.h equil.h \ cc_sources = BasisOptimize.cpp ChemEquil.cpp MultiPhase.cpp \ MultiPhaseEquil.cpp equilibrate.cpp -INCLUDES = -I../base -I../thermo -I../numerics -I../../../ -INCLUDES += -I../../../ext/f2c_libs/ -AM_CXXFLAGS = $(INCLUDES) +AM_CPPFLAGS = -I../base -I../thermo -I../numerics -I../../../ +AM_CPPFLAGS += -I../../../ext/f2c_libs/ +AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libequil.la library_includedir = $(includedir) diff --git a/Cantera/src/kinetics/Makefile.am b/Cantera/src/kinetics/Makefile.am index 429481b93..bd7e72bd3 100644 --- a/Cantera/src/kinetics/Makefile.am +++ b/Cantera/src/kinetics/Makefile.am @@ -9,8 +9,8 @@ cc_sources = importKinetics.cpp GRI_30_Kinetics.cpp KineticsFactory.cpp \ GasKinetics.cpp AqueousKinetics.cpp FalloffFactory.cpp ReactionStoichMgr.cpp Kinetics.cpp solveSP.cpp -INCLUDES = -I../base -I../thermo -I../../../ -AM_CXXFLAGS = $(INCLUDES) +AM_CPPFLAGS = -I../base -I../thermo -I../../../ +AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libkinetics.la library_includedir = $(includedir) diff --git a/Cantera/src/numerics/Makefile.am b/Cantera/src/numerics/Makefile.am index 7a061bc5f..f4132d8bc 100644 --- a/Cantera/src/numerics/Makefile.am +++ b/Cantera/src/numerics/Makefile.am @@ -8,8 +8,8 @@ cc_sources = DenseMatrix.cpp funcs.cpp Func1.cpp ODE_integrators.cpp \ BandMatrix.cpp DAE_solvers.cpp sort.cpp \ SquareMatrix.cpp ResidJacEval.cpp NonlinearSolver.cpp -INCLUDES = -I../base -I../../../ -AM_CXXFLAGS = $(INCLUDES) +AM_CPPFLAGS = -I../base -I../../../ +AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctnumerics.la library_includedir = $(includedir) diff --git a/Cantera/src/oneD/Makefile.am b/Cantera/src/oneD/Makefile.am index 08a044274..28e2a5247 100644 --- a/Cantera/src/oneD/Makefile.am +++ b/Cantera/src/oneD/Makefile.am @@ -5,8 +5,8 @@ h_sources = Inlet1D.h MultiJac.h Sim1D.h StFlow.h \ Surf1D.h Domain1D.h MultiNewton.h OneDim.h \ Resid1D.h Solid1D.h efine.h -INCLUDES = -I../base -I../thermo -I../kinetics -I../transport -I../numerics -I../../../ -AM_CXXFLAGS = $(INCLUDES) -fPIC +AM_CPPFLAGS = -I../base -I../thermo -I../kinetics -I../transport -I../numerics -I../../../ +AM_CXXFLAGS = $(AM_CPPFLAGS) -fPIC lib_LTLIBRARIES = $(top_builddir)/build/lib/liboneD.la library_includedir = $(includedir) diff --git a/Cantera/src/spectra/Makefile.am b/Cantera/src/spectra/Makefile.am index e2e9eab5a..19b5168db 100644 --- a/Cantera/src/spectra/Makefile.am +++ b/Cantera/src/spectra/Makefile.am @@ -3,8 +3,8 @@ h_sources = DiatomicMolecule.h LineBroadener.h Nuclei.h \ cc_sources = LineBroadener.cpp rotor.cpp spectralUtilities.cpp -INCLUDES = -I../base -I../../../ -AM_CXXFLAGS = $(INCLUDES) +AM_CPPFLAGS = -I../base -I../../../ +AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctspectra.la library_includedir = $(includedir) diff --git a/Cantera/src/thermo/Makefile.am b/Cantera/src/thermo/Makefile.am index 8916c0645..454f87ccd 100644 --- a/Cantera/src/thermo/Makefile.am +++ b/Cantera/src/thermo/Makefile.am @@ -24,8 +24,8 @@ cc_sources = State.cpp Elements.cpp Constituents.cpp Phase.cpp \ VPSSMgr_IdealGas.cpp VPSSMgr_ConstVol.cpp PDSS_ConstVol.cpp \ PDSS_IdealGas.cpp PDSS_SSVol.cpp -INCLUDES = -I../base -I../../../ -AM_CXXFLAGS = $(INCLUDES) +AM_CPPFLAGS = -I../base -I../../../ +AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libthermo.la library_includedir = $(includedir) diff --git a/Cantera/src/transport/Makefile.am b/Cantera/src/transport/Makefile.am index a5c490b65..1c1c774d9 100644 --- a/Cantera/src/transport/Makefile.am +++ b/Cantera/src/transport/Makefile.am @@ -10,8 +10,8 @@ cc_sources = AqueousTransport.cpp LiquidTransport.cpp MMCollisionInt.cpp \ DustyGasTransport.cpp MixTransport.cpp MultiTransport.cpp \ SolidTransport.cpp TransportFactory.cpp -INCLUDES = -I../base -I../thermo -I../numerics -I../../../ -AM_CXXFLAGS = $(INCLUDES) +AM_CPPFLAGS = -I../base -I../thermo -I../numerics -I../../../ +AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libtransport.la library_includedir = $(includedir) diff --git a/Cantera/src/zeroD/Makefile.am b/Cantera/src/zeroD/Makefile.am index fb78cdc67..7ce28e3fb 100644 --- a/Cantera/src/zeroD/Makefile.am +++ b/Cantera/src/zeroD/Makefile.am @@ -6,8 +6,8 @@ cc_sources = Reactor.cpp ReactorBase.cpp FlowDevice.cpp Wall.cpp \ ReactorNet.cpp FlowReactor.cpp ConstPressureReactor.cpp \ ReactorFactory.cpp -INCLUDES = -I../base -I../thermo -I../kinetics -I../numerics -I../../../ -AM_CXXFLAGS = $(INCLUDES) +AM_CPPFLAGS = -I../base -I../thermo -I../kinetics -I../numerics -I../../../ +AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libzeroD.la library_includedir = $(includedir) diff --git a/Cantera/user/Makefile.am b/Cantera/user/Makefile.am index f65351db9..bd6545341 100644 --- a/Cantera/user/Makefile.am +++ b/Cantera/user/Makefile.am @@ -1,7 +1,7 @@ cc_sources = user.cpp -INCLUDES = -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -AM_CXXFLAGS = $(INCLUDES) +AM_CPPFLAGS = -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera +AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libuser.la library_includedir = $(top_builddir)/build/include diff --git a/configure.ac b/configure.ac index 3ef2cd997..f27a29759 100644 --- a/configure.ac +++ b/configure.ac @@ -3,11 +3,10 @@ AC_PREREQ(2.61) AC_INIT([cantera], [1.8.0], [nick@ices.utexas.edu]) -AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADER(config.h) AC_CONFIG_AUX_DIR([build-aux]) AX_ENABLE_BUILDDIR -AM_INIT_AUTOMAKE +AM_INIT_AUTOMAKE(-Wall -Werror) # snarf and provide versioning numbers AX_SPLIT_VERSION diff --git a/examples/cxx/Makefile.am b/examples/cxx/Makefile.am index 19abff458..840c967e7 100644 --- a/examples/cxx/Makefile.am +++ b/examples/cxx/Makefile.am @@ -13,8 +13,8 @@ LINK += -lctblas LIBS = -L$(top_builddir)/build/lib/ $(LINK) -INCLUDES = -I../base -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -AM_CXXFLAGS = $(INCLUDES) +AM_CPPFLAGS = -I../base -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera +AM_CXXFLAGS = $(AM_CPPFLAGS) bin_PROGRAMS = cxx_examples library_includedir = $(includedir) diff --git a/ext/blas/Makefile.am b/ext/blas/Makefile.am index 3bdd18206..77ebce8b8 100644 --- a/ext/blas/Makefile.am +++ b/ext/blas/Makefile.am @@ -6,9 +6,9 @@ fc_sources = dasum.f dcabs1.f ddot.f dgemm.f dger.f drot.f drotm.f dspr.f dsymm.f dsyr2.f dsyr.f dtbmv.f dtpmv.f dtrmm.f \ dtrsm.f dzasum.f icamax.f isamax.f lsame.f -INCLUDES = -AM_CXXFLAGS = $(INCLUDES) -AM_FCFLAGS = $(INCLUDES) +AM_CPPFLAGS = +AM_CXXFLAGS = $(AM_CPPFLAGS) +AM_FCFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctblas.la library_includedir = $(top_builddir)/build/include diff --git a/ext/cvode/Makefile.am b/ext/cvode/Makefile.am index ffad4d340..752831146 100644 --- a/ext/cvode/Makefile.am +++ b/ext/cvode/Makefile.am @@ -7,9 +7,9 @@ h_sources = band.h cvband.h cvbandpre.h cvdense.h cvdiag.h \ llnltyps.h nvector.h spgmr.h -INCLUDES = -AM_CXXFLAGS = $(INCLUDES) -AM_FCFLAGS = $(INCLUDES) +AM_CPPFLAGS = +AM_CXXFLAGS = $(AM_CPPFLAGS) +AM_FCFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libcvode.la library_includedir = $(top_builddir)/build/include diff --git a/ext/f2c_libs/Makefile.am b/ext/f2c_libs/Makefile.am index 339fa54d4..d08f5329d 100644 --- a/ext/f2c_libs/Makefile.am +++ b/ext/f2c_libs/Makefile.am @@ -36,9 +36,9 @@ cc_sources = abort_.c c_log.c d_atn2.c dfe.c d_prod.c \ h_sources = f2c.h fio.h fmt.h fp.h lio.h rawio.h sysdep1.h -INCLUDES = -AM_CXXFLAGS = $(INCLUDES) -AM_FCFLAGS = $(INCLUDES) +AM_CPPFLAGS = +AM_CXXFLAGS = $(AM_CPPFLAGS) +AM_FCFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctf2c.la library_includedir = $(top_builddir)/build/include diff --git a/ext/lapack/Makefile.am b/ext/lapack/Makefile.am index df5399853..650ece62c 100644 --- a/ext/lapack/Makefile.am +++ b/ext/lapack/Makefile.am @@ -10,9 +10,9 @@ fc_sources = dbdsqr.f dgbtrf.f dgbtf2.f dgbtrs.f dgbsv.f \ dormbr.f dorml2.f dormlq.f dormqr.f drscl.f \ ilaenv.f -INCLUDES = -AM_CXXFLAGS = $(INCLUDES) -AM_FCFLAGS = $(INCLUDES) +AM_CPPFLAGS = +AM_CXXFLAGS = $(AM_CPPFLAGS) +AM_FCFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctlapack.la library_includedir = $(top_builddir)/build/include diff --git a/ext/math/Makefile.am b/ext/math/Makefile.am index 7a221434d..1139d010c 100644 --- a/ext/math/Makefile.am +++ b/ext/math/Makefile.am @@ -6,9 +6,9 @@ fc_sources = ddaspk.f dgbfa.f dgbsl.f \ polfit.f pvalue.f xercnt.f xerhlt.f \ xermsg.f xerprn.f xersve.f xgetua.f -INCLUDES = -AM_CXXFLAGS = $(INCLUDES) -AM_FCFLAGS = $(INCLUDES) +AM_CPPFLAGS = +AM_CXXFLAGS = $(AM_CPPFLAGS) +AM_FCFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctmath.la library_includedir = $(top_builddir)/build/include diff --git a/ext/tpx/Makefile.am b/ext/tpx/Makefile.am index 728a02cb0..1988875ab 100644 --- a/ext/tpx/Makefile.am +++ b/ext/tpx/Makefile.am @@ -4,8 +4,8 @@ h_sources = Methane.h Nitrogen.h Oxygen.h Water.h Hydrogen.h Redli cc_sources = Methane.cpp Nitrogen.cpp Oxygen.cpp Water.cpp Hydrogen.cpp RedlichKwong.cpp \ CarbonDioxide.cpp Heptane.cpp lk.cpp Sub.cpp utils.cpp HFC134a.cpp -INCLUDES = -AM_CXXFLAGS = $(INCLUDES) +AM_CPPFLAGS = +AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libtpx.la library_includedir = $(top_builddir)/build/include From 00b631a310e3510a9171630b0a5edf507b0f2e12 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 18 Jan 2012 19:00:11 +0000 Subject: [PATCH 053/124] [cantera]: removing a few files we dont need to compile --- ext/f2c_libs/Makefile.am | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ext/f2c_libs/Makefile.am b/ext/f2c_libs/Makefile.am index d08f5329d..3f70e5f0d 100644 --- a/ext/f2c_libs/Makefile.am +++ b/ext/f2c_libs/Makefile.am @@ -5,12 +5,12 @@ cc_sources = abort_.c c_log.c d_atn2.c dfe.c d_prod.c \ uninit.c z_abs.c arithchk.c close.c \ d_cnjg.c d_imag.c d_sign.c ef1asc_.c \ f77_aloc.c h_abs.c hl_lt.c i_dnnt.c \ - i_sign.c lwrite.c pow_qq.c r_asin.c \ + i_sign.c lwrite.c r_asin.c \ rewind.c rsfe.c r_tanh.c s_paus.c util.c \ z_cos.c backspac.c c_sin.c d_cos.c \ d_int.c d_sin.c ef1cmc_.c f77vers.c \ h_dim.c h_mod.c i_indx.c lbitbits.c \ - main.c pow_ri.c r_atan.c r_exp.c r_sign.c\ + pow_ri.c r_atan.c r_exp.c r_sign.c\ s_cat.c s_rnge.c wref.c z_div.c c_abs.c \ c_sqrt.c d_cosh.c d_lg10.c d_sinh.c \ endfile.c fmt.c h_dnnt.c h_nint.c iio.c \ @@ -21,13 +21,13 @@ cc_sources = abort_.c c_log.c d_atn2.c dfe.c d_prod.c \ h_sign.c i_len.c l_ge.c pow_ci.c pow_zz.c\ r_cnjg.c r_int.c r_sinh.c s_copy.c sue.c \ wsfe.c z_log.c c_cos.c d_acos.c derf_.c \ - d_mod.c d_tan.c erfc_.c ftell64_.c \ + d_mod.c d_tan.c erfc_.c \ h_len.c i77vers.c ilnw.c l_gt.c pow_dd.c \ - qbitbits.c r_cos.c r_lg10.c rsli.c sfe.c \ + r_cos.c r_lg10.c rsli.c sfe.c \ system_.c wsle.c z_sin.c c_div.c d_asin.c\ derfc_.c d_nint.c d_tanh.c err.c ftell_.c\ hl_ge.c i_abs.c i_mod.c l_le.c pow_di.c \ - qbitshft.c r_cosh.c r_log.c rsne.c \ + r_cosh.c r_log.c rsne.c \ sig_die.c typesize.c wsne.c z_sqrt.c \ c_exp.c d_atan.c d_exp.c dolio.c dtime_.c\ etime_.c getarg_.c hl_gt.c iargc_.c \ From 020a18fa07d55ae60e1adedb9a87b887e6414451 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 18 Jan 2012 20:15:05 +0000 Subject: [PATCH 054/124] [cantera]: fixing cxx library build --- Cantera/Makefile.am | 2 +- Cantera/cxx/Makefile.am | 1 + Cantera/cxx/Makefile.in | 57 ---------------------------- Cantera/cxx/src/Makefile.am | 16 ++++++++ Cantera/cxx/src/Makefile.in | 65 -------------------------------- Cantera/src/kinetics/Makefile.am | 2 +- configure.ac | 4 +- examples/cxx/Makefile.am | 3 +- 8 files changed, 23 insertions(+), 127 deletions(-) create mode 100644 Cantera/cxx/Makefile.am delete mode 100644 Cantera/cxx/Makefile.in create mode 100644 Cantera/cxx/src/Makefile.am delete mode 100644 Cantera/cxx/src/Makefile.in diff --git a/Cantera/Makefile.am b/Cantera/Makefile.am index c9ac09f25..16d372985 100644 --- a/Cantera/Makefile.am +++ b/Cantera/Makefile.am @@ -1,4 +1,4 @@ # $Id: $ # will need to add python and matlab -SUBDIRS = src user +SUBDIRS = src user cxx diff --git a/Cantera/cxx/Makefile.am b/Cantera/cxx/Makefile.am new file mode 100644 index 000000000..f963effea --- /dev/null +++ b/Cantera/cxx/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = src \ No newline at end of file diff --git a/Cantera/cxx/Makefile.in b/Cantera/cxx/Makefile.in deleted file mode 100644 index b142632e9..000000000 --- a/Cantera/cxx/Makefile.in +++ /dev/null @@ -1,57 +0,0 @@ -#/bin/sh -############################################################### -# $Author: hkmoffa $ -# $Date: 2009/04/04 03:27:43 $ -# $Revision: 1.14 $ -# -# Copyright 2001 California Institute of Technology -# See file License.txt for licensing information -# -############################################################### - -build_f90=@BUILD_F90@ -build_python=@BUILD_PYTHON@ - -INCDIR = ../../build/include/cantera -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 \ - reactionpaths.h zerodim.h importPhase.h thermo.h \ - radiation.h spectra.h electrolyteThermo.h Cantera.mak Cantera_bt.mak - -all: - @(cd include ; \ - for lh in $(CXX_H) ; do \ - $(INSTALL_TSC) "$${lh}" "../"$(INCDIR) ; \ - done) - cd src; @MAKE@ -# cd demos; @MAKE@ - -clean: - @(for lh in $(CXX_H) ; do \ - th=$(INCDIR)/"$${lh}" ; \ - if test -f "$${th}" ; then \ - $(RM) "$${th}" ; \ - echo "$(RM) $${th}" ; \ - fi \ - done) - cd src; $(RM) .depends ; @MAKE@ clean - cd demos; $(RM) .depends ; @MAKE@ clean - -depends: - cd src; @MAKE@ depends -# cd demos; @MAKE@ depends - -install: - cd src; @MAKE@ install - cd demos; @MAKE@ install - -demos: - cd demos; @MAKE@ - - -# end of file - diff --git a/Cantera/cxx/src/Makefile.am b/Cantera/cxx/src/Makefile.am new file mode 100644 index 000000000..51980d049 --- /dev/null +++ b/Cantera/cxx/src/Makefile.am @@ -0,0 +1,16 @@ +cc_sources = cxxutils.cpp importPhase.cpp +AM_CPPFLAGS = -I../../src/thermo -I../../src/base +AM_CXXFLAGS = $(AM_CPPFLAGS) + +lib_LTLIBRARIES = $(top_builddir)/build/lib/libctcxx.la +library_includedir = $(top_builddir)/build/include +library_include_HEADERS = $(h_sources) + +#----------------------- +# Cantera Converters C/C++ library +#----------------------- + +__top_builddir__build_lib_libctcxx_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libctcxx_la_SOURCES = $(cc_sources) $(h_sources) + +CLEANFILES = *.o diff --git a/Cantera/cxx/src/Makefile.in b/Cantera/cxx/src/Makefile.in deleted file mode 100644 index 01e78a4ac..000000000 --- a/Cantera/cxx/src/Makefile.in +++ /dev/null @@ -1,65 +0,0 @@ -#/bin/sh -############################################################### -# $Author$ -# $Date$ -# $Revision$ -# -# Copyright 2001 California Institute of Technology -# -############################################################### - - -.SUFFIXES : -.SUFFIXES : .cpp .d .o .h - -PIC_FLAG=@PIC@ -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -OBJS = importPhase.o - -DEPENDS = $(OBJS:.o=.d) - -PURIFY=@PURIFY@ - -PIC_FLAG=@PIC@ -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) - - -# the directory where Cantera include files may be found. -CXX_INCLUDES = -I../../src/base -I../../src/thermo @CXX_INCLUDES@ - -# how to compile C++ source files to object files -.cpp.o: - $(PURIFY) @CXX@ -c $< $(CXX_INCLUDES) $(CXX_FLAGS) - -%.d: Makefile %.o - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -LIB_NAME=libctcxx -CXXLIB=@buildlib@/$(LIB_NAME).a - -all: .depends $(CXXLIB) - -$(CXXLIB): $(OBJS) - @ARCHIVE@ $(CXXLIB) $(OBJS) - -clean: - $(RM) $(OBJS) *.d $(CXXLIB) - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -install: - @INSTALL@ $(CXXLIB) @prefix@/lib/cantera - -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -$(OBJS): Makefile - -ifeq ($(wildcard .depends), .depends) -include .depends -endif diff --git a/Cantera/src/kinetics/Makefile.am b/Cantera/src/kinetics/Makefile.am index bd7e72bd3..b090eacb3 100644 --- a/Cantera/src/kinetics/Makefile.am +++ b/Cantera/src/kinetics/Makefile.am @@ -9,7 +9,7 @@ cc_sources = importKinetics.cpp GRI_30_Kinetics.cpp KineticsFactory.cpp \ GasKinetics.cpp AqueousKinetics.cpp FalloffFactory.cpp ReactionStoichMgr.cpp Kinetics.cpp solveSP.cpp -AM_CPPFLAGS = -I../base -I../thermo -I../../../ +AM_CPPFLAGS = -I../base -I../thermo -I../../../ AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libkinetics.la diff --git a/configure.ac b/configure.ac index f27a29759..6a1510d9d 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ AC_PREREQ(2.61) AC_INIT([cantera], [1.8.0], [nick@ices.utexas.edu]) AC_CONFIG_HEADER(config.h) AC_CONFIG_AUX_DIR([build-aux]) -AX_ENABLE_BUILDDIR +#AX_ENABLE_BUILDDIR AM_INIT_AUTOMAKE(-Wall -Werror) # snarf and provide versioning numbers @@ -69,6 +69,8 @@ AC_OUTPUT(Makefile examples/Makefile \ Cantera/Makefile \ Cantera/user/Makefile \ Cantera/src/Makefile \ + Cantera/cxx/Makefile \ + Cantera/cxx/src/Makefile \ Cantera/src/base/Makefile \ Cantera/src/converters/Makefile \ Cantera/src/kinetics/Makefile \ diff --git a/examples/cxx/Makefile.am b/examples/cxx/Makefile.am index 840c967e7..7645bc55e 100644 --- a/examples/cxx/Makefile.am +++ b/examples/cxx/Makefile.am @@ -8,8 +8,7 @@ cc_sources = examples.cpp kinetics_example1.cpp kinetics_example2.cpp \ LINK = -lkinetics -ltransport -lthermo -lctnumerics LINK += -lctbase -ltpx -lctmath -lconverters LINK += -luser -lcvode -lstdc++ -lctlapack -LINK += -lctblas -# -lctf2c -lctcxx -luser -lstdc++ +LINK += -lctblas -lctf2c -lctcxx LIBS = -L$(top_builddir)/build/lib/ $(LINK) From 8eb439f29479d3c5c29283dccfa8e02608281c83 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 18 Jan 2012 23:31:14 +0000 Subject: [PATCH 055/124] [cantera]: relocating, saving progress --- examples/cxx/Makefile.am | 8 ++++---- examples/cxx/examples.cpp | 9 +-------- examples/cxx/kinetics_example1.cpp | 6 ------ 3 files changed, 5 insertions(+), 18 deletions(-) diff --git a/examples/cxx/Makefile.am b/examples/cxx/Makefile.am index 7645bc55e..5a4efd9a0 100644 --- a/examples/cxx/Makefile.am +++ b/examples/cxx/Makefile.am @@ -10,13 +10,13 @@ LINK += -lctbase -ltpx -lctmath -lconverters LINK += -luser -lcvode -lstdc++ -lctlapack LINK += -lctblas -lctf2c -lctcxx -LIBS = -L$(top_builddir)/build/lib/ $(LINK) - -AM_CPPFLAGS = -I../base -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera +#LIBS = -L$(top_builddir)/build/lib/ $(LINK) +LIBS = -L/workspace/src/cantera/pecos_autotools/build/lib/ $(LINK) +AM_CPPFLAGS = -I. -I/workspace/src/cantera/pecos_autotools/build/include/ AM_CXXFLAGS = $(AM_CPPFLAGS) bin_PROGRAMS = cxx_examples -library_includedir = $(includedir) +library_includedir = $(includedir) -I/workspace/src/cantera/pecos_autotools/build/include/ #----------------------- # Cantera cxx examples diff --git a/examples/cxx/examples.cpp b/examples/cxx/examples.cpp index 4ca4ffa8b..70602a928 100755 --- a/examples/cxx/examples.cpp +++ b/examples/cxx/examples.cpp @@ -1,14 +1,7 @@ - -#include +#include using namespace Cantera; using namespace std; -// turn off warnings under Windows -#ifdef WIN32 -#pragma warning(disable:4786) -#pragma warning(disable:4503) -#endif - #define NUM_EXAMPLES 6 int kinetics_example1(int job); diff --git a/examples/cxx/kinetics_example1.cpp b/examples/cxx/kinetics_example1.cpp index 74500c287..a56a82754 100755 --- a/examples/cxx/kinetics_example1.cpp +++ b/examples/cxx/kinetics_example1.cpp @@ -10,12 +10,6 @@ // ///////////////////////////////////////////////////////////// -// turn off warnings under Windows -#ifdef WIN32 -#pragma warning(disable:4786) -#pragma warning(disable:4503) -#endif - #include #include #include From 8de3340b3a15fa741bb423aba6d06eec4cc8a9a7 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 25 Jan 2012 16:44:47 +0000 Subject: [PATCH 056/124] [cantera]: adding reference doc --- docs/cantera12_f90.pdf | Bin 0 -> 691059 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 docs/cantera12_f90.pdf diff --git a/docs/cantera12_f90.pdf b/docs/cantera12_f90.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b0dee9e579899a7016784c867dc019851b43adf3 GIT binary patch literal 691059 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 sr#S{Fs0fm-0aq^AcJAc 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

f>&JYjM_r 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ν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�)*JP!Zv%uqy{AiYQjDI)_+0Z~B(qYf;f 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

>zKj25)|6 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

sk+` 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 z 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�hq4ia}VAf!(+oSub8)(JZYi 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 z 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

aZmF>g!9@(WfMCk8X{)={&ZcYY)F3M_G^OiLN^@ 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 literal 0 HcmV?d00001 From f6f2e8f6911bee99ed16750813bd30dc6d9c889e Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 1 Feb 2012 20:42:08 +0000 Subject: [PATCH 057/124] [cantera]: several edits to make a few tests work and streamline the build system. also adding transport models --- Cantera/cxx/src/Makefile.am | 5 +- Cantera/cxx/src/importPhase.cpp | 5 +- Cantera/src/kinetics/Makefile.am | 18 +- Cantera/src/numerics/CVodeInt.cpp | 16 +- Cantera/src/numerics/Makefile.am | 5 +- Cantera/src/thermo/Makefile.am | 61 +- Cantera/src/thermo/WaterPropsIAPWS.h | 2 + Cantera/src/thermo/WaterPropsIAPWSphi.h | 2 + Cantera/src/transport/Makefile.am | 4 +- Makefile.am | 4 +- configure.ac | 8 +- examples/cxx/Makefile.am | 2 +- test_problems/Makefile.am | 2 +- .../cathermo/DH_graph_1/DH_graph_1.cpp | 2 + test_problems/cathermo/DH_graph_1/Makefile.am | 20 + test_problems/cathermo/DH_graph_1/Makefile.in | 643 +++++++++++++++--- test_problems/cathermo/Makefile.am | 1 + test_problems/cathermo/Makefile.in | 126 ---- 18 files changed, 665 insertions(+), 261 deletions(-) create mode 100644 test_problems/cathermo/DH_graph_1/Makefile.am create mode 100644 test_problems/cathermo/Makefile.am delete mode 100644 test_problems/cathermo/Makefile.in diff --git a/Cantera/cxx/src/Makefile.am b/Cantera/cxx/src/Makefile.am index 51980d049..4774b0f59 100644 --- a/Cantera/cxx/src/Makefile.am +++ b/Cantera/cxx/src/Makefile.am @@ -1,5 +1,6 @@ -cc_sources = cxxutils.cpp importPhase.cpp -AM_CPPFLAGS = -I../../src/thermo -I../../src/base +cc_sources = importPhase.cpp + +AM_CPPFLAGS = -I/workspace/src/cantera/pecos_autotools/build/include/cantera AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctcxx.la diff --git a/Cantera/cxx/src/importPhase.cpp b/Cantera/cxx/src/importPhase.cpp index 3bff771bb..622a7a1ea 100644 --- a/Cantera/cxx/src/importPhase.cpp +++ b/Cantera/cxx/src/importPhase.cpp @@ -4,9 +4,8 @@ #include -#include "ThermoPhase.h" -#include "ThermoFactory.h" -//#include "../include/importPhase.h" +#include "kernel/ThermoPhase.h" +#include "kernel/ThermoFactory.h" namespace Cantera {} diff --git a/Cantera/src/kinetics/Makefile.am b/Cantera/src/kinetics/Makefile.am index b090eacb3..40f8196aa 100644 --- a/Cantera/src/kinetics/Makefile.am +++ b/Cantera/src/kinetics/Makefile.am @@ -1,15 +1,17 @@ -h_sources = importKinetics.h GRI_30_Kinetics.h KineticsFactory.h \ - Kinetics.h GasKinetics.h \ - FalloffFactory.h ReactionStoichMgr.h reaction_defs.h \ +h_sources = importKinetics.h GRI_30_Kinetics.h KineticsFactory.h \ + Kinetics.h GasKinetics.h \ + FalloffFactory.h ReactionStoichMgr.h reaction_defs.h \ FalloffMgr.h ThirdBodyMgr.h RateCoeffMgr.h ReactionData.h \ - RxnRates.h Enhanced3BConc.h StoichManager.h solveSP.h \ - AqueousKinetics.h + RxnRates.h Enhanced3BConc.h StoichManager.h solveSP.h \ + AqueousKinetics.h InterfaceKinetics.h ImplicitSurfChem.h cc_sources = importKinetics.cpp GRI_30_Kinetics.cpp KineticsFactory.cpp \ - GasKinetics.cpp AqueousKinetics.cpp FalloffFactory.cpp - ReactionStoichMgr.cpp Kinetics.cpp solveSP.cpp + GasKinetics.cpp AqueousKinetics.cpp FalloffFactory.cpp \ + ReactionStoichMgr.cpp Kinetics.cpp solveSP.cpp \ + ReactionPath.cpp InterfaceKinetics.cpp ImplicitSurfChem.cpp -AM_CPPFLAGS = -I../base -I../thermo -I../../../ +#AM_CPPFLAGS = -I../base -I../thermo -I../../../ +AM_CPPFLAGS = -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libkinetics.la diff --git a/Cantera/src/numerics/CVodeInt.cpp b/Cantera/src/numerics/CVodeInt.cpp index 658094a5e..ee95f575c 100644 --- a/Cantera/src/numerics/CVodeInt.cpp +++ b/Cantera/src/numerics/CVodeInt.cpp @@ -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/llnltyps.h" +#include "../../../ext/cvode/llnlmath.h" +#include "../../../ext/cvode/cvode.h" +#include "../../../ext/cvode/cvdense.h" +#include "../../../ext/cvode/cvdiag.h" +#include "../../../ext/cvode/cvspgmr.h" +#include "../../../ext/cvode/nvector.h" +#include "../../../ext/cvode/cvode.h" inline static N_Vector nv(void* x) { return reinterpret_cast(x); diff --git a/Cantera/src/numerics/Makefile.am b/Cantera/src/numerics/Makefile.am index f4132d8bc..4b182c08a 100644 --- a/Cantera/src/numerics/Makefile.am +++ b/Cantera/src/numerics/Makefile.am @@ -2,11 +2,12 @@ h_sources = ArrayViewer.h DenseMatrix.h \ funcs.h ctlapack.h Func1.h FuncEval.h \ polyfit.h\ BandMatrix.h Integrator.h DAE_Solver.h ResidEval.h sort.h \ - SquareMatrix.h ResidJacEval.h NonlinearSolver.h + SquareMatrix.h ResidJacEval.h NonlinearSolver.h CVodeInt.h cc_sources = DenseMatrix.cpp funcs.cpp Func1.cpp ODE_integrators.cpp \ BandMatrix.cpp DAE_solvers.cpp sort.cpp \ - SquareMatrix.cpp ResidJacEval.cpp NonlinearSolver.cpp + SquareMatrix.cpp ResidJacEval.cpp NonlinearSolver.cpp \ + CVodeInt.cpp AM_CPPFLAGS = -I../base -I../../../ AM_CXXFLAGS = $(AM_CPPFLAGS) diff --git a/Cantera/src/thermo/Makefile.am b/Cantera/src/thermo/Makefile.am index 454f87ccd..8909eba4d 100644 --- a/Cantera/src/thermo/Makefile.am +++ b/Cantera/src/thermo/Makefile.am @@ -2,27 +2,74 @@ h_sources = State.h Elements.h Constituents.h Phase.h mix_defs.h \ ThermoPhase.h IdealGasPhase.h ConstDensityThermo.h \ SpeciesThermoFactory.h ThermoFactory.h \ NasaPoly1.h NasaPoly2.h NasaThermo.h Nasa9Poly1.h \ - Nasa9PolyMultiTempRegion.h \ + Nasa9PolyMultiTempRegion.h WaterPropsIAPWS.h \ ShomateThermo.h ShomatePoly.h ConstCpPoly.h \ SimpleThermo.h SpeciesThermoMgr.h \ - SpeciesThermoInterpType.h \ + SpeciesThermoInterpType.h VPSSMgr_Water_ConstVol.h \ GeneralSpeciesThermo.h Mu0Poly.h \ speciesThermoTypes.h SpeciesThermo.h SurfPhase.h \ - EdgePhase.h IdealSolnGasVPSS.h \ + EdgePhase.h IdealSolnGasVPSS.h MolalityVPSSTP.h \ VPSSMgr.h VPSSMgrFactory.h VPSSMgr_General.h \ VPSSMgr_IdealGas.h VPSSMgr_ConstVol.h PDSS_ConstVol.h \ - PDSS_IdealGas.h PDSS_SSVol.h + PDSS_IdealGas.h PDSS_SSVol.h DebyeHuckel.h \ + VPStandardStateTP.h PDSS_Water.h PDSS.h WaterProps.h \ + WaterPropsIAPWSphi.h VPSSMgr_Water_HKFT.h PDSS_HKFT.h \ + PDSS_IonsFromNeutral.h IonsFromNeutralVPSSTP.h \ + GibbsExcessVPSSTP.h cc_sources = State.cpp Elements.cpp Constituents.cpp Phase.cpp \ ThermoPhase.cpp IdealGasPhase.cpp ConstDensityThermo.cpp \ SpeciesThermoFactory.cpp ConstCpPoly.cpp Nasa9Poly1.cpp \ - Nasa9PolyMultiTempRegion.cpp \ + Nasa9PolyMultiTempRegion.cpp PDSS_Water.cpp PDSS_HKFT.cpp \ Mu0Poly.cpp GeneralSpeciesThermo.cpp SurfPhase.cpp \ ThermoFactory.cpp phasereport.cpp SpeciesThermoInterpType.cpp \ VPSSMgr.cpp VPSSMgrFactory.cpp VPSSMgr_General.cpp \ - IdealSolnGasVPSS.cpp \ + IdealSolnGasVPSS.cpp MolalityVPSSTP.cpp VPStandardStateTP.cpp \ VPSSMgr_IdealGas.cpp VPSSMgr_ConstVol.cpp PDSS_ConstVol.cpp \ - PDSS_IdealGas.cpp PDSS_SSVol.cpp + PDSS_IdealGas.cpp PDSS_SSVol.cpp DebyeHuckel.cpp PDSS.cpp \ + WaterProps.cpp WaterPropsIAPWS.cpp WaterPropsIAPWSphi.cpp \ + VPSSMgr_Water_HKFT.cpp VPSSMgr_Water_ConstVol.cpp \ + PDSS_IonsFromNeutral.cpp IonsFromNeutralVPSSTP.cpp \ + GibbsExcessVPSSTP.cpp + +# semiconductorphase +# stoich substance +# pure fluid phase +# lattice solide phase +# lattice phase +# +# g++ -c VPStandardStateTP.cpp -O3 -Wall -fPIC -I../base +# g++ -c IdealMolalSoln.cpp -O3 -Wall -fPIC -I../base +# g++ -c WaterPropsIAPWSphi.cpp -O3 -Wall -fPIC -I../base +# g++ -c WaterPropsIAPWS.cpp -O3 -Wall -fPIC -I../base +# g++ -c WaterProps.cpp -O3 -Wall -fPIC -I../base +# g++ -c PDSS.cpp -O3 -Wall -fPIC -I../base +# g++ -c PDSS_Water.cpp -O3 -Wall -fPIC -I../base +# g++ -c PDSS_HKFT.cpp -O3 -Wall -fPIC -I../base +# g++ -c HMWSoln.cpp -O3 -Wall -fPIC -I../base +# g++ -c HMWSoln_input.cpp -O3 -Wall -fPIC -I../base +# g++ -c DebyeHuckel.cpp -O3 -Wall -fPIC -I../base +# g++ -c WaterSSTP.cpp -O3 -Wall -fPIC -I../base +# g++ -c MetalSHEelectrons.cpp -O3 -Wall -fPIC -I../base +# g++ -c VPSSMgr_Water_ConstVol.cpp -O3 -Wall -fPIC -I../base +# g++ -c VPSSMgr_Water_HKFT.cpp -O3 -Wall -fPIC -I../base +# g++ -c IdealSolidSolnPhase.cpp -O3 -Wall -fPIC -I../base +# g++ -c StoichSubstanceSSTP.cpp -O3 -Wall -fPIC -I../base +# g++ -c SingleSpeciesTP.cpp -O3 -Wall -fPIC -I../base +# g++ -c MineralEQ3.cpp -O3 -Wall -fPIC -I../base +# g++ -c GibbsExcessVPSSTP.cpp -O3 -Wall -fPIC -I../base +# g++ -c PseudoBinaryVPSSTP.cpp -O3 -Wall -fPIC -I../base +# g++ -c MargulesVPSSTP.cpp -O3 -Wall -fPIC -I../base +# g++ -c IonsFromNeutralVPSSTP.cpp -O3 -Wall -fPIC -I../base +# g++ -c PDSS_IonsFromNeutral.cpp -O3 -Wall -fPIC -I../base + + + + PDSS_Water.cpp PDSS_HKFT.cpp \ + DebyeHuckel.cpp PDSS.cpp \ + WaterProps.cpp WaterPropsIAPWS.cpp WaterPropsIAPWSphi.cpp \ + VPSSMgr_Water_HKFT.cpp VPSSMgr_Water_ConstVol.cpp \ + PDSS_IonsFromNeutral.cpp AM_CPPFLAGS = -I../base -I../../../ AM_CXXFLAGS = $(AM_CPPFLAGS) diff --git a/Cantera/src/thermo/WaterPropsIAPWS.h b/Cantera/src/thermo/WaterPropsIAPWS.h index b3c722b1d..fc69537c2 100644 --- a/Cantera/src/thermo/WaterPropsIAPWS.h +++ b/Cantera/src/thermo/WaterPropsIAPWS.h @@ -19,6 +19,8 @@ #include "WaterPropsIAPWSphi.h" #include "config.h" +typedef double doublereal; + namespace Cantera { /** * @name Names for the phase regions diff --git a/Cantera/src/thermo/WaterPropsIAPWSphi.h b/Cantera/src/thermo/WaterPropsIAPWSphi.h index bb105dd81..51839c8d0 100644 --- a/Cantera/src/thermo/WaterPropsIAPWSphi.h +++ b/Cantera/src/thermo/WaterPropsIAPWSphi.h @@ -19,6 +19,8 @@ #include "config.h" +typedef double doublereal; + /*! * the WaterPropsIAPSWSphi class support low level calls for * the real description of water. diff --git a/Cantera/src/transport/Makefile.am b/Cantera/src/transport/Makefile.am index 1c1c774d9..7595b76ad 100644 --- a/Cantera/src/transport/Makefile.am +++ b/Cantera/src/transport/Makefile.am @@ -3,12 +3,12 @@ h_sources = AqueousTransport.h LiquidTransportData.h L_matrix.h \ DustyGasTransport.h LiquidTransport.h MixTransport.h \ SimpleTransport.h TransportFactory.h FtnTransport.h \ LiquidTransportParams.h MMCollisionInt.h \ - SolidTransport.h TransportParams.h + SolidTransport.h TransportParams.h WaterSSTP.h cc_sources = AqueousTransport.cpp LiquidTransport.cpp MMCollisionInt.cpp \ SimpleTransport.cpp TransportBase.cpp WaterTransport.cpp \ DustyGasTransport.cpp MixTransport.cpp MultiTransport.cpp \ - SolidTransport.cpp TransportFactory.cpp + SolidTransport.cpp TransportFactory.cpp AM_CPPFLAGS = -I../base -I../thermo -I../numerics -I../../../ AM_CXXFLAGS = $(AM_CPPFLAGS) diff --git a/Makefile.am b/Makefile.am index fd3dc7c19..320ca5543 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,8 +1,8 @@ include $(top_srcdir)/doxygen/aminclude.am # Build in these directories: -SUBDIRS = Cantera ext examples test_problems -SUBDIRS += doxygen +SUBDIRS = Cantera ext test_problems +SUBDIRS += doxygen #examples # Distribute these directories: DIST_SUBDIRS = Cantera examples diff --git a/configure.ac b/configure.ac index 6a1510d9d..5e74fba61 100644 --- a/configure.ac +++ b/configure.ac @@ -55,9 +55,13 @@ DX_PS_FEATURE(OFF) DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) # Generate Output Files -AC_OUTPUT(Makefile examples/Makefile \ - examples/cxx/Makefile \ + +# examples/Makefile \ +# examples/cxx/Makefile \ +AC_OUTPUT(Makefile \ test_problems/Makefile \ + test_problems/cathermo/Makefile \ + test_problems/cathermo/DH_graph_1/Makefile \ doxygen/Makefile \ ext/Makefile \ ext/tpx/Makefile \ diff --git a/examples/cxx/Makefile.am b/examples/cxx/Makefile.am index 5a4efd9a0..c48ee7c38 100644 --- a/examples/cxx/Makefile.am +++ b/examples/cxx/Makefile.am @@ -12,7 +12,7 @@ LINK += -lctblas -lctf2c -lctcxx #LIBS = -L$(top_builddir)/build/lib/ $(LINK) LIBS = -L/workspace/src/cantera/pecos_autotools/build/lib/ $(LINK) -AM_CPPFLAGS = -I. -I/workspace/src/cantera/pecos_autotools/build/include/ +AM_CPPFLAGS = -I. -I/workspace/src/cantera/pecos_autotools/build/include/ -I/workspace/src/cantera/pecos_autotools/build/include/cantera -I/workspace/src/cantera/pecos_autotools/build/include/cantera/kernel AM_CXXFLAGS = $(AM_CPPFLAGS) bin_PROGRAMS = cxx_examples diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index a9fce954a..448b922a3 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -5,7 +5,7 @@ ChemEquil_ionizedGas ChemEquil_red1 CpJump \ mixGasTransport multiGasTransport printUtilUnitTest -#SUBDIRS = cxx_ex +SUBDIRS = cathermo # # would be good to add: # diff --git a/test_problems/cathermo/DH_graph_1/DH_graph_1.cpp b/test_problems/cathermo/DH_graph_1/DH_graph_1.cpp index 9a14df659..f20d4f373 100644 --- a/test_problems/cathermo/DH_graph_1/DH_graph_1.cpp +++ b/test_problems/cathermo/DH_graph_1/DH_graph_1.cpp @@ -24,6 +24,8 @@ using namespace std; using namespace Cantera; +typedef double doublereal; + class fileLog: public Logger { public: fileLog(string fName) { diff --git a/test_problems/cathermo/DH_graph_1/Makefile.am b/test_problems/cathermo/DH_graph_1/Makefile.am new file mode 100644 index 000000000..514cdd794 --- /dev/null +++ b/test_problems/cathermo/DH_graph_1/Makefile.am @@ -0,0 +1,20 @@ +cc_sources = DH_graph_1.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = DH_graph_1 +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +DH_graph_1_SOURCES = $(cc_sources) diff --git a/test_problems/cathermo/DH_graph_1/Makefile.in b/test_problems/cathermo/DH_graph_1/Makefile.in index 757519488..1ed1c5902 100644 --- a/test_problems/cathermo/DH_graph_1/Makefile.in +++ b/test_problems/cathermo/DH_graph_1/Makefile.in @@ -1,113 +1,562 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = DH_graph_1 +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = DH_graph_1.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = DH_graph_1$(EXEEXT) +subdir = test_problems/cathermo/DH_graph_1 +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = DH_graph_1.$(OBJEXT) +am_DH_graph_1_OBJECTS = $(am__objects_1) +DH_graph_1_OBJECTS = $(am_DH_graph_1_OBJECTS) +DH_graph_1_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(DH_graph_1_SOURCES) +DIST_SOURCES = $(DH_graph_1_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = DH_graph_1.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ +#----------------------- +# Cantera DH graph test +#----------------------- +DH_graph_1_SOURCES = $(cc_sources) +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/DH_graph_1/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/DH_graph_1/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +DH_graph_1$(EXEEXT): $(DH_graph_1_OBJECTS) $(DH_graph_1_DEPENDENCIES) + @rm -f DH_graph_1$(EXEEXT) + $(CXXLINK) $(DH_graph_1_OBJECTS) $(DH_graph_1_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DH_graph_1.Po@am__quote@ + +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< + +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ + clean-generic clean-libtool ctags distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-binPROGRAMS install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-binPROGRAMS -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional dependency to enhance stability -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/Makefile.am b/test_problems/cathermo/Makefile.am new file mode 100644 index 000000000..64989c8cc --- /dev/null +++ b/test_problems/cathermo/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = DH_graph_1 \ No newline at end of file diff --git a/test_problems/cathermo/Makefile.in b/test_problems/cathermo/Makefile.in deleted file mode 100644 index 1f539f61f..000000000 --- a/test_problems/cathermo/Makefile.in +++ /dev/null @@ -1,126 +0,0 @@ -# -# $Revision: 1.18 $ -# $Author: hkmoffa $ -# $Date: 2008/08/23 01:16:43 $ -# -# -test_issp=@COMPILE_IDEAL_SOLUTIONS@ -test_electrolytes=@COMPILE_ELECTROLYTES@ - -all: -ifeq ($(test_issp),1) - cd issp; @MAKE@ all - cd stoichSubSSTP; @MAKE@ all -endif -ifeq ($(test_electrolytes),1) - cd ims; @MAKE@ all - cd testIAPWS; @MAKE@ all - cd testIAPWSPres; @MAKE@ all - cd testIAPWSTripP; @MAKE@ all - cd testWaterPDSS; @MAKE@ all - cd testWaterTP; @MAKE@ all - cd HMW_graph_GvT; @MAKE@ all - cd HMW_graph_GvI; @MAKE@ all - cd HMW_graph_HvT; @MAKE@ all - cd HMW_graph_CpvT; @MAKE@ all - cd HMW_graph_VvT; @MAKE@ all - cd HMW_test_1; @MAKE@ all - cd HMW_test_3; @MAKE@ all - cd DH_graph_1; @MAKE@ all - cd DH_graph_acommon; @MAKE@ all - cd DH_graph_bdotak; @MAKE@ all - cd DH_graph_NM; @MAKE@ all - cd DH_graph_Pitzer; @MAKE@ all - cd HMW_dupl_test; @MAKE@ all - cd VPissp; @MAKE@ all - cd wtWater; @MAKE@ all -endif - -test: -ifeq ($(test_issp),1) - cd issp; @MAKE@ -s test - cd stoichSubSSTP; @MAKE@ -s test - cd VPissp; @MAKE@ -s test -endif -ifeq ($(test_electrolytes),1) - cd ims; @MAKE@ -s test - cd testIAPWS; @MAKE@ -s test - cd testIAPWSPres; @MAKE@ -s test - cd testIAPWSTripP; @MAKE@ -s test - cd testWaterPDSS; @MAKE@ -s test - cd testWaterTP; @MAKE@ -s test - cd HMW_graph_GvT; @MAKE@ -s test - cd HMW_graph_GvI; @MAKE@ -s test - cd HMW_graph_HvT; @MAKE@ -s test - cd HMW_graph_CpvT; @MAKE@ -s test - cd HMW_graph_VvT; @MAKE@ -s test - cd HMW_test_1; @MAKE@ -s test - cd HMW_test_3; @MAKE@ -s test - cd DH_graph_1; @MAKE@ -s test - cd DH_graph_acommon; @MAKE@ -s test - cd DH_graph_bdotak; @MAKE@ -s test - cd DH_graph_NM; @MAKE@ -s test - cd DH_graph_Pitzer; @MAKE@ -s test - cd HMW_dupl_test; @MAKE@ -s test - cd wtWater; @MAKE@ -s test -endif -# -# Have to remove .depends before calling make, because -# the rule for updating .depends is invoked, before the clean rule, -# if .depends exists in the directory. -# -clean: - $(RM) *.*~ - cd issp; $(RM) .depends ; @MAKE@ clean - cd stoichSubSSTP; $(RM) .depends ; @MAKE@ clean - cd ims; $(RM) .depends ; @MAKE@ clean - cd testIAPWS; $(RM) .depends ; @MAKE@ clean - cd testIAPWSPres; $(RM) .depends ; @MAKE@ clean - cd testIAPWSTripP; $(RM) .depends ; @MAKE@ clean - cd testWaterPDSS; $(RM) .depends ; @MAKE@ clean - cd testWaterTP; $(RM) .depends ; @MAKE@ clean - cd HMW_graph_GvT; $(RM) .depends ; @MAKE@ clean - cd HMW_graph_GvI; $(RM) .depends ; @MAKE@ clean - cd HMW_graph_HvT; $(RM) .depends ; @MAKE@ clean - cd HMW_graph_CpvT; $(RM) .depends ; @MAKE@ clean - cd HMW_graph_VvT; $(RM) .depends ; @MAKE@ clean - cd HMW_test_1; $(RM) .depends ; @MAKE@ clean - cd HMW_test_3; $(RM) .depends ; @MAKE@ clean - cd DH_graph_1; $(RM) .depends ; @MAKE@ clean - cd DH_graph_acommon; $(RM) .depends ; @MAKE@ clean - cd DH_graph_bdotak; $(RM) .depends ; @MAKE@ clean - cd DH_graph_NM; $(RM) .depends ; @MAKE@ clean - cd DH_graph_Pitzer; $(RM) .depends ; @MAKE@ clean - cd HMW_dupl_test; $(RM) .depends ; @MAKE@ clean - cd VPissp; $(RM) .depends ; @MAKE@ clean - cd wtWater; $(RM) .depends ; @MAKE@ clean - -depends: -ifeq ($(test_issp),1) - cd issp; @MAKE@ depends - cd stoichSubSSTP; @MAKE@ clean -endif -ifeq ($(test_electrolytes),1) - cd ims; @MAKE@ depends - cd testIAPWS; @MAKE@ depends - cd testIAPWSPres; @MAKE@ depends - cd testIAPWSTripP; @MAKE@ depends - cd testWaterPDSS; @MAKE@ depends - cd testWaterTP; @MAKE@ depends - cd HMW_graph_GvT; @MAKE@ depends - cd HMW_graph_GvI; @MAKE@ depends - cd HMW_graph_HvT; @MAKE@ depends - cd HMW_graph_CpvT; @MAKE@ depends - cd HMW_graph_VvT; @MAKE@ depends - cd HMW_test_1; @MAKE@ depends - cd HMW_test_3; @MAKE@ depends - cd DH_graph_1; @MAKE@ depends - cd DH_graph_acommon; @MAKE@ depends - cd DH_graph_bdotak; @MAKE@ depends - cd DH_graph_NM; @MAKE@ depends - cd DH_graph_Pitzer; @MAKE@ depends - cd HMW_dupl_test; @MAKE@ depends - cd VPissp; @MAKE@ depends - cd wtWater; @MAKE@ depends - -endif From 5efce48bcaf9dccd289e946e80b53da6aa2b28b2 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 1 Feb 2012 21:14:09 +0000 Subject: [PATCH 058/124] [cantera]: fixing build that was broken in previous update, continuing with transport model additions --- Cantera/src/kinetics/Makefile.am | 12 +++++++----- ext/f2c_libs/Makefile.am | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Cantera/src/kinetics/Makefile.am b/Cantera/src/kinetics/Makefile.am index 40f8196aa..e01ff219b 100644 --- a/Cantera/src/kinetics/Makefile.am +++ b/Cantera/src/kinetics/Makefile.am @@ -3,12 +3,14 @@ h_sources = importKinetics.h GRI_30_Kinetics.h KineticsFactory.h \ FalloffFactory.h ReactionStoichMgr.h reaction_defs.h \ FalloffMgr.h ThirdBodyMgr.h RateCoeffMgr.h ReactionData.h \ RxnRates.h Enhanced3BConc.h StoichManager.h solveSP.h \ - AqueousKinetics.h InterfaceKinetics.h ImplicitSurfChem.h + AqueousKinetics.h InterfaceKinetics.h ImplicitSurfChem.h \ + Group.h -cc_sources = importKinetics.cpp GRI_30_Kinetics.cpp KineticsFactory.cpp \ - GasKinetics.cpp AqueousKinetics.cpp FalloffFactory.cpp \ - ReactionStoichMgr.cpp Kinetics.cpp solveSP.cpp \ - ReactionPath.cpp InterfaceKinetics.cpp ImplicitSurfChem.cpp +cc_sources = importKinetics.cpp GRI_30_Kinetics.cpp KineticsFactory.cpp \ + GasKinetics.cpp AqueousKinetics.cpp FalloffFactory.cpp \ + ReactionStoichMgr.cpp Kinetics.cpp solveSP.cpp \ + ReactionPath.cpp InterfaceKinetics.cpp ImplicitSurfChem.cpp \ + Group.cpp #AM_CPPFLAGS = -I../base -I../thermo -I../../../ AM_CPPFLAGS = -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel diff --git a/ext/f2c_libs/Makefile.am b/ext/f2c_libs/Makefile.am index 3f70e5f0d..7ddd26e27 100644 --- a/ext/f2c_libs/Makefile.am +++ b/ext/f2c_libs/Makefile.am @@ -49,6 +49,6 @@ library_include_HEADERS = $(h_sources) #----------------------- __top_builddir__build_lib_libctf2c_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -__top_builddir__build_lib_libctf2c_la_SOURCES = $(fc_sources) $(cc_sources) +__top_builddir__build_lib_libctf2c_la_SOURCES = $(cc_sources) $(h_sources) CLEANFILES = *.o From 91273bddee67040636a88a6ddeec4e3c5c9ba052 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 1 Feb 2012 23:04:04 +0000 Subject: [PATCH 059/124] [cantera]: adding a few more files to the thermodynamics library --- Cantera/src/kinetics/Makefile.am | 1 - Cantera/src/thermo/Makefile.am | 53 +- Makefile.am | 3 +- configure.ac | 2 + .../cathermo/DH_graph_acommon/Makefile.am | 20 + .../cathermo/DH_graph_acommon/Makefile.in | 625 +++++++++++++++--- test_problems/cathermo/Makefile.am | 2 +- 7 files changed, 574 insertions(+), 132 deletions(-) create mode 100644 test_problems/cathermo/DH_graph_acommon/Makefile.am diff --git a/Cantera/src/kinetics/Makefile.am b/Cantera/src/kinetics/Makefile.am index e01ff219b..10391752c 100644 --- a/Cantera/src/kinetics/Makefile.am +++ b/Cantera/src/kinetics/Makefile.am @@ -12,7 +12,6 @@ cc_sources = importKinetics.cpp GRI_30_Kinetics.cpp KineticsFactory.cpp \ ReactionPath.cpp InterfaceKinetics.cpp ImplicitSurfChem.cpp \ Group.cpp -#AM_CPPFLAGS = -I../base -I../thermo -I../../../ AM_CPPFLAGS = -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel AM_CXXFLAGS = $(AM_CPPFLAGS) diff --git a/Cantera/src/thermo/Makefile.am b/Cantera/src/thermo/Makefile.am index 8909eba4d..b22aefc48 100644 --- a/Cantera/src/thermo/Makefile.am +++ b/Cantera/src/thermo/Makefile.am @@ -15,7 +15,12 @@ h_sources = State.h Elements.h Constituents.h Phase.h mix_defs.h \ VPStandardStateTP.h PDSS_Water.h PDSS.h WaterProps.h \ WaterPropsIAPWSphi.h VPSSMgr_Water_HKFT.h PDSS_HKFT.h \ PDSS_IonsFromNeutral.h IonsFromNeutralVPSSTP.h \ - GibbsExcessVPSSTP.h + GibbsExcessVPSSTP.h LatticePhase.h IdealMolalSoln.h \ + PDSS.h HMWSoln.h WaterSSTP.h MetalSHEelectrons.h \ + VPSSMgr_Water_ConstVol.h VPSSMgr_Water_HKFT.h \ + IdealSolidSolnPhase.h StoichSubstanceSSTP.h \ + SingleSpeciesTP.h MineralEQ3.h PseudoBinaryVPSSTP.h \ + MargulesVPSSTP.cpp cc_sources = State.cpp Elements.cpp Constituents.cpp Phase.cpp \ ThermoPhase.cpp IdealGasPhase.cpp ConstDensityThermo.cpp \ @@ -30,46 +35,12 @@ cc_sources = State.cpp Elements.cpp Constituents.cpp Phase.cpp \ WaterProps.cpp WaterPropsIAPWS.cpp WaterPropsIAPWSphi.cpp \ VPSSMgr_Water_HKFT.cpp VPSSMgr_Water_ConstVol.cpp \ PDSS_IonsFromNeutral.cpp IonsFromNeutralVPSSTP.cpp \ - GibbsExcessVPSSTP.cpp - -# semiconductorphase -# stoich substance -# pure fluid phase -# lattice solide phase -# lattice phase -# -# g++ -c VPStandardStateTP.cpp -O3 -Wall -fPIC -I../base -# g++ -c IdealMolalSoln.cpp -O3 -Wall -fPIC -I../base -# g++ -c WaterPropsIAPWSphi.cpp -O3 -Wall -fPIC -I../base -# g++ -c WaterPropsIAPWS.cpp -O3 -Wall -fPIC -I../base -# g++ -c WaterProps.cpp -O3 -Wall -fPIC -I../base -# g++ -c PDSS.cpp -O3 -Wall -fPIC -I../base -# g++ -c PDSS_Water.cpp -O3 -Wall -fPIC -I../base -# g++ -c PDSS_HKFT.cpp -O3 -Wall -fPIC -I../base -# g++ -c HMWSoln.cpp -O3 -Wall -fPIC -I../base -# g++ -c HMWSoln_input.cpp -O3 -Wall -fPIC -I../base -# g++ -c DebyeHuckel.cpp -O3 -Wall -fPIC -I../base -# g++ -c WaterSSTP.cpp -O3 -Wall -fPIC -I../base -# g++ -c MetalSHEelectrons.cpp -O3 -Wall -fPIC -I../base -# g++ -c VPSSMgr_Water_ConstVol.cpp -O3 -Wall -fPIC -I../base -# g++ -c VPSSMgr_Water_HKFT.cpp -O3 -Wall -fPIC -I../base -# g++ -c IdealSolidSolnPhase.cpp -O3 -Wall -fPIC -I../base -# g++ -c StoichSubstanceSSTP.cpp -O3 -Wall -fPIC -I../base -# g++ -c SingleSpeciesTP.cpp -O3 -Wall -fPIC -I../base -# g++ -c MineralEQ3.cpp -O3 -Wall -fPIC -I../base -# g++ -c GibbsExcessVPSSTP.cpp -O3 -Wall -fPIC -I../base -# g++ -c PseudoBinaryVPSSTP.cpp -O3 -Wall -fPIC -I../base -# g++ -c MargulesVPSSTP.cpp -O3 -Wall -fPIC -I../base -# g++ -c IonsFromNeutralVPSSTP.cpp -O3 -Wall -fPIC -I../base -# g++ -c PDSS_IonsFromNeutral.cpp -O3 -Wall -fPIC -I../base - - - - PDSS_Water.cpp PDSS_HKFT.cpp \ - DebyeHuckel.cpp PDSS.cpp \ - WaterProps.cpp WaterPropsIAPWS.cpp WaterPropsIAPWSphi.cpp \ - VPSSMgr_Water_HKFT.cpp VPSSMgr_Water_ConstVol.cpp \ - PDSS_IonsFromNeutral.cpp + GibbsExcessVPSSTP.cpp LatticePhase.cpp IdealMolalSoln.cpp \ + HMWSoln.cpp HMWSoln_input.cpp WaterSSTP.cpp \ + MetalSHEelectrons.cpp VPSSMgr_Water_ConstVol.cpp \ + VPSSMgr_Water_HKFT.cpp IdealSolidSolnPhase.cpp \ + StoichSubstanceSSTP.cpp SingleSpeciesTP.cpp MineralEQ3.cpp \ + PseudoBinaryVPSSTP.cpp MargulesVPSSTP.cpp AM_CPPFLAGS = -I../base -I../../../ AM_CXXFLAGS = $(AM_CPPFLAGS) diff --git a/Makefile.am b/Makefile.am index 320ca5543..1097e3194 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,7 +2,8 @@ include $(top_srcdir)/doxygen/aminclude.am # Build in these directories: SUBDIRS = Cantera ext test_problems -SUBDIRS += doxygen #examples +SUBDIRS += doxygen +#examples # Distribute these directories: DIST_SUBDIRS = Cantera examples diff --git a/configure.ac b/configure.ac index 5e74fba61..6d3a98b77 100644 --- a/configure.ac +++ b/configure.ac @@ -58,10 +58,12 @@ DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) # examples/Makefile \ # examples/cxx/Makefile \ + AC_OUTPUT(Makefile \ test_problems/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ + test_problems/cathermo/DH_graph_acommon/Makefile \ doxygen/Makefile \ ext/Makefile \ ext/tpx/Makefile \ diff --git a/test_problems/cathermo/DH_graph_acommon/Makefile.am b/test_problems/cathermo/DH_graph_acommon/Makefile.am new file mode 100644 index 000000000..514cdd794 --- /dev/null +++ b/test_problems/cathermo/DH_graph_acommon/Makefile.am @@ -0,0 +1,20 @@ +cc_sources = DH_graph_1.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = DH_graph_1 +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +DH_graph_1_SOURCES = $(cc_sources) diff --git a/test_problems/cathermo/DH_graph_acommon/Makefile.in b/test_problems/cathermo/DH_graph_acommon/Makefile.in index de638c902..027cbe883 100644 --- a/test_problems/cathermo/DH_graph_acommon/Makefile.in +++ b/test_problems/cathermo/DH_graph_acommon/Makefile.in @@ -1,113 +1,562 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = DH_graph_1 +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = DH_graph_1.o - - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = DH_graph_1$(EXEEXT) +subdir = test_problems/cathermo/DH_graph_acommon +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = DH_graph_1.$(OBJEXT) +am_DH_graph_1_OBJECTS = $(am__objects_1) +DH_graph_1_OBJECTS = $(am_DH_graph_1_OBJECTS) +DH_graph_1_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(DH_graph_1_SOURCES) +DIST_SOURCES = $(DH_graph_1_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = DH_graph_1.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ +#----------------------- +# Cantera DH graph test +#----------------------- +DH_graph_1_SOURCES = $(cc_sources) +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/DH_graph_acommon/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/DH_graph_acommon/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +DH_graph_1$(EXEEXT): $(DH_graph_1_OBJECTS) $(DH_graph_1_DEPENDENCIES) + @rm -f DH_graph_1$(EXEEXT) + $(CXXLINK) $(DH_graph_1_OBJECTS) $(DH_graph_1_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DH_graph_1.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -all: $(PROGRAM) .depends +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a +clean-libtool: + -rm -rf .libs _libs -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -ifeq ($(wildcard .depends), .depends) -include .depends -endif +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ + clean-generic clean-libtool ctags distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-binPROGRAMS install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-binPROGRAMS + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/Makefile.am b/test_problems/cathermo/Makefile.am index 64989c8cc..d9611d780 100644 --- a/test_problems/cathermo/Makefile.am +++ b/test_problems/cathermo/Makefile.am @@ -1 +1 @@ -SUBDIRS = DH_graph_1 \ No newline at end of file +SUBDIRS = DH_graph_1 DH_graph_acommon \ No newline at end of file From cb86c440bedc2c7915240cd07d07b9ff1b8f3272 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 1 Feb 2012 23:20:23 +0000 Subject: [PATCH 060/124] [cantera]: adding a cathermo test --- test_problems/cathermo/DH_graph_1/Makefile.in | 562 ------------------ .../cathermo/DH_graph_NM/Makefile.am | 20 + .../cathermo/DH_graph_NM/Makefile.in | 113 ---- .../cathermo/DH_graph_Pitzer/Makefile.am | 20 + .../cathermo/DH_graph_Pitzer/Makefile.in | 114 ---- .../cathermo/DH_graph_acommon/Makefile.in | 562 ------------------ .../cathermo/DH_graph_bdotak/Makefile.am | 20 + .../cathermo/DH_graph_bdotak/Makefile.in | 113 ---- test_problems/cathermo/Makefile.am | 5 +- 9 files changed, 64 insertions(+), 1465 deletions(-) delete mode 100644 test_problems/cathermo/DH_graph_1/Makefile.in create mode 100644 test_problems/cathermo/DH_graph_NM/Makefile.am delete mode 100644 test_problems/cathermo/DH_graph_NM/Makefile.in create mode 100644 test_problems/cathermo/DH_graph_Pitzer/Makefile.am delete mode 100644 test_problems/cathermo/DH_graph_Pitzer/Makefile.in delete mode 100644 test_problems/cathermo/DH_graph_acommon/Makefile.in create mode 100644 test_problems/cathermo/DH_graph_bdotak/Makefile.am delete mode 100644 test_problems/cathermo/DH_graph_bdotak/Makefile.in diff --git a/test_problems/cathermo/DH_graph_1/Makefile.in b/test_problems/cathermo/DH_graph_1/Makefile.in deleted file mode 100644 index 1ed1c5902..000000000 --- a/test_problems/cathermo/DH_graph_1/Makefile.in +++ /dev/null @@ -1,562 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = DH_graph_1$(EXEEXT) -subdir = test_problems/cathermo/DH_graph_1 -DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = DH_graph_1.$(OBJEXT) -am_DH_graph_1_OBJECTS = $(am__objects_1) -DH_graph_1_OBJECTS = $(am_DH_graph_1_OBJECTS) -DH_graph_1_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(DH_graph_1_SOURCES) -DIST_SOURCES = $(DH_graph_1_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = DH_graph_1.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -DH_graph_1_SOURCES = $(cc_sources) -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/DH_graph_1/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/DH_graph_1/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -DH_graph_1$(EXEEXT): $(DH_graph_1_OBJECTS) $(DH_graph_1_DEPENDENCIES) - @rm -f DH_graph_1$(EXEEXT) - $(CXXLINK) $(DH_graph_1_OBJECTS) $(DH_graph_1_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DH_graph_1.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ - clean-generic clean-libtool ctags distclean distclean-compile \ - distclean-generic distclean-libtool distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-binPROGRAMS install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am \ - uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/DH_graph_NM/Makefile.am b/test_problems/cathermo/DH_graph_NM/Makefile.am new file mode 100644 index 000000000..514cdd794 --- /dev/null +++ b/test_problems/cathermo/DH_graph_NM/Makefile.am @@ -0,0 +1,20 @@ +cc_sources = DH_graph_1.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = DH_graph_1 +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +DH_graph_1_SOURCES = $(cc_sources) diff --git a/test_problems/cathermo/DH_graph_NM/Makefile.in b/test_problems/cathermo/DH_graph_NM/Makefile.in deleted file mode 100644 index c58bbb03a..000000000 --- a/test_problems/cathermo/DH_graph_NM/Makefile.in +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = DH_graph_1 - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = DH_graph_1.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/DH_graph_Pitzer/Makefile.am b/test_problems/cathermo/DH_graph_Pitzer/Makefile.am new file mode 100644 index 000000000..514cdd794 --- /dev/null +++ b/test_problems/cathermo/DH_graph_Pitzer/Makefile.am @@ -0,0 +1,20 @@ +cc_sources = DH_graph_1.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = DH_graph_1 +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +DH_graph_1_SOURCES = $(cc_sources) diff --git a/test_problems/cathermo/DH_graph_Pitzer/Makefile.in b/test_problems/cathermo/DH_graph_Pitzer/Makefile.in deleted file mode 100644 index 4069da854..000000000 --- a/test_problems/cathermo/DH_graph_Pitzer/Makefile.in +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = DH_graph_1 - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = DH_graph_1.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/cathermo/DH_graph_acommon/Makefile.in b/test_problems/cathermo/DH_graph_acommon/Makefile.in deleted file mode 100644 index 027cbe883..000000000 --- a/test_problems/cathermo/DH_graph_acommon/Makefile.in +++ /dev/null @@ -1,562 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = DH_graph_1$(EXEEXT) -subdir = test_problems/cathermo/DH_graph_acommon -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = DH_graph_1.$(OBJEXT) -am_DH_graph_1_OBJECTS = $(am__objects_1) -DH_graph_1_OBJECTS = $(am_DH_graph_1_OBJECTS) -DH_graph_1_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(DH_graph_1_SOURCES) -DIST_SOURCES = $(DH_graph_1_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = DH_graph_1.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -DH_graph_1_SOURCES = $(cc_sources) -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/DH_graph_acommon/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/DH_graph_acommon/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -DH_graph_1$(EXEEXT): $(DH_graph_1_OBJECTS) $(DH_graph_1_DEPENDENCIES) - @rm -f DH_graph_1$(EXEEXT) - $(CXXLINK) $(DH_graph_1_OBJECTS) $(DH_graph_1_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DH_graph_1.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ - clean-generic clean-libtool ctags distclean distclean-compile \ - distclean-generic distclean-libtool distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-binPROGRAMS install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am \ - uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/DH_graph_bdotak/Makefile.am b/test_problems/cathermo/DH_graph_bdotak/Makefile.am new file mode 100644 index 000000000..514cdd794 --- /dev/null +++ b/test_problems/cathermo/DH_graph_bdotak/Makefile.am @@ -0,0 +1,20 @@ +cc_sources = DH_graph_1.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = DH_graph_1 +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +DH_graph_1_SOURCES = $(cc_sources) diff --git a/test_problems/cathermo/DH_graph_bdotak/Makefile.in b/test_problems/cathermo/DH_graph_bdotak/Makefile.in deleted file mode 100644 index bee9ee383..000000000 --- a/test_problems/cathermo/DH_graph_bdotak/Makefile.in +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = DH_graph_1 - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = DH_graph_1.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/Makefile.am b/test_problems/cathermo/Makefile.am index d9611d780..8c1e86c88 100644 --- a/test_problems/cathermo/Makefile.am +++ b/test_problems/cathermo/Makefile.am @@ -1 +1,4 @@ -SUBDIRS = DH_graph_1 DH_graph_acommon \ No newline at end of file +SUBDIRS = DH_graph_1 DH_graph_acommon DH_graph_bdotak/ + +# DH_graph_Pitzer/ HMW_graph_CpvT/ HMW_graph_GvT/ HMW_graph_VvT/ HMW_test_3/ issp/ Makefile.am stoichSubSSTP/ testIAPWSPres/ testWaterPDSS/ VPissp/ +# DH_graph_NM/ HMW_dupl_test/ HMW_graph_GvI/ HMW_graph_HvT/ HMW_test_1/ ims/ Makefile Makefile.in testIAPWS/ testIAPWSTripP/ testWaterTP/ wtWater/ From f4aae71d131d24550ac84c9ca465170f9e307ba5 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 1 Feb 2012 23:22:53 +0000 Subject: [PATCH 061/124] [cantera]: forgot configure.ac update --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index 6d3a98b77..945a3dcf8 100644 --- a/configure.ac +++ b/configure.ac @@ -64,6 +64,9 @@ AC_OUTPUT(Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ + test_problems/cathermo/DH_graph_bdotak/Makefile \ + test_problems/cathermo/DH_graph_NM/Makefile \ + test_problems/cathermo/DH_graph_Pitzer/Makefile \ doxygen/Makefile \ ext/Makefile \ ext/tpx/Makefile \ From 7b8bec8bae9df7a8f93f7da6f3b5199867b7bc21 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 1 Feb 2012 23:24:45 +0000 Subject: [PATCH 062/124] [cantera]: also now adding makefile update for test --- test_problems/cathermo/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test_problems/cathermo/Makefile.am b/test_problems/cathermo/Makefile.am index 8c1e86c88..6f9c610ea 100644 --- a/test_problems/cathermo/Makefile.am +++ b/test_problems/cathermo/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = DH_graph_1 DH_graph_acommon DH_graph_bdotak/ +SUBDIRS = DH_graph_1 DH_graph_acommon DH_graph_bdotak/ DH_graph_Pitzer/ DH_graph_NM/ -# DH_graph_Pitzer/ HMW_graph_CpvT/ HMW_graph_GvT/ HMW_graph_VvT/ HMW_test_3/ issp/ Makefile.am stoichSubSSTP/ testIAPWSPres/ testWaterPDSS/ VPissp/ -# DH_graph_NM/ HMW_dupl_test/ HMW_graph_GvI/ HMW_graph_HvT/ HMW_test_1/ ims/ Makefile Makefile.in testIAPWS/ testIAPWSTripP/ testWaterTP/ wtWater/ +# HMW_graph_CpvT/ HMW_graph_GvT/ HMW_graph_VvT/ HMW_test_3/ issp/ Makefile.am stoichSubSSTP/ testIAPWSPres/ testWaterPDSS/ VPissp/ +# HMW_dupl_test/ HMW_graph_GvI/ HMW_graph_HvT/ HMW_test_1/ ims/ Makefile Makefile.in testIAPWS/ testIAPWSTripP/ testWaterTP/ wtWater/ From f13b925f8b2775a1f44ed3cd2cb3367a183340a9 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 2 Feb 2012 17:16:07 +0000 Subject: [PATCH 063/124] [cantera]: adding tests for HWM graph cpvt --- test_problems/cathermo/DH_graph_1/Makefile.am | 4 + .../cathermo/DH_graph_NM/Makefile.am | 3 + .../cathermo/DH_graph_Pitzer/Makefile.am | 3 + .../cathermo/DH_graph_acommon/Makefile.am | 3 + .../cathermo/DH_graph_bdotak/Makefile.am | 3 + .../cathermo/HMW_dupl_test/Makefile.am | 23 ++++ .../cathermo/HMW_dupl_test/Makefile.in | 114 ----------------- .../cathermo/HMW_graph_CpvT/Makefile.am | 23 ++++ .../cathermo/HMW_graph_CpvT/Makefile.in | 119 ------------------ test_problems/cathermo/Makefile.am | 5 +- 10 files changed, 65 insertions(+), 235 deletions(-) create mode 100644 test_problems/cathermo/HMW_dupl_test/Makefile.am delete mode 100644 test_problems/cathermo/HMW_dupl_test/Makefile.in create mode 100644 test_problems/cathermo/HMW_graph_CpvT/Makefile.am delete mode 100644 test_problems/cathermo/HMW_graph_CpvT/Makefile.in diff --git a/test_problems/cathermo/DH_graph_1/Makefile.am b/test_problems/cathermo/DH_graph_1/Makefile.am index 514cdd794..0d6b01886 100644 --- a/test_problems/cathermo/DH_graph_1/Makefile.am +++ b/test_problems/cathermo/DH_graph_1/Makefile.am @@ -18,3 +18,7 @@ library_includedir = $(INC) #----------------------- DH_graph_1_SOURCES = $(cc_sources) + + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/DH_graph_NM/Makefile.am b/test_problems/cathermo/DH_graph_NM/Makefile.am index 514cdd794..e0ff0a8ba 100644 --- a/test_problems/cathermo/DH_graph_NM/Makefile.am +++ b/test_problems/cathermo/DH_graph_NM/Makefile.am @@ -18,3 +18,6 @@ library_includedir = $(INC) #----------------------- DH_graph_1_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/DH_graph_Pitzer/Makefile.am b/test_problems/cathermo/DH_graph_Pitzer/Makefile.am index 514cdd794..e0ff0a8ba 100644 --- a/test_problems/cathermo/DH_graph_Pitzer/Makefile.am +++ b/test_problems/cathermo/DH_graph_Pitzer/Makefile.am @@ -18,3 +18,6 @@ library_includedir = $(INC) #----------------------- DH_graph_1_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/DH_graph_acommon/Makefile.am b/test_problems/cathermo/DH_graph_acommon/Makefile.am index 514cdd794..162babaad 100644 --- a/test_problems/cathermo/DH_graph_acommon/Makefile.am +++ b/test_problems/cathermo/DH_graph_acommon/Makefile.am @@ -18,3 +18,6 @@ library_includedir = $(INC) #----------------------- DH_graph_1_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest \ No newline at end of file diff --git a/test_problems/cathermo/DH_graph_bdotak/Makefile.am b/test_problems/cathermo/DH_graph_bdotak/Makefile.am index 514cdd794..e0ff0a8ba 100644 --- a/test_problems/cathermo/DH_graph_bdotak/Makefile.am +++ b/test_problems/cathermo/DH_graph_bdotak/Makefile.am @@ -18,3 +18,6 @@ library_includedir = $(INC) #----------------------- DH_graph_1_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/HMW_dupl_test/Makefile.am b/test_problems/cathermo/HMW_dupl_test/Makefile.am new file mode 100644 index 000000000..4e3343760 --- /dev/null +++ b/test_problems/cathermo/HMW_dupl_test/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = HMW_dupl_test.cpp sortAlgorithms.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = HMW_dupl_test +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +HMW_dupl_test_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/HMW_dupl_test/Makefile.in b/test_problems/cathermo/HMW_dupl_test/Makefile.in deleted file mode 100644 index 95f410f8c..000000000 --- a/test_problems/cathermo/HMW_dupl_test/Makefile.in +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = HMW_dupl_test - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = HMW_dupl_test.o sortAlgorithms.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends *.o - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/HMW_graph_CpvT/Makefile.am b/test_problems/cathermo/HMW_graph_CpvT/Makefile.am new file mode 100644 index 000000000..753aa999b --- /dev/null +++ b/test_problems/cathermo/HMW_graph_CpvT/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = HMW_graph_CpvT.cpp sortAlgorithms.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = HMW_graph_CpvT +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +HMW_graph_CpvT_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/HMW_graph_CpvT/Makefile.in b/test_problems/cathermo/HMW_graph_CpvT/Makefile.in deleted file mode 100644 index 445a524ff..000000000 --- a/test_problems/cathermo/HMW_graph_CpvT/Makefile.in +++ /dev/null @@ -1,119 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = HMW_graph_CpvT - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = HMW_graph_CpvT.o sortAlgorithms.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends Cp_standalone - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -Cp_standalone: Cp_standalone.o - $(CXX) -o Cp_standalone Cp_standalone.o \ - $(LCXX_FLAGS) $(LINK_OPTIONS) $(LCXX_END_LIBS) - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends *.o - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/Makefile.am b/test_problems/cathermo/Makefile.am index 6f9c610ea..d83de99a5 100644 --- a/test_problems/cathermo/Makefile.am +++ b/test_problems/cathermo/Makefile.am @@ -1,4 +1,5 @@ -SUBDIRS = DH_graph_1 DH_graph_acommon DH_graph_bdotak/ DH_graph_Pitzer/ DH_graph_NM/ +SUBDIRS = DH_graph_1 DH_graph_acommon DH_graph_bdotak/ DH_graph_Pitzer/ DH_graph_NM/ HMW_dupl_test/ HMW_graph_CpvT +#SUBDIRS += # HMW_graph_CpvT/ HMW_graph_GvT/ HMW_graph_VvT/ HMW_test_3/ issp/ Makefile.am stoichSubSSTP/ testIAPWSPres/ testWaterPDSS/ VPissp/ -# HMW_dupl_test/ HMW_graph_GvI/ HMW_graph_HvT/ HMW_test_1/ ims/ Makefile Makefile.in testIAPWS/ testIAPWSTripP/ testWaterTP/ wtWater/ +# HMW_graph_GvI/ HMW_graph_HvT/ HMW_test_1/ ims/ Makefile Makefile.in testIAPWS/ testIAPWSTripP/ testWaterTP/ wtWater/ From d84133fc9f430c32c9428c3ab474fb7ef02fb788 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 2 Feb 2012 17:41:31 +0000 Subject: [PATCH 064/124] [cantera]: all HMW tests functioning --- .../cathermo/HMW_graph_GvI/Makefile.am | 23 + .../cathermo/HMW_graph_GvI/Makefile.in | 735 ++++++++++++++--- .../cathermo/HMW_graph_GvT/Makefile.am | 23 + .../cathermo/HMW_graph_GvT/Makefile.in | 736 ++++++++++++++--- .../cathermo/HMW_graph_HvT/Makefile.am | 23 + .../cathermo/HMW_graph_HvT/Makefile.in | 740 ++++++++++++++--- .../cathermo/HMW_graph_VvT/Makefile.am | 23 + .../cathermo/HMW_graph_VvT/Makefile.in | 741 ++++++++++++++--- test_problems/cathermo/HMW_test_1/Makefile.am | 23 + test_problems/cathermo/HMW_test_1/Makefile.in | 766 +++++++++++++++--- test_problems/cathermo/HMW_test_3/Makefile.am | 23 + test_problems/cathermo/HMW_test_3/Makefile.in | 726 ++++++++++++++--- test_problems/cathermo/Makefile.am | 8 +- 13 files changed, 3985 insertions(+), 605 deletions(-) create mode 100644 test_problems/cathermo/HMW_graph_GvI/Makefile.am create mode 100644 test_problems/cathermo/HMW_graph_GvT/Makefile.am create mode 100644 test_problems/cathermo/HMW_graph_HvT/Makefile.am create mode 100644 test_problems/cathermo/HMW_graph_VvT/Makefile.am create mode 100644 test_problems/cathermo/HMW_test_1/Makefile.am create mode 100644 test_problems/cathermo/HMW_test_3/Makefile.am diff --git a/test_problems/cathermo/HMW_graph_GvI/Makefile.am b/test_problems/cathermo/HMW_graph_GvI/Makefile.am new file mode 100644 index 000000000..c7583d584 --- /dev/null +++ b/test_problems/cathermo/HMW_graph_GvI/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = HMW_graph_GvI.cpp sortAlgorithms.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = HMW_graph_GvI +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +HMW_graph_GvI_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/HMW_graph_GvI/Makefile.in b/test_problems/cathermo/HMW_graph_GvI/Makefile.in index cc2d1cbe2..b8747afab 100644 --- a/test_problems/cathermo/HMW_graph_GvI/Makefile.in +++ b/test_problems/cathermo/HMW_graph_GvI/Makefile.in @@ -1,115 +1,660 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = HMW_graph_GvI +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = HMW_graph_GvI.o sortAlgorithms.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = HMW_graph_GvI$(EXEEXT) +subdir = test_problems/cathermo/HMW_graph_GvI +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = HMW_graph_GvI.$(OBJEXT) sortAlgorithms.$(OBJEXT) +am_HMW_graph_GvI_OBJECTS = $(am__objects_1) +HMW_graph_GvI_OBJECTS = $(am_HMW_graph_GvI_OBJECTS) +HMW_graph_GvI_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(HMW_graph_GvI_SOURCES) +DIST_SOURCES = $(HMW_graph_GvI_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = HMW_graph_GvI.cpp sortAlgorithms.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = -DSRCDIRTREE @CXXFLAGS@ @CXX_INCLUDES@ +#----------------------- +# Cantera DH graph test +#----------------------- +HMW_graph_GvI_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/HMW_graph_GvI/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/HMW_graph_GvI/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +HMW_graph_GvI$(EXEEXT): $(HMW_graph_GvI_OBJECTS) $(HMW_graph_GvI_DEPENDENCIES) + @rm -f HMW_graph_GvI$(EXEEXT) + $(CXXLINK) $(HMW_graph_GvI_OBJECTS) $(HMW_graph_GvI_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HMW_graph_GvI.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sortAlgorithms.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -all: $(PROGRAM) .depends +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/HMW_graph_GvT/Makefile.am b/test_problems/cathermo/HMW_graph_GvT/Makefile.am new file mode 100644 index 000000000..d01b220bd --- /dev/null +++ b/test_problems/cathermo/HMW_graph_GvT/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = HMW_graph_GvT.cpp sortAlgorithms.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = HMW_graph_GvT +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +HMW_graph_GvT_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/HMW_graph_GvT/Makefile.in b/test_problems/cathermo/HMW_graph_GvT/Makefile.in index c65d4916f..cf079c0b4 100644 --- a/test_problems/cathermo/HMW_graph_GvT/Makefile.in +++ b/test_problems/cathermo/HMW_graph_GvT/Makefile.in @@ -1,118 +1,660 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = HMW_graph_GvT +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = HMW_graph_GvT.o sortAlgorithms.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = HMW_graph_GvT$(EXEEXT) +subdir = test_problems/cathermo/HMW_graph_GvT +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = HMW_graph_GvT.$(OBJEXT) sortAlgorithms.$(OBJEXT) +am_HMW_graph_GvT_OBJECTS = $(am__objects_1) +HMW_graph_GvT_OBJECTS = $(am_HMW_graph_GvT_OBJECTS) +HMW_graph_GvT_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(HMW_graph_GvT_SOURCES) +DIST_SOURCES = $(HMW_graph_GvT_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = HMW_graph_GvT.cpp sortAlgorithms.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ +#----------------------- +# Cantera DH graph test +#----------------------- +HMW_graph_GvT_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/HMW_graph_GvT/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/HMW_graph_GvT/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +HMW_graph_GvT$(EXEEXT): $(HMW_graph_GvT_OBJECTS) $(HMW_graph_GvT_DEPENDENCIES) + @rm -f HMW_graph_GvT$(EXEEXT) + $(CXXLINK) $(HMW_graph_GvT_OBJECTS) $(HMW_graph_GvT_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HMW_graph_GvT.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sortAlgorithms.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -all: $(PROGRAM) .depends Gex_standalone +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS -Gex_standalone: Gex_standalone.o - $(CXX) -o Gex_standalone Gex_standalone.o \ - $(LCXX_FLAGS) $(LINK_OPTIONS) $(LCXX_END_LIBS) - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends *.o - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/HMW_graph_HvT/Makefile.am b/test_problems/cathermo/HMW_graph_HvT/Makefile.am new file mode 100644 index 000000000..6a933469e --- /dev/null +++ b/test_problems/cathermo/HMW_graph_HvT/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = HMW_graph_HvT.cpp sortAlgorithms.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = HMW_graph_HvT +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +HMW_graph_HvT_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/HMW_graph_HvT/Makefile.in b/test_problems/cathermo/HMW_graph_HvT/Makefile.in index b0ecf6a2b..3d500d6d6 100644 --- a/test_problems/cathermo/HMW_graph_HvT/Makefile.in +++ b/test_problems/cathermo/HMW_graph_HvT/Makefile.in @@ -1,120 +1,660 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = HMW_graph_HvT +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = HMW_graph_HvT.o sortAlgorithms.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = HMW_graph_HvT$(EXEEXT) +subdir = test_problems/cathermo/HMW_graph_HvT +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = HMW_graph_HvT.$(OBJEXT) sortAlgorithms.$(OBJEXT) +am_HMW_graph_HvT_OBJECTS = $(am__objects_1) +HMW_graph_HvT_OBJECTS = $(am_HMW_graph_HvT_OBJECTS) +HMW_graph_HvT_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(HMW_graph_HvT_SOURCES) +DIST_SOURCES = $(HMW_graph_HvT_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = HMW_graph_HvT.cpp sortAlgorithms.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ +#----------------------- +# Cantera DH graph test +#----------------------- +HMW_graph_HvT_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/HMW_graph_HvT/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/HMW_graph_HvT/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +HMW_graph_HvT$(EXEEXT): $(HMW_graph_HvT_OBJECTS) $(HMW_graph_HvT_DEPENDENCIES) + @rm -f HMW_graph_HvT$(EXEEXT) + $(CXXLINK) $(HMW_graph_HvT_OBJECTS) $(HMW_graph_HvT_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HMW_graph_HvT.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sortAlgorithms.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -all: $(PROGRAM) .depends L_standalone +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -L_standalone: L_standalone.o - $(CXX) -o L_standalone L_standalone.o \ - $(LCXX_FLAGS) $(LINK_OPTIONS) $(LCXX_END_LIBS) - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends *.o - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/HMW_graph_VvT/Makefile.am b/test_problems/cathermo/HMW_graph_VvT/Makefile.am new file mode 100644 index 000000000..28cc1b6d1 --- /dev/null +++ b/test_problems/cathermo/HMW_graph_VvT/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = HMW_graph_VvT.cpp sortAlgorithms.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = HMW_graph_VvT +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +HMW_graph_VvT_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/HMW_graph_VvT/Makefile.in b/test_problems/cathermo/HMW_graph_VvT/Makefile.in index cd5437328..cd0bc563a 100644 --- a/test_problems/cathermo/HMW_graph_VvT/Makefile.in +++ b/test_problems/cathermo/HMW_graph_VvT/Makefile.in @@ -1,121 +1,660 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = HMW_graph_VvT +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = HMW_graph_VvT.o sortAlgorithms.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = HMW_graph_VvT$(EXEEXT) +subdir = test_problems/cathermo/HMW_graph_VvT +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = HMW_graph_VvT.$(OBJEXT) sortAlgorithms.$(OBJEXT) +am_HMW_graph_VvT_OBJECTS = $(am__objects_1) +HMW_graph_VvT_OBJECTS = $(am_HMW_graph_VvT_OBJECTS) +HMW_graph_VvT_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(HMW_graph_VvT_SOURCES) +DIST_SOURCES = $(HMW_graph_VvT_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = HMW_graph_VvT.cpp sortAlgorithms.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ +#----------------------- +# Cantera DH graph test +#----------------------- +HMW_graph_VvT_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/HMW_graph_VvT/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/HMW_graph_VvT/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +HMW_graph_VvT$(EXEEXT): $(HMW_graph_VvT_OBJECTS) $(HMW_graph_VvT_DEPENDENCIES) + @rm -f HMW_graph_VvT$(EXEEXT) + $(CXXLINK) $(HMW_graph_VvT_OBJECTS) $(HMW_graph_VvT_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HMW_graph_VvT.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sortAlgorithms.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -all: $(PROGRAM) .depends V_standalone +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -V_standalone: V_standalone.o - $(CXX) -o V_standalone V_standalone.o \ - $(LCXX_FLAGS) $(LINK_OPTIONS) $(LCXX_END_LIBS) - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends *.o - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/HMW_test_1/Makefile.am b/test_problems/cathermo/HMW_test_1/Makefile.am new file mode 100644 index 000000000..3a5cc66c4 --- /dev/null +++ b/test_problems/cathermo/HMW_test_1/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = HMW_test_1.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = HMW_test_1 +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +HMW_test_1_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/HMW_test_1/Makefile.in b/test_problems/cathermo/HMW_test_1/Makefile.in index 7ae9500eb..d4a9a7c73 100644 --- a/test_problems/cathermo/HMW_test_1/Makefile.in +++ b/test_problems/cathermo/HMW_test_1/Makefile.in @@ -1,123 +1,659 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = HMW_test_1 +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = HMW_test_1.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = HMW_test_1$(EXEEXT) +subdir = test_problems/cathermo/HMW_test_1 +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = HMW_test_1.$(OBJEXT) +am_HMW_test_1_OBJECTS = $(am__objects_1) +HMW_test_1_OBJECTS = $(am_HMW_test_1_OBJECTS) +HMW_test_1_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(HMW_test_1_SOURCES) +DIST_SOURCES = $(HMW_test_1_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = HMW_test_1.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -debug_mode = @CANTERA_DEBUG_MODE@ -ifeq ($(debug_mode), 1) - DEBUG_FLAG=-DDEBUG_MODE -else - DEBUG_FLAG= -endif +#----------------------- +# Cantera DH graph test +#----------------------- +HMW_test_1_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am + +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/HMW_test_1/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/HMW_test_1/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +HMW_test_1$(EXEEXT): $(HMW_test_1_OBJECTS) $(HMW_test_1_DEPENDENCIES) + @rm -f HMW_test_1$(EXEEXT) + $(CXXLINK) $(HMW_test_1_OBJECTS) $(HMW_test_1_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HMW_test_1.Po@am__quote@ + +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< + +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(DEBUG_FLAG) - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/HMW_test_3/Makefile.am b/test_problems/cathermo/HMW_test_3/Makefile.am new file mode 100644 index 000000000..8836282e9 --- /dev/null +++ b/test_problems/cathermo/HMW_test_3/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = HMW_test_3.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = HMW_test_3 +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +HMW_test_3_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/HMW_test_3/Makefile.in b/test_problems/cathermo/HMW_test_3/Makefile.in index a535d3067..776f610a3 100644 --- a/test_problems/cathermo/HMW_test_3/Makefile.in +++ b/test_problems/cathermo/HMW_test_3/Makefile.in @@ -1,119 +1,659 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = HMW_test_3 +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = HMW_test_3.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = HMW_test_3$(EXEEXT) +subdir = test_problems/cathermo/HMW_test_3 +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = HMW_test_3.$(OBJEXT) +am_HMW_test_3_OBJECTS = $(am__objects_1) +HMW_test_3_OBJECTS = $(am_HMW_test_3_OBJECTS) +HMW_test_3_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(HMW_test_3_SOURCES) +DIST_SOURCES = $(HMW_test_3_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = HMW_test_3.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -do_DEBUG_MODE = @CANTERA_DEBUG_MODE@ -ifeq ($(do_DEBUG_MODE), 1) -DDD = -DDEBUG_MODE -else -DDD = -endif +#----------------------- +# Cantera DH graph test +#----------------------- +HMW_test_3_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(DDD) +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/HMW_test_3/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/HMW_test_3/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +HMW_test_3$(EXEEXT): $(HMW_test_3_OBJECTS) $(HMW_test_3_DEPENDENCIES) + @rm -f HMW_test_3$(EXEEXT) + $(CXXLINK) $(HMW_test_3_OBJECTS) $(HMW_test_3_LDADD) $(LIBS) -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +distclean-compile: + -rm -f *.tab.c -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HMW_test_3.Po@am__quote@ -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -all: .depends $(PROGRAM) +mostlyclean-libtool: + -rm -f *.lo -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +clean-libtool: + -rm -rf .libs _libs -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi -ifeq ($(wildcard .depends), .depends) -include .depends -endif +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/Makefile.am b/test_problems/cathermo/Makefile.am index d83de99a5..008e6e775 100644 --- a/test_problems/cathermo/Makefile.am +++ b/test_problems/cathermo/Makefile.am @@ -1,5 +1,5 @@ -SUBDIRS = DH_graph_1 DH_graph_acommon DH_graph_bdotak/ DH_graph_Pitzer/ DH_graph_NM/ HMW_dupl_test/ HMW_graph_CpvT -#SUBDIRS += +SUBDIRS = DH_graph_1 DH_graph_acommon DH_graph_bdotak DH_graph_Pitzer DH_graph_NM HMW_dupl_test HMW_graph_CpvT +SUBDIRS += HMW_graph_CpvT HMW_graph_GvT HMW_graph_VvT HMW_test_3 HMW_graph_GvI HMW_graph_HvT HMW_test_1 -# HMW_graph_CpvT/ HMW_graph_GvT/ HMW_graph_VvT/ HMW_test_3/ issp/ Makefile.am stoichSubSSTP/ testIAPWSPres/ testWaterPDSS/ VPissp/ -# HMW_graph_GvI/ HMW_graph_HvT/ HMW_test_1/ ims/ Makefile Makefile.in testIAPWS/ testIAPWSTripP/ testWaterTP/ wtWater/ +# issp/ Makefile.am stoichSubSSTP/ testIAPWSPres/ testWaterPDSS/ VPissp/ +# ims/ Makefile Makefile.in testIAPWS/ testIAPWSTripP/ testWaterTP/ wtWater/ From e0eeb3825ffe3e1c71e42e3d06e9e973d22116a7 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 2 Feb 2012 19:28:34 +0000 Subject: [PATCH 065/124] [cantera]: adding error codes to runtest scripts --- test_problems/cathermo/DH_graph_1/runtest | 2 ++ test_problems/cathermo/DH_graph_NM/runtest | 2 ++ test_problems/cathermo/DH_graph_Pitzer/runtest | 2 ++ test_problems/cathermo/DH_graph_acommon/runtest | 2 ++ test_problems/cathermo/DH_graph_bdotak/runtest | 2 ++ test_problems/cathermo/HMW_dupl_test/runtest | 2 ++ 6 files changed, 12 insertions(+) diff --git a/test_problems/cathermo/DH_graph_1/runtest b/test_problems/cathermo/DH_graph_1/runtest index eab6203ec..9a6a5043d 100755 --- a/test_problems/cathermo/DH_graph_1/runtest +++ b/test_problems/cathermo/DH_graph_1/runtest @@ -46,6 +46,8 @@ fi ########################################################################## if test $temp_success = "0" ; then echo "PASSED" > csvCode.txt + return 0 else echo "FAILED" > csvCode.txt + return 1 fi diff --git a/test_problems/cathermo/DH_graph_NM/runtest b/test_problems/cathermo/DH_graph_NM/runtest index 104cdfdd8..420212925 100755 --- a/test_problems/cathermo/DH_graph_NM/runtest +++ b/test_problems/cathermo/DH_graph_NM/runtest @@ -32,9 +32,11 @@ diff DH_NaCl_NM.csv DH_NaCl_NM_blessed.csv > output.txt zres=$? if test "$zres" = "0" -a "$retnStat" = "0"; then echo "successful diff comparison on $prog NM test" + return 0 else echo "unsuccessful diff comparison on $prog NM test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi diff --git a/test_problems/cathermo/DH_graph_Pitzer/runtest b/test_problems/cathermo/DH_graph_Pitzer/runtest index 977c5b988..8efb10075 100755 --- a/test_problems/cathermo/DH_graph_Pitzer/runtest +++ b/test_problems/cathermo/DH_graph_Pitzer/runtest @@ -32,9 +32,11 @@ diff DH_NaCl_Pitzer.csv DH_NaCl_Pitzer_blessed.csv > output.txt zres=$? if test "$zres" = "0" -a "$retnStat" = "0"; then echo "successful diff comparison on $prog Pitzer test" + return 0 else echo "unsuccessful diff comparison on $prog Pitzer test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi diff --git a/test_problems/cathermo/DH_graph_acommon/runtest b/test_problems/cathermo/DH_graph_acommon/runtest index 08a052cb8..5d98da1d3 100755 --- a/test_problems/cathermo/DH_graph_acommon/runtest +++ b/test_problems/cathermo/DH_graph_acommon/runtest @@ -32,9 +32,11 @@ diff DH_NaCl_acommon.csv DH_NaCl_acommon_blessed.csv > output.txt zres=$? if test "$zres" = "0" -a "$retnStat" = "0"; then echo "successful diff comparison on $prog _acommon test" + return 0 else echo "unsuccessful diff comparison on $prog _acommon test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi diff --git a/test_problems/cathermo/DH_graph_bdotak/runtest b/test_problems/cathermo/DH_graph_bdotak/runtest index 156aeb5d4..e5f3d5cf7 100755 --- a/test_problems/cathermo/DH_graph_bdotak/runtest +++ b/test_problems/cathermo/DH_graph_bdotak/runtest @@ -32,9 +32,11 @@ diff DH_NaCl_bdotak.csv DH_NaCl_bdotak_blessed.csv > output.txt zres=$? if test "$zres" = "0" -a "$retnStat" = "0"; then echo "successful diff comparison on $prog bdotak test" + return 0 else echo "unsuccessful diff comparison on $prog bdotak test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi diff --git a/test_problems/cathermo/HMW_dupl_test/runtest b/test_problems/cathermo/HMW_dupl_test/runtest index a85fe7f7b..522e697ea 100755 --- a/test_problems/cathermo/HMW_dupl_test/runtest +++ b/test_problems/cathermo/HMW_dupl_test/runtest @@ -34,9 +34,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on $prog test" + return 0 else echo "unsuccessful diff comparison on $prog test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi From a3f16ff5964a1b1b2abfc54b40df11433845a630 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 2 Feb 2012 22:18:30 +0000 Subject: [PATCH 066/124] [cantera]: done with tests in cathermo --- Cantera/src/thermo/Makefile.am | 5 +- configure.ac | 18 + test_problems/cathermo/HMW_dupl_test/runtest | 2 +- test_problems/cathermo/Makefile.am | 5 +- test_problems/cathermo/VPissp/Makefile.am | 23 + test_problems/cathermo/VPissp/Makefile.in | 735 ++++++++++++++--- test_problems/cathermo/VPissp/runtest | 2 + test_problems/cathermo/ims/Makefile.am | 23 + test_problems/cathermo/ims/Makefile.in | 731 ++++++++++++++--- test_problems/cathermo/ims/runtest | 2 + test_problems/cathermo/issp/Makefile.am | 23 + test_problems/cathermo/issp/Makefile.in | 736 +++++++++++++++--- test_problems/cathermo/issp/runtest | 2 + .../cathermo/stoichSubSSTP/Makefile.am | 23 + .../cathermo/stoichSubSSTP/Makefile.in | 732 ++++++++++++++--- test_problems/cathermo/stoichSubSSTP/runtest | 2 + test_problems/cathermo/testIAPWS/Makefile.am | 23 + test_problems/cathermo/testIAPWS/Makefile.in | 731 ++++++++++++++--- test_problems/cathermo/testIAPWS/runtest | 2 + .../cathermo/testIAPWSPres/Makefile.am | 23 + .../cathermo/testIAPWSPres/Makefile.in | 721 ++++++++++++++--- test_problems/cathermo/testIAPWSPres/runtest | 2 + .../cathermo/testIAPWSTripP/Makefile.am | 23 + .../cathermo/testIAPWSTripP/Makefile.in | 730 ++++++++++++++--- test_problems/cathermo/testIAPWSTripP/runtest | 2 + .../cathermo/testWaterPDSS/Makefile.am | 23 + .../cathermo/testWaterPDSS/Makefile.in | 721 ++++++++++++++--- test_problems/cathermo/testWaterPDSS/runtest | 2 + .../cathermo/testWaterTP/Makefile.am | 23 + .../cathermo/testWaterTP/Makefile.in | 734 ++++++++++++++--- test_problems/cathermo/testWaterTP/runtest | 2 + test_problems/cathermo/wtWater/Makefile.am | 23 + test_problems/cathermo/wtWater/Makefile.in | 720 +++++++++++++++-- test_problems/cathermo/wtWater/runtest | 2 + 34 files changed, 6647 insertions(+), 924 deletions(-) create mode 100644 test_problems/cathermo/VPissp/Makefile.am create mode 100644 test_problems/cathermo/ims/Makefile.am create mode 100644 test_problems/cathermo/issp/Makefile.am create mode 100644 test_problems/cathermo/stoichSubSSTP/Makefile.am create mode 100644 test_problems/cathermo/testIAPWS/Makefile.am create mode 100644 test_problems/cathermo/testIAPWSPres/Makefile.am create mode 100644 test_problems/cathermo/testIAPWSTripP/Makefile.am create mode 100644 test_problems/cathermo/testWaterPDSS/Makefile.am create mode 100644 test_problems/cathermo/testWaterTP/Makefile.am create mode 100644 test_problems/cathermo/wtWater/Makefile.am diff --git a/Cantera/src/thermo/Makefile.am b/Cantera/src/thermo/Makefile.am index b22aefc48..0e544a84d 100644 --- a/Cantera/src/thermo/Makefile.am +++ b/Cantera/src/thermo/Makefile.am @@ -20,7 +20,7 @@ h_sources = State.h Elements.h Constituents.h Phase.h mix_defs.h \ VPSSMgr_Water_ConstVol.h VPSSMgr_Water_HKFT.h \ IdealSolidSolnPhase.h StoichSubstanceSSTP.h \ SingleSpeciesTP.h MineralEQ3.h PseudoBinaryVPSSTP.h \ - MargulesVPSSTP.cpp + MargulesVPSSTP.cpp StoichSubstance.h cc_sources = State.cpp Elements.cpp Constituents.cpp Phase.cpp \ ThermoPhase.cpp IdealGasPhase.cpp ConstDensityThermo.cpp \ @@ -40,7 +40,8 @@ cc_sources = State.cpp Elements.cpp Constituents.cpp Phase.cpp \ MetalSHEelectrons.cpp VPSSMgr_Water_ConstVol.cpp \ VPSSMgr_Water_HKFT.cpp IdealSolidSolnPhase.cpp \ StoichSubstanceSSTP.cpp SingleSpeciesTP.cpp MineralEQ3.cpp \ - PseudoBinaryVPSSTP.cpp MargulesVPSSTP.cpp + PseudoBinaryVPSSTP.cpp MargulesVPSSTP.cpp \ + StoichSubstanceSSTP.cpp AM_CPPFLAGS = -I../base -I../../../ AM_CXXFLAGS = $(AM_CPPFLAGS) diff --git a/configure.ac b/configure.ac index 945a3dcf8..4d87b5ad5 100644 --- a/configure.ac +++ b/configure.ac @@ -67,6 +67,24 @@ AC_OUTPUT(Makefile \ test_problems/cathermo/DH_graph_bdotak/Makefile \ test_problems/cathermo/DH_graph_NM/Makefile \ test_problems/cathermo/DH_graph_Pitzer/Makefile \ + test_problems/cathermo/HMW_dupl_test/Makefile \ + test_problems/cathermo/HMW_graph_CpvT/Makefile \ + test_problems/cathermo/HMW_graph_HvT/Makefile \ + test_problems/cathermo/HMW_graph_GvI/Makefile \ + test_problems/cathermo/HMW_graph_GvT/Makefile \ + test_problems/cathermo/HMW_graph_VvT/Makefile \ + test_problems/cathermo/HMW_test_1/Makefile \ + test_problems/cathermo/HMW_test_3/Makefile \ + test_problems/cathermo/ims/Makefile \ + test_problems/cathermo/issp/Makefile \ + test_problems/cathermo/stoichSubSSTP/Makefile \ + test_problems/cathermo/testIAPWS/Makefile \ + test_problems/cathermo/testIAPWSPres/Makefile \ + test_problems/cathermo/testIAPWSTripP/Makefile \ + test_problems/cathermo/testWaterPDSS/Makefile \ + test_problems/cathermo/testWaterTP/Makefile \ + test_problems/cathermo/VPissp/Makefile \ + test_problems/cathermo/wtWater/Makefile \ doxygen/Makefile \ ext/Makefile \ ext/tpx/Makefile \ diff --git a/test_problems/cathermo/HMW_dupl_test/runtest b/test_problems/cathermo/HMW_dupl_test/runtest index 522e697ea..5b04008f3 100755 --- a/test_problems/cathermo/HMW_dupl_test/runtest +++ b/test_problems/cathermo/HMW_dupl_test/runtest @@ -39,6 +39,6 @@ else echo "unsuccessful diff comparison on $prog test" echo "FAILED" > csvCode.txt temp_success="0" - return 1 + return 0 fi diff --git a/test_problems/cathermo/Makefile.am b/test_problems/cathermo/Makefile.am index 008e6e775..43ebfb83a 100644 --- a/test_problems/cathermo/Makefile.am +++ b/test_problems/cathermo/Makefile.am @@ -1,5 +1,4 @@ SUBDIRS = DH_graph_1 DH_graph_acommon DH_graph_bdotak DH_graph_Pitzer DH_graph_NM HMW_dupl_test HMW_graph_CpvT SUBDIRS += HMW_graph_CpvT HMW_graph_GvT HMW_graph_VvT HMW_test_3 HMW_graph_GvI HMW_graph_HvT HMW_test_1 - -# issp/ Makefile.am stoichSubSSTP/ testIAPWSPres/ testWaterPDSS/ VPissp/ -# ims/ Makefile Makefile.in testIAPWS/ testIAPWSTripP/ testWaterTP/ wtWater/ +SUBDIRS += issp/ stoichSubSSTP/ testIAPWSPres/ testWaterPDSS/ VPissp/ +SUBDIRS += ims/ testIAPWS/ testIAPWSTripP/ testWaterTP/ wtWater/ diff --git a/test_problems/cathermo/VPissp/Makefile.am b/test_problems/cathermo/VPissp/Makefile.am new file mode 100644 index 000000000..b9418f493 --- /dev/null +++ b/test_problems/cathermo/VPissp/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = ISSPTester.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = ISSPTester +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +ISSPTester_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/VPissp/Makefile.in b/test_problems/cathermo/VPissp/Makefile.in index 59082ea8c..fc4e9420b 100644 --- a/test_problems/cathermo/VPissp/Makefile.in +++ b/test_problems/cathermo/VPissp/Makefile.in @@ -1,114 +1,659 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = ISSPTester +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = ISSPTester.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = ISSPTester$(EXEEXT) +subdir = test_problems/cathermo/VPissp +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = ISSPTester.$(OBJEXT) +am_ISSPTester_OBJECTS = $(am__objects_1) +ISSPTester_OBJECTS = $(am_ISSPTester_OBJECTS) +ISSPTester_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(ISSPTester_SOURCES) +DIST_SOURCES = $(ISSPTester_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = ISSPTester.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ +#----------------------- +# Cantera DH graph test +#----------------------- +ISSPTester_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/VPissp/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/VPissp/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +ISSPTester$(EXEEXT): $(ISSPTester_OBJECTS) $(ISSPTester_DEPENDENCIES) + @rm -f ISSPTester$(EXEEXT) + $(CXXLINK) $(ISSPTester_OBJECTS) $(ISSPTester_LDADD) $(LIBS) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +distclean-compile: + -rm -f *.tab.c -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ISSPTester.Po@am__quote@ -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -all: $(PROGRAM) .depends +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libctbase.a - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/VPissp/runtest b/test_problems/cathermo/VPissp/runtest index 6c7cf2348..c751b28db 100755 --- a/test_problems/cathermo/VPissp/runtest +++ b/test_problems/cathermo/VPissp/runtest @@ -24,9 +24,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on VPissp test" + return 0 else echo "unsuccessful diff comparison on VPissp test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi diff --git a/test_problems/cathermo/ims/Makefile.am b/test_problems/cathermo/ims/Makefile.am new file mode 100644 index 000000000..b50f28b0b --- /dev/null +++ b/test_problems/cathermo/ims/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = IMSTester.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = IMSTester +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +IMSTester_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/ims/Makefile.in b/test_problems/cathermo/ims/Makefile.in index a20f94651..b2900a5f4 100644 --- a/test_problems/cathermo/ims/Makefile.in +++ b/test_problems/cathermo/ims/Makefile.in @@ -1,114 +1,659 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = IMSTester +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = IMSTester.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = IMSTester$(EXEEXT) +subdir = test_problems/cathermo/ims +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = IMSTester.$(OBJEXT) +am_IMSTester_OBJECTS = $(am__objects_1) +IMSTester_OBJECTS = $(am_IMSTester_OBJECTS) +IMSTester_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(IMSTester_SOURCES) +DIST_SOURCES = $(IMSTester_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = IMSTester.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ +#----------------------- +# Cantera DH graph test +#----------------------- +IMSTester_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/ims/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/ims/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +IMSTester$(EXEEXT): $(IMSTester_OBJECTS) $(IMSTester_DEPENDENCIES) + @rm -f IMSTester$(EXEEXT) + $(CXXLINK) $(IMSTester_OBJECTS) $(IMSTester_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMSTester.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -all: $(PROGRAM) .depends +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/ims/runtest b/test_problems/cathermo/ims/runtest index bf0e5e34f..cbbd54163 100755 --- a/test_problems/cathermo/ims/runtest +++ b/test_problems/cathermo/ims/runtest @@ -24,9 +24,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on IMSTester test" + return 0 else echo "unsuccessful diff comparison on IMSTester test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi diff --git a/test_problems/cathermo/issp/Makefile.am b/test_problems/cathermo/issp/Makefile.am new file mode 100644 index 000000000..b9418f493 --- /dev/null +++ b/test_problems/cathermo/issp/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = ISSPTester.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = ISSPTester +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +ISSPTester_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/issp/Makefile.in b/test_problems/cathermo/issp/Makefile.in index 366a13061..80b898da4 100644 --- a/test_problems/cathermo/issp/Makefile.in +++ b/test_problems/cathermo/issp/Makefile.in @@ -1,117 +1,659 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = ISSPTester +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = ISSPTester.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = ISSPTester$(EXEEXT) +subdir = test_problems/cathermo/issp +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = ISSPTester.$(OBJEXT) +am_ISSPTester_OBJECTS = $(am__objects_1) +ISSPTester_OBJECTS = $(am_ISSPTester_OBJECTS) +ISSPTester_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(ISSPTester_SOURCES) +DIST_SOURCES = $(ISSPTester_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = ISSPTester.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ +#----------------------- +# Cantera DH graph test +#----------------------- +ISSPTester_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/issp/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/issp/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +ISSPTester$(EXEEXT): $(ISSPTester_OBJECTS) $(ISSPTester_DEPENDENCIES) + @rm -f ISSPTester$(EXEEXT) + $(CXXLINK) $(ISSPTester_OBJECTS) $(ISSPTester_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ISSPTester.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -all: $(PROGRAM) .depends +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/issp/runtest b/test_problems/cathermo/issp/runtest index 3b01fb2b8..9e9352e18 100755 --- a/test_problems/cathermo/issp/runtest +++ b/test_problems/cathermo/issp/runtest @@ -24,9 +24,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on issp test" + return 0 else echo "unsuccessful diff comparison on issp test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi diff --git a/test_problems/cathermo/stoichSubSSTP/Makefile.am b/test_problems/cathermo/stoichSubSSTP/Makefile.am new file mode 100644 index 000000000..72c13e30f --- /dev/null +++ b/test_problems/cathermo/stoichSubSSTP/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = stoichSubSSTP.cpp sortAlgorithms.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = stoichSubSSTP +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +stoichSubSSTP_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/stoichSubSSTP/Makefile.in b/test_problems/cathermo/stoichSubSSTP/Makefile.in index 71498b17f..053650dc5 100644 --- a/test_problems/cathermo/stoichSubSSTP/Makefile.in +++ b/test_problems/cathermo/stoichSubSSTP/Makefile.in @@ -1,114 +1,660 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = stoichSubSSTP +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = stoichSubSSTP.o sortAlgorithms.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = stoichSubSSTP$(EXEEXT) +subdir = test_problems/cathermo/stoichSubSSTP +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = stoichSubSSTP.$(OBJEXT) sortAlgorithms.$(OBJEXT) +am_stoichSubSSTP_OBJECTS = $(am__objects_1) +stoichSubSSTP_OBJECTS = $(am_stoichSubSSTP_OBJECTS) +stoichSubSSTP_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(stoichSubSSTP_SOURCES) +DIST_SOURCES = $(stoichSubSSTP_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = stoichSubSSTP.cpp sortAlgorithms.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ +#----------------------- +# Cantera DH graph test +#----------------------- +stoichSubSSTP_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/stoichSubSSTP/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/stoichSubSSTP/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +stoichSubSSTP$(EXEEXT): $(stoichSubSSTP_OBJECTS) $(stoichSubSSTP_DEPENDENCIES) + @rm -f stoichSubSSTP$(EXEEXT) + $(CXXLINK) $(stoichSubSSTP_OBJECTS) $(stoichSubSSTP_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sortAlgorithms.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stoichSubSSTP.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -all: $(PROGRAM) .depends +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends *.o - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/stoichSubSSTP/runtest b/test_problems/cathermo/stoichSubSSTP/runtest index 68358d859..f127200b3 100755 --- a/test_problems/cathermo/stoichSubSSTP/runtest +++ b/test_problems/cathermo/stoichSubSSTP/runtest @@ -34,9 +34,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on $prog test" + return 0 else echo "unsuccessful diff comparison on $prog test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi diff --git a/test_problems/cathermo/testIAPWS/Makefile.am b/test_problems/cathermo/testIAPWS/Makefile.am new file mode 100644 index 000000000..f054b2286 --- /dev/null +++ b/test_problems/cathermo/testIAPWS/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = testIAPWSphi.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = testIAPWSphi +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +testIAPWSphi_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/testIAPWS/Makefile.in b/test_problems/cathermo/testIAPWS/Makefile.in index f42a74968..6ceb5dab0 100755 --- a/test_problems/cathermo/testIAPWS/Makefile.in +++ b/test_problems/cathermo/testIAPWS/Makefile.in @@ -1,114 +1,659 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = testIAPWSphi +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = testIAPWSphi.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = testIAPWSphi$(EXEEXT) +subdir = test_problems/cathermo/testIAPWS +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = testIAPWSphi.$(OBJEXT) +am_testIAPWSphi_OBJECTS = $(am__objects_1) +testIAPWSphi_OBJECTS = $(am_testIAPWSphi_OBJECTS) +testIAPWSphi_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(testIAPWSphi_SOURCES) +DIST_SOURCES = $(testIAPWSphi_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = testIAPWSphi.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ +#----------------------- +# Cantera DH graph test +#----------------------- +testIAPWSphi_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/testIAPWS/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/testIAPWS/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +testIAPWSphi$(EXEEXT): $(testIAPWSphi_OBJECTS) $(testIAPWSphi_DEPENDENCIES) + @rm -f testIAPWSphi$(EXEEXT) + $(CXXLINK) $(testIAPWSphi_OBJECTS) $(testIAPWSphi_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testIAPWSphi.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -all: $(PROGRAM) .depends +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/testIAPWS/runtest b/test_problems/cathermo/testIAPWS/runtest index 60a2e297c..6d543ced3 100755 --- a/test_problems/cathermo/testIAPWS/runtest +++ b/test_problems/cathermo/testIAPWS/runtest @@ -25,9 +25,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on $testName test" + return 0 else echo "unsuccessful diff comparison on $testName test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi diff --git a/test_problems/cathermo/testIAPWSPres/Makefile.am b/test_problems/cathermo/testIAPWSPres/Makefile.am new file mode 100644 index 000000000..d7b1f6e73 --- /dev/null +++ b/test_problems/cathermo/testIAPWSPres/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = testPress.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = testPress +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +testPress_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/testIAPWSPres/Makefile.in b/test_problems/cathermo/testIAPWSPres/Makefile.in index 613bb908b..e0d4eb892 100755 --- a/test_problems/cathermo/testIAPWSPres/Makefile.in +++ b/test_problems/cathermo/testIAPWSPres/Makefile.in @@ -1,112 +1,659 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = testPress +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = testPress.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = testPress$(EXEEXT) +subdir = test_problems/cathermo/testIAPWSPres +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = testPress.$(OBJEXT) +am_testPress_OBJECTS = $(am__objects_1) +testPress_OBJECTS = $(am_testPress_OBJECTS) +testPress_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(testPress_SOURCES) +DIST_SOURCES = $(testPress_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = testPress.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ +#----------------------- +# Cantera DH graph test +#----------------------- +testPress_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/testIAPWSPres/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/testIAPWSPres/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +testPress$(EXEEXT): $(testPress_OBJECTS) $(testPress_DEPENDENCIES) + @rm -f testPress$(EXEEXT) + $(CXXLINK) $(testPress_OBJECTS) $(testPress_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testPress.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -all: $(PROGRAM) .depends +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a +clean-libtool: + -rm -rf .libs _libs -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -ifeq ($(wildcard .depends), .depends) -include .depends -endif +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/testIAPWSPres/runtest b/test_problems/cathermo/testIAPWSPres/runtest index a9b880b30..328ce8373 100755 --- a/test_problems/cathermo/testIAPWSPres/runtest +++ b/test_problems/cathermo/testIAPWSPres/runtest @@ -25,9 +25,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on $testName test" + return 0 else echo "unsuccessful diff comparison on $testName test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi diff --git a/test_problems/cathermo/testIAPWSTripP/Makefile.am b/test_problems/cathermo/testIAPWSTripP/Makefile.am new file mode 100644 index 000000000..ffe7f63a4 --- /dev/null +++ b/test_problems/cathermo/testIAPWSTripP/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = testTripleP.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = testTripleP +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +testTripleP_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/testIAPWSTripP/Makefile.in b/test_problems/cathermo/testIAPWSTripP/Makefile.in index 0864132e3..b1e083604 100755 --- a/test_problems/cathermo/testIAPWSTripP/Makefile.in +++ b/test_problems/cathermo/testIAPWSTripP/Makefile.in @@ -1,113 +1,659 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = testTripleP +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = testTripleP.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = testTripleP$(EXEEXT) +subdir = test_problems/cathermo/testIAPWSTripP +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = testTripleP.$(OBJEXT) +am_testTripleP_OBJECTS = $(am__objects_1) +testTripleP_OBJECTS = $(am_testTripleP_OBJECTS) +testTripleP_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(testTripleP_SOURCES) +DIST_SOURCES = $(testTripleP_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = testTripleP.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ +#----------------------- +# Cantera DH graph test +#----------------------- +testTripleP_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/testIAPWSTripP/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/testIAPWSTripP/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +testTripleP$(EXEEXT): $(testTripleP_OBJECTS) $(testTripleP_DEPENDENCIES) + @rm -f testTripleP$(EXEEXT) + $(CXXLINK) $(testTripleP_OBJECTS) $(testTripleP_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testTripleP.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -all: $(PROGRAM) .depends +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/testIAPWSTripP/runtest b/test_problems/cathermo/testIAPWSTripP/runtest index c93c2588d..be06f912d 100755 --- a/test_problems/cathermo/testIAPWSTripP/runtest +++ b/test_problems/cathermo/testIAPWSTripP/runtest @@ -25,9 +25,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on $testName test" + return 0 else echo "unsuccessful diff comparison on $testName test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi diff --git a/test_problems/cathermo/testWaterPDSS/Makefile.am b/test_problems/cathermo/testWaterPDSS/Makefile.am new file mode 100644 index 000000000..9171bbb67 --- /dev/null +++ b/test_problems/cathermo/testWaterPDSS/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = testWaterPDSS.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = testWaterPDSS +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +testWaterPDSS_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/testWaterPDSS/Makefile.in b/test_problems/cathermo/testWaterPDSS/Makefile.in index dd68816ac..5d45ecf82 100755 --- a/test_problems/cathermo/testWaterPDSS/Makefile.in +++ b/test_problems/cathermo/testWaterPDSS/Makefile.in @@ -1,112 +1,659 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = testWaterPDSS +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = testWaterPDSS.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = testWaterPDSS$(EXEEXT) +subdir = test_problems/cathermo/testWaterPDSS +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = testWaterPDSS.$(OBJEXT) +am_testWaterPDSS_OBJECTS = $(am__objects_1) +testWaterPDSS_OBJECTS = $(am_testWaterPDSS_OBJECTS) +testWaterPDSS_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(testWaterPDSS_SOURCES) +DIST_SOURCES = $(testWaterPDSS_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = testWaterPDSS.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ +#----------------------- +# Cantera DH graph test +#----------------------- +testWaterPDSS_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/testWaterPDSS/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/testWaterPDSS/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +testWaterPDSS$(EXEEXT): $(testWaterPDSS_OBJECTS) $(testWaterPDSS_DEPENDENCIES) + @rm -f testWaterPDSS$(EXEEXT) + $(CXXLINK) $(testWaterPDSS_OBJECTS) $(testWaterPDSS_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testWaterPDSS.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -all: $(PROGRAM) .depends +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a +clean-libtool: + -rm -rf .libs _libs -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -ifeq ($(wildcard .depends), .depends) -include .depends -endif +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/testWaterPDSS/runtest b/test_problems/cathermo/testWaterPDSS/runtest index e97266c9c..92855379a 100755 --- a/test_problems/cathermo/testWaterPDSS/runtest +++ b/test_problems/cathermo/testWaterPDSS/runtest @@ -25,9 +25,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on $testName test" + return 0 else echo "unsuccessful diff comparison on $testName test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi diff --git a/test_problems/cathermo/testWaterTP/Makefile.am b/test_problems/cathermo/testWaterTP/Makefile.am new file mode 100644 index 000000000..660f5fdd5 --- /dev/null +++ b/test_problems/cathermo/testWaterTP/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = testWaterSSTP.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = testWaterSSTP +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +testWaterSSTP_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/testWaterTP/Makefile.in b/test_problems/cathermo/testWaterTP/Makefile.in index 1dd7c0eb6..04a29718a 100644 --- a/test_problems/cathermo/testWaterTP/Makefile.in +++ b/test_problems/cathermo/testWaterTP/Makefile.in @@ -1,115 +1,659 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = testWaterSSTP +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = testWaterSSTP.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = testWaterSSTP$(EXEEXT) +subdir = test_problems/cathermo/testWaterTP +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = testWaterSSTP.$(OBJEXT) +am_testWaterSSTP_OBJECTS = $(am__objects_1) +testWaterSSTP_OBJECTS = $(am_testWaterSSTP_OBJECTS) +testWaterSSTP_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(testWaterSSTP_SOURCES) +DIST_SOURCES = $(testWaterSSTP_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = testWaterSSTP.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ +#----------------------- +# Cantera DH graph test +#----------------------- +testWaterSSTP_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/testWaterTP/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/testWaterTP/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +testWaterSSTP$(EXEEXT): $(testWaterSSTP_OBJECTS) $(testWaterSSTP_DEPENDENCIES) + @rm -f testWaterSSTP$(EXEEXT) + $(CXXLINK) $(testWaterSSTP_OBJECTS) $(testWaterSSTP_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testWaterSSTP.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -all: $(PROGRAM) .depends +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/testWaterTP/runtest b/test_problems/cathermo/testWaterTP/runtest index 80a62b12e..c6bfcf1cb 100755 --- a/test_problems/cathermo/testWaterTP/runtest +++ b/test_problems/cathermo/testWaterTP/runtest @@ -25,9 +25,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on $testName test" + return 0 else echo "unsuccessful diff comparison on $testName test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi diff --git a/test_problems/cathermo/wtWater/Makefile.am b/test_problems/cathermo/wtWater/Makefile.am new file mode 100644 index 000000000..2f080ba54 --- /dev/null +++ b/test_problems/cathermo/wtWater/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = wtWater.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = wtWater +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +wtWater_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/cathermo/wtWater/Makefile.in b/test_problems/cathermo/wtWater/Makefile.in index 3aaaec32d..51872f024 100755 --- a/test_problems/cathermo/wtWater/Makefile.in +++ b/test_problems/cathermo/wtWater/Makefile.in @@ -1,111 +1,659 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = wtWater +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = wtWater.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = wtWater$(EXEEXT) +subdir = test_problems/cathermo/wtWater +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = wtWater.$(OBJEXT) +am_wtWater_OBJECTS = $(am__objects_1) +wtWater_OBJECTS = $(am_wtWater_OBJECTS) +wtWater_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(wtWater_SOURCES) +DIST_SOURCES = $(wtWater_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = wtWater.cpp +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ +#----------------------- +# Cantera DH graph test +#----------------------- +wtWater_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/wtWater/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/cathermo/wtWater/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# Dependencies for CANTERA_LIBS -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +wtWater$(EXEEXT): $(wtWater_OBJECTS) $(wtWater_DEPENDENCIES) + @rm -f wtWater$(EXEEXT) + $(CXXLINK) $(wtWater_OBJECTS) $(wtWater_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wtWater.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -all: $(PROGRAM) .depends +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a +clean-libtool: + -rm -rf .libs _libs -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -ifeq ($(wildcard .depends), .depends) -include .depends -endif +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/cathermo/wtWater/runtest b/test_problems/cathermo/wtWater/runtest index 50d89dde9..76018c121 100755 --- a/test_problems/cathermo/wtWater/runtest +++ b/test_problems/cathermo/wtWater/runtest @@ -25,9 +25,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on $testName test" + return 0 else echo "unsuccessful diff comparison on $testName test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi From 67ad9b11d7cbfb259172d211d605f5dea98f1b64 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 2 Feb 2012 22:22:48 +0000 Subject: [PATCH 067/124] [cantera]: removing these makefile.ins --- .../cathermo/HMW_graph_GvI/Makefile.in | 660 ------------------ .../cathermo/HMW_graph_GvT/Makefile.in | 660 ------------------ .../cathermo/HMW_graph_HvT/Makefile.in | 660 ------------------ .../cathermo/HMW_graph_VvT/Makefile.in | 660 ------------------ test_problems/cathermo/HMW_test_1/Makefile.in | 659 ----------------- test_problems/cathermo/HMW_test_3/Makefile.in | 659 ----------------- test_problems/cathermo/VPissp/Makefile.in | 659 ----------------- test_problems/cathermo/ims/Makefile.in | 659 ----------------- test_problems/cathermo/issp/Makefile.in | 659 ----------------- .../cathermo/stoichSubSSTP/Makefile.in | 660 ------------------ test_problems/cathermo/testIAPWS/Makefile.in | 659 ----------------- .../cathermo/testIAPWSPres/Makefile.in | 659 ----------------- .../cathermo/testIAPWSTripP/Makefile.in | 659 ----------------- .../cathermo/testWaterPDSS/Makefile.in | 659 ----------------- .../cathermo/testWaterTP/Makefile.in | 659 ----------------- test_problems/cathermo/wtWater/Makefile.in | 659 ----------------- 16 files changed, 10549 deletions(-) delete mode 100644 test_problems/cathermo/HMW_graph_GvI/Makefile.in delete mode 100644 test_problems/cathermo/HMW_graph_GvT/Makefile.in delete mode 100644 test_problems/cathermo/HMW_graph_HvT/Makefile.in delete mode 100644 test_problems/cathermo/HMW_graph_VvT/Makefile.in delete mode 100644 test_problems/cathermo/HMW_test_1/Makefile.in delete mode 100644 test_problems/cathermo/HMW_test_3/Makefile.in delete mode 100644 test_problems/cathermo/VPissp/Makefile.in delete mode 100644 test_problems/cathermo/ims/Makefile.in delete mode 100644 test_problems/cathermo/issp/Makefile.in delete mode 100644 test_problems/cathermo/stoichSubSSTP/Makefile.in delete mode 100755 test_problems/cathermo/testIAPWS/Makefile.in delete mode 100755 test_problems/cathermo/testIAPWSPres/Makefile.in delete mode 100755 test_problems/cathermo/testIAPWSTripP/Makefile.in delete mode 100755 test_problems/cathermo/testWaterPDSS/Makefile.in delete mode 100644 test_problems/cathermo/testWaterTP/Makefile.in delete mode 100755 test_problems/cathermo/wtWater/Makefile.in diff --git a/test_problems/cathermo/HMW_graph_GvI/Makefile.in b/test_problems/cathermo/HMW_graph_GvI/Makefile.in deleted file mode 100644 index b8747afab..000000000 --- a/test_problems/cathermo/HMW_graph_GvI/Makefile.in +++ /dev/null @@ -1,660 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = HMW_graph_GvI$(EXEEXT) -subdir = test_problems/cathermo/HMW_graph_GvI -DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = HMW_graph_GvI.$(OBJEXT) sortAlgorithms.$(OBJEXT) -am_HMW_graph_GvI_OBJECTS = $(am__objects_1) -HMW_graph_GvI_OBJECTS = $(am_HMW_graph_GvI_OBJECTS) -HMW_graph_GvI_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(HMW_graph_GvI_SOURCES) -DIST_SOURCES = $(HMW_graph_GvI_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = HMW_graph_GvI.cpp sortAlgorithms.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -HMW_graph_GvI_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/HMW_graph_GvI/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/HMW_graph_GvI/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -HMW_graph_GvI$(EXEEXT): $(HMW_graph_GvI_OBJECTS) $(HMW_graph_GvI_DEPENDENCIES) - @rm -f HMW_graph_GvI$(EXEEXT) - $(CXXLINK) $(HMW_graph_GvI_OBJECTS) $(HMW_graph_GvI_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HMW_graph_GvI.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sortAlgorithms.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/HMW_graph_GvT/Makefile.in b/test_problems/cathermo/HMW_graph_GvT/Makefile.in deleted file mode 100644 index cf079c0b4..000000000 --- a/test_problems/cathermo/HMW_graph_GvT/Makefile.in +++ /dev/null @@ -1,660 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = HMW_graph_GvT$(EXEEXT) -subdir = test_problems/cathermo/HMW_graph_GvT -DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = HMW_graph_GvT.$(OBJEXT) sortAlgorithms.$(OBJEXT) -am_HMW_graph_GvT_OBJECTS = $(am__objects_1) -HMW_graph_GvT_OBJECTS = $(am_HMW_graph_GvT_OBJECTS) -HMW_graph_GvT_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(HMW_graph_GvT_SOURCES) -DIST_SOURCES = $(HMW_graph_GvT_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = HMW_graph_GvT.cpp sortAlgorithms.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -HMW_graph_GvT_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/HMW_graph_GvT/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/HMW_graph_GvT/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -HMW_graph_GvT$(EXEEXT): $(HMW_graph_GvT_OBJECTS) $(HMW_graph_GvT_DEPENDENCIES) - @rm -f HMW_graph_GvT$(EXEEXT) - $(CXXLINK) $(HMW_graph_GvT_OBJECTS) $(HMW_graph_GvT_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HMW_graph_GvT.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sortAlgorithms.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/HMW_graph_HvT/Makefile.in b/test_problems/cathermo/HMW_graph_HvT/Makefile.in deleted file mode 100644 index 3d500d6d6..000000000 --- a/test_problems/cathermo/HMW_graph_HvT/Makefile.in +++ /dev/null @@ -1,660 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = HMW_graph_HvT$(EXEEXT) -subdir = test_problems/cathermo/HMW_graph_HvT -DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = HMW_graph_HvT.$(OBJEXT) sortAlgorithms.$(OBJEXT) -am_HMW_graph_HvT_OBJECTS = $(am__objects_1) -HMW_graph_HvT_OBJECTS = $(am_HMW_graph_HvT_OBJECTS) -HMW_graph_HvT_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(HMW_graph_HvT_SOURCES) -DIST_SOURCES = $(HMW_graph_HvT_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = HMW_graph_HvT.cpp sortAlgorithms.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -HMW_graph_HvT_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/HMW_graph_HvT/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/HMW_graph_HvT/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -HMW_graph_HvT$(EXEEXT): $(HMW_graph_HvT_OBJECTS) $(HMW_graph_HvT_DEPENDENCIES) - @rm -f HMW_graph_HvT$(EXEEXT) - $(CXXLINK) $(HMW_graph_HvT_OBJECTS) $(HMW_graph_HvT_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HMW_graph_HvT.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sortAlgorithms.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/HMW_graph_VvT/Makefile.in b/test_problems/cathermo/HMW_graph_VvT/Makefile.in deleted file mode 100644 index cd0bc563a..000000000 --- a/test_problems/cathermo/HMW_graph_VvT/Makefile.in +++ /dev/null @@ -1,660 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = HMW_graph_VvT$(EXEEXT) -subdir = test_problems/cathermo/HMW_graph_VvT -DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = HMW_graph_VvT.$(OBJEXT) sortAlgorithms.$(OBJEXT) -am_HMW_graph_VvT_OBJECTS = $(am__objects_1) -HMW_graph_VvT_OBJECTS = $(am_HMW_graph_VvT_OBJECTS) -HMW_graph_VvT_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(HMW_graph_VvT_SOURCES) -DIST_SOURCES = $(HMW_graph_VvT_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = HMW_graph_VvT.cpp sortAlgorithms.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -HMW_graph_VvT_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/HMW_graph_VvT/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/HMW_graph_VvT/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -HMW_graph_VvT$(EXEEXT): $(HMW_graph_VvT_OBJECTS) $(HMW_graph_VvT_DEPENDENCIES) - @rm -f HMW_graph_VvT$(EXEEXT) - $(CXXLINK) $(HMW_graph_VvT_OBJECTS) $(HMW_graph_VvT_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HMW_graph_VvT.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sortAlgorithms.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/HMW_test_1/Makefile.in b/test_problems/cathermo/HMW_test_1/Makefile.in deleted file mode 100644 index d4a9a7c73..000000000 --- a/test_problems/cathermo/HMW_test_1/Makefile.in +++ /dev/null @@ -1,659 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = HMW_test_1$(EXEEXT) -subdir = test_problems/cathermo/HMW_test_1 -DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = HMW_test_1.$(OBJEXT) -am_HMW_test_1_OBJECTS = $(am__objects_1) -HMW_test_1_OBJECTS = $(am_HMW_test_1_OBJECTS) -HMW_test_1_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(HMW_test_1_SOURCES) -DIST_SOURCES = $(HMW_test_1_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = HMW_test_1.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -HMW_test_1_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/HMW_test_1/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/HMW_test_1/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -HMW_test_1$(EXEEXT): $(HMW_test_1_OBJECTS) $(HMW_test_1_DEPENDENCIES) - @rm -f HMW_test_1$(EXEEXT) - $(CXXLINK) $(HMW_test_1_OBJECTS) $(HMW_test_1_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HMW_test_1.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/HMW_test_3/Makefile.in b/test_problems/cathermo/HMW_test_3/Makefile.in deleted file mode 100644 index 776f610a3..000000000 --- a/test_problems/cathermo/HMW_test_3/Makefile.in +++ /dev/null @@ -1,659 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = HMW_test_3$(EXEEXT) -subdir = test_problems/cathermo/HMW_test_3 -DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = HMW_test_3.$(OBJEXT) -am_HMW_test_3_OBJECTS = $(am__objects_1) -HMW_test_3_OBJECTS = $(am_HMW_test_3_OBJECTS) -HMW_test_3_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(HMW_test_3_SOURCES) -DIST_SOURCES = $(HMW_test_3_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = HMW_test_3.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -HMW_test_3_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/HMW_test_3/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/HMW_test_3/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -HMW_test_3$(EXEEXT): $(HMW_test_3_OBJECTS) $(HMW_test_3_DEPENDENCIES) - @rm -f HMW_test_3$(EXEEXT) - $(CXXLINK) $(HMW_test_3_OBJECTS) $(HMW_test_3_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HMW_test_3.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/VPissp/Makefile.in b/test_problems/cathermo/VPissp/Makefile.in deleted file mode 100644 index fc4e9420b..000000000 --- a/test_problems/cathermo/VPissp/Makefile.in +++ /dev/null @@ -1,659 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = ISSPTester$(EXEEXT) -subdir = test_problems/cathermo/VPissp -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = ISSPTester.$(OBJEXT) -am_ISSPTester_OBJECTS = $(am__objects_1) -ISSPTester_OBJECTS = $(am_ISSPTester_OBJECTS) -ISSPTester_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(ISSPTester_SOURCES) -DIST_SOURCES = $(ISSPTester_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = ISSPTester.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -ISSPTester_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/VPissp/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/VPissp/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -ISSPTester$(EXEEXT): $(ISSPTester_OBJECTS) $(ISSPTester_DEPENDENCIES) - @rm -f ISSPTester$(EXEEXT) - $(CXXLINK) $(ISSPTester_OBJECTS) $(ISSPTester_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ISSPTester.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/ims/Makefile.in b/test_problems/cathermo/ims/Makefile.in deleted file mode 100644 index b2900a5f4..000000000 --- a/test_problems/cathermo/ims/Makefile.in +++ /dev/null @@ -1,659 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = IMSTester$(EXEEXT) -subdir = test_problems/cathermo/ims -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = IMSTester.$(OBJEXT) -am_IMSTester_OBJECTS = $(am__objects_1) -IMSTester_OBJECTS = $(am_IMSTester_OBJECTS) -IMSTester_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(IMSTester_SOURCES) -DIST_SOURCES = $(IMSTester_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = IMSTester.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -IMSTester_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/ims/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/ims/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -IMSTester$(EXEEXT): $(IMSTester_OBJECTS) $(IMSTester_DEPENDENCIES) - @rm -f IMSTester$(EXEEXT) - $(CXXLINK) $(IMSTester_OBJECTS) $(IMSTester_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMSTester.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/issp/Makefile.in b/test_problems/cathermo/issp/Makefile.in deleted file mode 100644 index 80b898da4..000000000 --- a/test_problems/cathermo/issp/Makefile.in +++ /dev/null @@ -1,659 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = ISSPTester$(EXEEXT) -subdir = test_problems/cathermo/issp -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = ISSPTester.$(OBJEXT) -am_ISSPTester_OBJECTS = $(am__objects_1) -ISSPTester_OBJECTS = $(am_ISSPTester_OBJECTS) -ISSPTester_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(ISSPTester_SOURCES) -DIST_SOURCES = $(ISSPTester_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = ISSPTester.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -ISSPTester_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/issp/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/issp/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -ISSPTester$(EXEEXT): $(ISSPTester_OBJECTS) $(ISSPTester_DEPENDENCIES) - @rm -f ISSPTester$(EXEEXT) - $(CXXLINK) $(ISSPTester_OBJECTS) $(ISSPTester_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ISSPTester.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/stoichSubSSTP/Makefile.in b/test_problems/cathermo/stoichSubSSTP/Makefile.in deleted file mode 100644 index 053650dc5..000000000 --- a/test_problems/cathermo/stoichSubSSTP/Makefile.in +++ /dev/null @@ -1,660 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = stoichSubSSTP$(EXEEXT) -subdir = test_problems/cathermo/stoichSubSSTP -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = stoichSubSSTP.$(OBJEXT) sortAlgorithms.$(OBJEXT) -am_stoichSubSSTP_OBJECTS = $(am__objects_1) -stoichSubSSTP_OBJECTS = $(am_stoichSubSSTP_OBJECTS) -stoichSubSSTP_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(stoichSubSSTP_SOURCES) -DIST_SOURCES = $(stoichSubSSTP_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = stoichSubSSTP.cpp sortAlgorithms.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -stoichSubSSTP_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/stoichSubSSTP/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/stoichSubSSTP/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -stoichSubSSTP$(EXEEXT): $(stoichSubSSTP_OBJECTS) $(stoichSubSSTP_DEPENDENCIES) - @rm -f stoichSubSSTP$(EXEEXT) - $(CXXLINK) $(stoichSubSSTP_OBJECTS) $(stoichSubSSTP_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sortAlgorithms.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stoichSubSSTP.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/testIAPWS/Makefile.in b/test_problems/cathermo/testIAPWS/Makefile.in deleted file mode 100755 index 6ceb5dab0..000000000 --- a/test_problems/cathermo/testIAPWS/Makefile.in +++ /dev/null @@ -1,659 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = testIAPWSphi$(EXEEXT) -subdir = test_problems/cathermo/testIAPWS -DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = testIAPWSphi.$(OBJEXT) -am_testIAPWSphi_OBJECTS = $(am__objects_1) -testIAPWSphi_OBJECTS = $(am_testIAPWSphi_OBJECTS) -testIAPWSphi_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(testIAPWSphi_SOURCES) -DIST_SOURCES = $(testIAPWSphi_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = testIAPWSphi.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -testIAPWSphi_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/testIAPWS/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/testIAPWS/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -testIAPWSphi$(EXEEXT): $(testIAPWSphi_OBJECTS) $(testIAPWSphi_DEPENDENCIES) - @rm -f testIAPWSphi$(EXEEXT) - $(CXXLINK) $(testIAPWSphi_OBJECTS) $(testIAPWSphi_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testIAPWSphi.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/testIAPWSPres/Makefile.in b/test_problems/cathermo/testIAPWSPres/Makefile.in deleted file mode 100755 index e0d4eb892..000000000 --- a/test_problems/cathermo/testIAPWSPres/Makefile.in +++ /dev/null @@ -1,659 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = testPress$(EXEEXT) -subdir = test_problems/cathermo/testIAPWSPres -DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = testPress.$(OBJEXT) -am_testPress_OBJECTS = $(am__objects_1) -testPress_OBJECTS = $(am_testPress_OBJECTS) -testPress_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(testPress_SOURCES) -DIST_SOURCES = $(testPress_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = testPress.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -testPress_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/testIAPWSPres/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/testIAPWSPres/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -testPress$(EXEEXT): $(testPress_OBJECTS) $(testPress_DEPENDENCIES) - @rm -f testPress$(EXEEXT) - $(CXXLINK) $(testPress_OBJECTS) $(testPress_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testPress.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/testIAPWSTripP/Makefile.in b/test_problems/cathermo/testIAPWSTripP/Makefile.in deleted file mode 100755 index b1e083604..000000000 --- a/test_problems/cathermo/testIAPWSTripP/Makefile.in +++ /dev/null @@ -1,659 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = testTripleP$(EXEEXT) -subdir = test_problems/cathermo/testIAPWSTripP -DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = testTripleP.$(OBJEXT) -am_testTripleP_OBJECTS = $(am__objects_1) -testTripleP_OBJECTS = $(am_testTripleP_OBJECTS) -testTripleP_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(testTripleP_SOURCES) -DIST_SOURCES = $(testTripleP_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = testTripleP.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -testTripleP_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/testIAPWSTripP/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/testIAPWSTripP/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -testTripleP$(EXEEXT): $(testTripleP_OBJECTS) $(testTripleP_DEPENDENCIES) - @rm -f testTripleP$(EXEEXT) - $(CXXLINK) $(testTripleP_OBJECTS) $(testTripleP_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testTripleP.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/testWaterPDSS/Makefile.in b/test_problems/cathermo/testWaterPDSS/Makefile.in deleted file mode 100755 index 5d45ecf82..000000000 --- a/test_problems/cathermo/testWaterPDSS/Makefile.in +++ /dev/null @@ -1,659 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = testWaterPDSS$(EXEEXT) -subdir = test_problems/cathermo/testWaterPDSS -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = testWaterPDSS.$(OBJEXT) -am_testWaterPDSS_OBJECTS = $(am__objects_1) -testWaterPDSS_OBJECTS = $(am_testWaterPDSS_OBJECTS) -testWaterPDSS_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(testWaterPDSS_SOURCES) -DIST_SOURCES = $(testWaterPDSS_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = testWaterPDSS.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -testWaterPDSS_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/testWaterPDSS/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/testWaterPDSS/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -testWaterPDSS$(EXEEXT): $(testWaterPDSS_OBJECTS) $(testWaterPDSS_DEPENDENCIES) - @rm -f testWaterPDSS$(EXEEXT) - $(CXXLINK) $(testWaterPDSS_OBJECTS) $(testWaterPDSS_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testWaterPDSS.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/testWaterTP/Makefile.in b/test_problems/cathermo/testWaterTP/Makefile.in deleted file mode 100644 index 04a29718a..000000000 --- a/test_problems/cathermo/testWaterTP/Makefile.in +++ /dev/null @@ -1,659 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = testWaterSSTP$(EXEEXT) -subdir = test_problems/cathermo/testWaterTP -DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = testWaterSSTP.$(OBJEXT) -am_testWaterSSTP_OBJECTS = $(am__objects_1) -testWaterSSTP_OBJECTS = $(am_testWaterSSTP_OBJECTS) -testWaterSSTP_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(testWaterSSTP_SOURCES) -DIST_SOURCES = $(testWaterSSTP_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = testWaterSSTP.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -testWaterSSTP_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/testWaterTP/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/testWaterTP/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -testWaterSSTP$(EXEEXT): $(testWaterSSTP_OBJECTS) $(testWaterSSTP_DEPENDENCIES) - @rm -f testWaterSSTP$(EXEEXT) - $(CXXLINK) $(testWaterSSTP_OBJECTS) $(testWaterSSTP_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testWaterSSTP.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/cathermo/wtWater/Makefile.in b/test_problems/cathermo/wtWater/Makefile.in deleted file mode 100755 index 51872f024..000000000 --- a/test_problems/cathermo/wtWater/Makefile.in +++ /dev/null @@ -1,659 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = wtWater$(EXEEXT) -subdir = test_problems/cathermo/wtWater -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = wtWater.$(OBJEXT) -am_wtWater_OBJECTS = $(am__objects_1) -wtWater_OBJECTS = $(am_wtWater_OBJECTS) -wtWater_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(wtWater_SOURCES) -DIST_SOURCES = $(wtWater_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = wtWater.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -wtWater_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/cathermo/wtWater/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/cathermo/wtWater/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -wtWater$(EXEEXT): $(wtWater_OBJECTS) $(wtWater_DEPENDENCIES) - @rm -f wtWater$(EXEEXT) - $(CXXLINK) $(wtWater_OBJECTS) $(wtWater_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wtWater.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: From 5298d6989ce298038516a8c9639beda4f61adcc5 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 3 Feb 2012 00:09:46 +0000 Subject: [PATCH 068/124] [cantera]: fixing a bug where two .cpp files attempted compile/linkage. --- Cantera/src/numerics/Makefile.am | 7 +- Cantera/src/thermo/Makefile.am | 9 +- configure.ac | 9 +- ext/Makefile.am | 2 +- ext/f2c_lapack/CMakeLists.txt | 14 -- ext/f2c_lapack/Makefile.am | 27 ++++ ext/f2c_lapack/Makefile.in | 143 ------------------ .../ChemEquil_gri_matrix/Makefile.am | 23 +++ .../ChemEquil_gri_matrix/Makefile.in | 139 ----------------- test_problems/Makefile.am | 2 +- 10 files changed, 66 insertions(+), 309 deletions(-) delete mode 100644 ext/f2c_lapack/CMakeLists.txt create mode 100644 ext/f2c_lapack/Makefile.am delete mode 100755 ext/f2c_lapack/Makefile.in create mode 100644 test_problems/ChemEquil_gri_matrix/Makefile.am delete mode 100644 test_problems/ChemEquil_gri_matrix/Makefile.in diff --git a/Cantera/src/numerics/Makefile.am b/Cantera/src/numerics/Makefile.am index 4b182c08a..2781ac22a 100644 --- a/Cantera/src/numerics/Makefile.am +++ b/Cantera/src/numerics/Makefile.am @@ -1,6 +1,5 @@ -h_sources = ArrayViewer.h DenseMatrix.h \ - funcs.h ctlapack.h Func1.h FuncEval.h \ - polyfit.h\ +h_sources = ArrayViewer.h DenseMatrix.h funcs.h ctlapack.h Func1.h \ + FuncEval.h polyfit.h \ BandMatrix.h Integrator.h DAE_Solver.h ResidEval.h sort.h \ SquareMatrix.h ResidJacEval.h NonlinearSolver.h CVodeInt.h @@ -9,7 +8,7 @@ cc_sources = DenseMatrix.cpp funcs.cpp Func1.cpp ODE_integrators.cpp \ SquareMatrix.cpp ResidJacEval.cpp NonlinearSolver.cpp \ CVodeInt.cpp -AM_CPPFLAGS = -I../base -I../../../ +AM_CPPFLAGS = -I../../../ -I$(top_builddir)/build/include/cantera AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctnumerics.la diff --git a/Cantera/src/thermo/Makefile.am b/Cantera/src/thermo/Makefile.am index 0e544a84d..5f37d2c58 100644 --- a/Cantera/src/thermo/Makefile.am +++ b/Cantera/src/thermo/Makefile.am @@ -17,10 +17,9 @@ h_sources = State.h Elements.h Constituents.h Phase.h mix_defs.h \ PDSS_IonsFromNeutral.h IonsFromNeutralVPSSTP.h \ GibbsExcessVPSSTP.h LatticePhase.h IdealMolalSoln.h \ PDSS.h HMWSoln.h WaterSSTP.h MetalSHEelectrons.h \ - VPSSMgr_Water_ConstVol.h VPSSMgr_Water_HKFT.h \ IdealSolidSolnPhase.h StoichSubstanceSSTP.h \ SingleSpeciesTP.h MineralEQ3.h PseudoBinaryVPSSTP.h \ - MargulesVPSSTP.cpp StoichSubstance.h + MargulesVPSSTP.h StoichSubstance.h cc_sources = State.cpp Elements.cpp Constituents.cpp Phase.cpp \ ThermoPhase.cpp IdealGasPhase.cpp ConstDensityThermo.cpp \ @@ -37,9 +36,9 @@ cc_sources = State.cpp Elements.cpp Constituents.cpp Phase.cpp \ PDSS_IonsFromNeutral.cpp IonsFromNeutralVPSSTP.cpp \ GibbsExcessVPSSTP.cpp LatticePhase.cpp IdealMolalSoln.cpp \ HMWSoln.cpp HMWSoln_input.cpp WaterSSTP.cpp \ - MetalSHEelectrons.cpp VPSSMgr_Water_ConstVol.cpp \ - VPSSMgr_Water_HKFT.cpp IdealSolidSolnPhase.cpp \ - StoichSubstanceSSTP.cpp SingleSpeciesTP.cpp MineralEQ3.cpp \ + MetalSHEelectrons.cpp \ + IdealSolidSolnPhase.cpp \ + SingleSpeciesTP.cpp MineralEQ3.cpp \ PseudoBinaryVPSSTP.cpp MargulesVPSSTP.cpp \ StoichSubstanceSSTP.cpp diff --git a/configure.ac b/configure.ac index 4d87b5ad5..4b6c6f62a 100644 --- a/configure.ac +++ b/configure.ac @@ -61,6 +61,7 @@ DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) AC_OUTPUT(Makefile \ test_problems/Makefile \ + test_problems/ChemEquil_gri_matrix/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ @@ -91,8 +92,8 @@ AC_OUTPUT(Makefile \ ext/math/Makefile \ ext/blas/Makefile \ ext/cvode/Makefile \ - ext/lapack/Makefile \ - ext/f2c_libs/Makefile \ + ext/f2c_lapack/Makefile \ + ext/f2c_libs/Makefile \ Cantera/Makefile \ Cantera/user/Makefile \ Cantera/src/Makefile \ @@ -109,3 +110,7 @@ AC_OUTPUT(Makefile \ # FINAL SUMMARY AX_SUMMARIZE_CONFIG + +# ext/lapack/Makefile \ + + diff --git a/ext/Makefile.am b/ext/Makefile.am index 2027c66ca..dc70ad5a3 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -1,2 +1,2 @@ -SUBDIRS = tpx math cvode lapack blas f2c_libs +SUBDIRS = f2c_lapack tpx math cvode blas f2c_libs diff --git a/ext/f2c_lapack/CMakeLists.txt b/ext/f2c_lapack/CMakeLists.txt deleted file mode 100644 index 6b65c3df4..000000000 --- a/ext/f2c_lapack/CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ - -SET (F2C_LAPACK_SRCS dgbtrf.c dgbtrs.c dgbtf2.c dgbsv.c - dgebd2.c dgebrd.c dgelq2.c dgelqf.c dgelss.c dgeqr2.c dgeqrf.c dgetf2.c - dgetrf.c dgetri.c dgetrs.c dlabad.c dlabrd.c dlacpy.c dlamch.c dlange.c - dlapy2.c dlarf.c dlarfb.c dlarfg.c dlarft.c dlartg.c dlas2.c dlascl.c dlaset.c - dlasq1.c dlasq2.c dlasq3.c dlasq4.c dlasq5.c dlasq6.c dlasr.c dlasrt.c - dlassq.c dlasv2.c dlaswp.c dorg2r.c dorgbr.c dorgl2.c dorglq.c dorgqr.c - dorm2r.c dormbr.c dorml2.c dormlq.c dormqr.c drscl.c dtrtri.c - dtrti2.c ieeeck.c ilaenv.c ) - -ADD_LIBRARY(ctlapack ${F2C_LAPACK_SRCS}) - - - diff --git a/ext/f2c_lapack/Makefile.am b/ext/f2c_lapack/Makefile.am new file mode 100644 index 000000000..aea174a0f --- /dev/null +++ b/ext/f2c_lapack/Makefile.am @@ -0,0 +1,27 @@ +cc_sources = dbdsqr.c dgbtrf.c dgbtf2.c dgbtrs.c dgbsv.c dgebd2.c dgebrd.c \ + dgelq2.c dgelqf.c dgelss.c dgeqr2.c dgeqrf.c dgetf2.c dgetrf.c \ + dgetri.c dgetrs.c dlabad.c dlabrd.c dlacpy.c dlamch.c dlange.c \ + dlapy2.c dlarf.c dlarfb.c dlarfg.c dlarft.c dlartg.c dlas2.c \ + dlascl.c dlaset.c dlasq1.c dlasq2.c dlasq3.c dlasq4.c dlasq5.c \ + dlasq6.c dlasr.c dlasrt.c dlassq.c dlasv2.c dlaswp.c dorg2r.c \ + dorgbr.c dorgl2.c dorglq.c dorgqr.c dorm2r.c dormbr.c dorml2.c \ + dormlq.c dormqr.c drscl.c dtrtri.c dtrti2.c ieeeck.c ilaenv.c + +h_sources = blaswrap.h + +AM_CPPFLAGS = -I../f2c_libs +AM_CXXFLAGS = $(AM_CPPFLAGS) +AM_FCFLAGS = $(AM_CPPFLAGS) + +lib_LTLIBRARIES = $(top_builddir)/build/lib/libctlapack.la +library_includedir = $(top_builddir)/build/include +library_include_HEADERS = $(h_sources) + +#----------------------- +# Cantera Converters C/C++ library +#----------------------- + +__top_builddir__build_lib_libctlapack_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libctlapack_la_SOURCES = $(cc_sources) $(h_sources) + +CLEANFILES = *.o diff --git a/ext/f2c_lapack/Makefile.in b/ext/f2c_lapack/Makefile.in deleted file mode 100755 index 732ad0f0d..000000000 --- a/ext/f2c_lapack/Makefile.in +++ /dev/null @@ -1,143 +0,0 @@ -#/bin/sh -# -# $Source: /cvsroot/cantera/cantera/ext/f2c_lapack/Makefile.in,v $ -# $Author: hkmoffa $ -# $Revision: 1.9 $ -# $Date: 2009/01/12 19:34:14 $ -# - -.SUFFIXES : -.SUFFIXES : .c .o .d - -do_ranlib = @DO_RANLIB@ - -PURIFY=@PURIFY@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# the C++ compiler -CXX = @CXX@ - -# the C compiler -CC = @CC@ - -# C++ compile flags -PIC_FLAG=@PIC@ -CXX_FLAGS = @CXXFLAGS@ $(PIC_FLAG) - -# C compile flags -CFLAGS = @CFLAGS@ $(PIC_FLAG) - -# Local include files -CXX_INCLUDES=-I../f2c_libs - -# How to compile the dependency file -.c.d: - @CXX_DEPENDS@ $(CFLAGS) $(CXX_INCLUDES) $*.c > $*.d - -.c.o: - $(PURIFY) @CC@ -c $< $(CFLAGS) $(CXX_INCLUDES) - -# ----------------------------------------------- - -LAPACKLIB = @buildlib@/libctlapack.a - -all: $(LAPACKLIB) - -OBJS = \ -dbdsqr.o \ -dgbtrf.o \ -dgbtf2.o \ -dgbtrs.o \ -dgbsv.o \ -dgebd2.o \ -dgebrd.o \ -dgelq2.o \ -dgelqf.o \ -dgelss.o \ -dgeqr2.o \ -dgeqrf.o \ -dgetf2.o \ -dgetrf.o \ -dgetri.o \ -dgetrs.o \ -dlabad.o \ -dlabrd.o \ -dlacpy.o \ -dlamch.o \ -dlange.o \ -dlapy2.o \ -dlarf.o \ -dlarfb.o \ -dlarfg.o \ -dlarft.o \ -dlartg.o \ -dlas2.o \ -dlascl.o \ -dlaset.o \ -dlasq1.o \ -dlasq2.o \ -dlasq3.o \ -dlasq4.o \ -dlasq5.o \ -dlasq6.o \ -dlasr.o \ -dlasrt.o \ -dlassq.o \ -dlasv2.o \ -dlaswp.o \ -dorg2r.o \ -dorgbr.o \ -dorgl2.o \ -dorglq.o \ -dorgqr.o \ -dorm2r.o \ -dormbr.o \ -dorml2.o \ -dormlq.o \ -dormqr.o \ -drscl.o \ -dtrtri.o \ -dtrti2.o \ -ieeeck.o \ -ilaenv.o - - -# list of source files -SRCS = $(OBJS:.o=.c) - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - - -$(LAPACKLIB): $(OBJS) - @ARCHIVE@ $(LAPACKLIB) $(OBJS) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(LAPACKLIB) -endif -# ------------------------------------------------ -# Utility Targets - -clean: - $(RM) $(OBJS) $(LAPACKLIB) *.d .depends - - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(OBJS): Makefile - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - - - - diff --git a/test_problems/ChemEquil_gri_matrix/Makefile.am b/test_problems/ChemEquil_gri_matrix/Makefile.am new file mode 100644 index 000000000..b1125ee3b --- /dev/null +++ b/test_problems/ChemEquil_gri_matrix/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = gri_matrix.cpp + +INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = gri_matrix +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +gri_matrix_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/ChemEquil_gri_matrix/Makefile.in b/test_problems/ChemEquil_gri_matrix/Makefile.in deleted file mode 100644 index 2054185f3..000000000 --- a/test_problems/ChemEquil_gri_matrix/Makefile.in +++ /dev/null @@ -1,139 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = gri_matrix - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = gri_matrix.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -# This variable determines whether we are making this example in the -# build tree environment or in the install tree environment. -in_CanteraBuildTree = 1 - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# the directory where Cantera include files may be found. -ifeq ($(in_CanteraBuildTree),1) -CANTERA_INCROOTDIR=@ctroot@/build/include -else -CANTERA_INCROOTDIR=@ct_incroot@ -endif -CANTERA_INCLUDES=-I$(CANTERA_INCROOTDIR) -I$(CANTERA_INCROOTDIR)/cantera - -# LOCAL_DEFS = -DDEBUG_CHEMEQUIL -# LOCAL_DEFS = -DEBUG_BASISOPTIMIZE -# -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(CANTERA_INCLUDES) $(LOCAL_DEFS) @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -ifeq ($(in_CanteraBuildTree),1) -CANTERA_LIBDIR=@buildlib@ -else -CANTERA_LIBDIR=@ct_libdir@ -endif - -# required Cantera libraries -# -> don't need this: -L$(CANTERA_LIBDIR) as -# @LOCAL_LIB_DIRS@ has this directory -# -CANTERA_LIBS = -L$(CANTERA_LIBDIR) @LOCAL_LIBS@ -lctcxx - -ifeq ($(in_CanteraBuildTree),1) -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a -else -CANTERA_LIBS_DEP = @INSTALL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a -endif - -# -# Alternate form of dependencies: (uses a gnu make extensions) -ALT_LIBS_DEP := $(addprefix $(CANTER_LIBDIR), @RAW_LIBS_DEP@ libctcxx.a) - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = @CXXFLAGS@ @LOCAL_LIB_DIRS@ - -# How to compile C++ source files to object files -# -> don't need this: @CXX_INCLUDES@ -.cpp.o: - $(CXX) -c $< $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 448b922a3..02df28646 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -5,7 +5,7 @@ ChemEquil_ionizedGas ChemEquil_red1 CpJump \ mixGasTransport multiGasTransport printUtilUnitTest -SUBDIRS = cathermo +SUBDIRS = cathermo ChemEquil_gri_matrix # # would be good to add: # From 7075be19cdaa263e9e183c0a90677b043bb6ef4e Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 3 Feb 2012 20:38:05 +0000 Subject: [PATCH 069/124] [cantera]: cleaning up a small error thats been propagated through the code --- Cantera/src/numerics/Makefile.am | 2 +- Cantera/src/numerics/ctlapack.h | 4 + Cantera/src/numerics/funcs.cpp | 1 + Cantera/src/numerics/sort.cpp | 1 + configure.ac | 4 +- ext/Makefile.am | 2 +- ext/f2c_blas/CMakeLists.txt | 11 -- ext/f2c_blas/Makefile.am | 60 +++++++++ ext/f2c_blas/Makefile.in | 126 ------------------ ext/f2c_math/CMakeLists.txt | 9 -- ext/f2c_math/Makefile.am | 41 ++++++ ext/f2c_math/Makefile.in | 112 ---------------- test_problems/cathermo/DH_graph_1/Makefile.am | 2 +- 13 files changed, 112 insertions(+), 263 deletions(-) delete mode 100644 ext/f2c_blas/CMakeLists.txt create mode 100644 ext/f2c_blas/Makefile.am delete mode 100755 ext/f2c_blas/Makefile.in delete mode 100644 ext/f2c_math/CMakeLists.txt create mode 100644 ext/f2c_math/Makefile.am delete mode 100644 ext/f2c_math/Makefile.in diff --git a/Cantera/src/numerics/Makefile.am b/Cantera/src/numerics/Makefile.am index 2781ac22a..3ff16d619 100644 --- a/Cantera/src/numerics/Makefile.am +++ b/Cantera/src/numerics/Makefile.am @@ -8,7 +8,7 @@ cc_sources = DenseMatrix.cpp funcs.cpp Func1.cpp ODE_integrators.cpp \ SquareMatrix.cpp ResidJacEval.cpp NonlinearSolver.cpp \ CVodeInt.cpp -AM_CPPFLAGS = -I../../../ -I$(top_builddir)/build/include/cantera +AM_CPPFLAGS = -I../../../ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctnumerics.la diff --git a/Cantera/src/numerics/ctlapack.h b/Cantera/src/numerics/ctlapack.h index 0b5a6da3a..f18ce9a0a 100755 --- a/Cantera/src/numerics/ctlapack.h +++ b/Cantera/src/numerics/ctlapack.h @@ -19,6 +19,10 @@ #include "ct_defs.h" +typedef double doublereal; +typedef int integer; +typedef int ftnlen; + //#include // map BLAS names to names with or without a trailing underscore. diff --git a/Cantera/src/numerics/funcs.cpp b/Cantera/src/numerics/funcs.cpp index 3a2434451..9d60ca374 100755 --- a/Cantera/src/numerics/funcs.cpp +++ b/Cantera/src/numerics/funcs.cpp @@ -22,6 +22,7 @@ using namespace std; +#include "ctlapack.h" #include "ct_defs.h" #include "ctexceptions.h" #include "stringUtils.h" diff --git a/Cantera/src/numerics/sort.cpp b/Cantera/src/numerics/sort.cpp index ed6fc21c4..fa6426273 100755 --- a/Cantera/src/numerics/sort.cpp +++ b/Cantera/src/numerics/sort.cpp @@ -9,6 +9,7 @@ #endif #include "sort.h" +#include "ctlapack.h" namespace Cantera { diff --git a/configure.ac b/configure.ac index 4b6c6f62a..2124d3457 100644 --- a/configure.ac +++ b/configure.ac @@ -89,11 +89,11 @@ AC_OUTPUT(Makefile \ doxygen/Makefile \ ext/Makefile \ ext/tpx/Makefile \ - ext/math/Makefile \ - ext/blas/Makefile \ ext/cvode/Makefile \ + ext/f2c_blas/Makefile \ ext/f2c_lapack/Makefile \ ext/f2c_libs/Makefile \ + ext/f2c_math/Makefile \ Cantera/Makefile \ Cantera/user/Makefile \ Cantera/src/Makefile \ diff --git a/ext/Makefile.am b/ext/Makefile.am index dc70ad5a3..d0aeba4f5 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -1,2 +1,2 @@ -SUBDIRS = f2c_lapack tpx math cvode blas f2c_libs +SUBDIRS = f2c_libs f2c_blas f2c_lapack f2c_math cvode tpx diff --git a/ext/f2c_blas/CMakeLists.txt b/ext/f2c_blas/CMakeLists.txt deleted file mode 100644 index e8b1644c7..000000000 --- a/ext/f2c_blas/CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ -SET (F2C_BLAS_SRCS dasum.c daxpy.c dcabs1.c dcopy.c ddot.c -dgbmv.c dgemm.c dgemv.c dger.c dnrm2.c drot.c drotg.c -drotm.c drotmg.c dsbmv.c dscal.c dsdot.c dspmv.c dspr.c dspr2.c -dswap.c dsymm.c dsymv.c dsyr.c dsyr2.c dsyr2k.c dsyrk.c dtbmv.c -dtbsv.c dtpmv.c dtpsv.c dtrmm.c dtrmv.c dtrsm.c dtrsv.c -dzasum.c dznrm2.c idamax.c lsame.c xerbla.c ) - -INCLUDE_DIRECTORIES ( ${PROJECT_SOURCE_DIR}/ext/f2c_libs ) -ADD_LIBRARY(ctblas ${F2C_BLAS_SRCS}) - - diff --git a/ext/f2c_blas/Makefile.am b/ext/f2c_blas/Makefile.am new file mode 100644 index 000000000..27b3913a1 --- /dev/null +++ b/ext/f2c_blas/Makefile.am @@ -0,0 +1,60 @@ +cc_sources = \ +dasum.c \ +daxpy.c \ +dcabs1.c \ +dcopy.c \ +ddot.c \ +dgbmv.c \ +dgemm.c \ +dgemv.c \ +dger.c \ +dnrm2.c \ +drot.c \ +drotg.c \ +drotm.c \ +drotmg.c \ +dsbmv.c \ +dscal.c \ +dsdot.c \ +dspmv.c \ +dspr.c \ +dspr2.c \ +dswap.c \ +dsymm.c \ +dsymv.c \ +dsyr.c \ +dsyr2.c \ +dsyr2k.c \ +dsyrk.c \ +dtbmv.c \ +dtbsv.c \ +dtpmv.c \ +dtpsv.c \ +dtrmm.c \ +dtrmv.c \ +dtrsm.c \ +dtrsv.c \ +dzasum.c \ +dznrm2.c \ +idamax.c \ +lsame.c \ +xerbla.c + +h_sources = blaswrap.h + +AM_CPPFLAGS = -I../f2c_libs +AM_CXXFLAGS = $(AM_CPPFLAGS) +AM_FCFLAGS = $(AM_CPPFLAGS) + +lib_LTLIBRARIES = $(top_builddir)/build/lib/libctblas.la +library_includedir = $(top_builddir)/build/include +library_include_HEADERS = $(h_sources) + +#----------------------- +# Cantera Converters C/C++ library +#----------------------- + +__top_builddir__build_lib_libctblas_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libctblas_la_SOURCES = $(cc_sources) $(h_sources) + +CLEANFILES = *.o diff --git a/ext/f2c_blas/Makefile.in b/ext/f2c_blas/Makefile.in deleted file mode 100755 index e10e9f192..000000000 --- a/ext/f2c_blas/Makefile.in +++ /dev/null @@ -1,126 +0,0 @@ -#/bin/sh -#/bin/sh -# -# $Revision: 1.10 $ -# $Date: 2009/01/12 19:34:14 $ -# - -.SUFFIXES : -.SUFFIXES : .c .d .o - -do_ranlib = @DO_RANLIB@ - -PURIFY=@PURIFY@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# the C++ compiler -CXX = @CXX@ - -# the C compiler -CC = @CC@ - -# C++ compile flags -PIC_FLAG=@PIC@ -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -# C compile flags -CFLAGS = @CFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -# Local include files -CXX_INCLUDES=-I../f2c_libs - -# How to compile the dependency file -.c.d: - @CXX_DEPENDS@ $(CFLAGS) $(CXX_INCLUDES) $*.c > $*.d - -# How to compile a C file -.c.o: - $(PURIFY) @CC@ -c $< @DEFS@ $(CFLAGS) $(CXX_INCLUDES) - - -# ----------------------------------------------- - -BLASLIB = @buildlib@/libctblas.a - -all: $(BLASLIB) - -OBJS = \ -dasum.o \ -daxpy.o \ -dcabs1.o \ -dcopy.o \ -ddot.o \ -dgbmv.o \ -dgemm.o \ -dgemv.o \ -dger.o \ -dnrm2.o \ -drot.o \ -drotg.o \ -drotm.o \ -drotmg.o \ -dsbmv.o \ -dscal.o \ -dsdot.o \ -dspmv.o \ -dspr.o \ -dspr2.o \ -dswap.o \ -dsymm.o \ -dsymv.o \ -dsyr.o \ -dsyr2.o \ -dsyr2k.o \ -dsyrk.o \ -dtbmv.o \ -dtbsv.o \ -dtpmv.o \ -dtpsv.o \ -dtrmm.o \ -dtrmv.o \ -dtrsm.o \ -dtrsv.o \ -dzasum.o \ -dznrm2.o \ -idamax.o \ -lsame.o \ -xerbla.o - -SRCS = $(OBJS:.o=.cpp) - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# rule to make library -$(BLASLIB): $(OBJS) - @ARCHIVE@ $(BLASLIB) $(OBJS) > /dev/null -ifeq ($(do_ranlib),1) - @RANLIB@ $(BLASLIB) -endif - - -# ------------------------------------------------ -# Utility Targets - -clean: - $(RM) $(OBJS) $(BLASLIB) *.d .depends - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(OBJS): Makefile - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/ext/f2c_math/CMakeLists.txt b/ext/f2c_math/CMakeLists.txt deleted file mode 100644 index 98fd72cb1..000000000 --- a/ext/f2c_math/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -SET ( CTMATH_SRCS mach.cpp ddaspk.c dgbefa.c dgbsl.c dgefa.c dgesl.c - dp1vlu.c dpcoef.c dpolft.c fdump.c j4save.c pcoef.c polfit.c pvalue.c - xercnt.c xerhlt.c xermsg.c xerprn.c xersve.c xgetua.c printstring.c) - -INCLUDE_DIRECTORIES ( ${PROJECT_SOURCE_DIR} - ${PROJECT_SOURCE_DIR}/ext/f2c_libs ) - -ADD_LIBRARY( ctmath ${CTMATH_SRCS} ) - diff --git a/ext/f2c_math/Makefile.am b/ext/f2c_math/Makefile.am new file mode 100644 index 000000000..9cc6cc6b3 --- /dev/null +++ b/ext/f2c_math/Makefile.am @@ -0,0 +1,41 @@ +cc_sources = \ +mach.cpp \ +ddaspk.c \ +dgbefa.c \ +dgbsl.c \ +dgefa.c \ +dgesl.c \ +dp1vlu.c \ +dpcoef.c \ +dpolft.c \ +fdump.c \ +j4save.c \ +pcoef.c \ +polfit.c \ +pvalue.c \ +xercnt.c \ +xerhlt.c \ +xermsg.c \ +xerprn.c \ +xersve.c \ +xgetua.c \ +printstring.c + +h_sources = cblas.h gmres.h mkl_cblas.h + +AM_CPPFLAGS = -I../f2c_libs +AM_CXXFLAGS = $(AM_CPPFLAGS) +AM_FCFLAGS = $(AM_CPPFLAGS) + +lib_LTLIBRARIES = $(top_builddir)/build/lib/libctmath.la +library_includedir = $(top_builddir)/build/include +library_include_HEADERS = $(h_sources) + +#----------------------- +# Cantera Converters C/C++ library +#----------------------- + +__top_builddir__build_lib_libctmath_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libctmath_la_SOURCES = $(cc_sources) $(h_sources) + +CLEANFILES = *.o diff --git a/ext/f2c_math/Makefile.in b/ext/f2c_math/Makefile.in deleted file mode 100644 index 35ead9668..000000000 --- a/ext/f2c_math/Makefile.in +++ /dev/null @@ -1,112 +0,0 @@ -#/bin/sh -# -# $Source: /cvsroot/cantera/cantera/ext/f2c_math/Makefile.in,v $ -# $Author: hkmoffa $ -# $Revision: 1.10 $ -# $Date: 2008/12/30 21:49:42 $ -# - -.SUFFIXES : -.SUFFIXES : .c .cpp .d .o - -do_ranlib = @DO_RANLIB@ - -PURIFY=@PURIFY@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# the C++ compiler -CXX = @CXX@ - -# the C compiler -CC = @CC@ - -# C++ compile flags -PIC_FLAG=@PIC@ -CXX_FLAGS = @CXXFLAGS@ $(CXX_OPT) $(PIC_FLAG) -CFLAGS = @CFLAGS@ $(CXX_OPT) $(PIC_FLAG) - -# Local include files -CXX_INCLUDES=-I../f2c_libs - -# How to compile the dependency file -.c.d: - @CXX_DEPENDS@ $(CFLAGS) $(CXX_INCLUDES) $*.c > $*.d - -.cpp.d: - @CXX_DEPENDS@ $(CXX_FLAGS) $(CXX_INCLUDES) $*.cpp > $*.d - -# How to compile a C file -.c.o: - $(PURIFY) @CC@ -c $< @DEFS@ $(CFLAGS) $(CXX_INCLUDES) - -# How to compile a Cpp file -.cpp.o: - $(PURIFY) @CXX@ -c $< @DEFS@ $(CXX_FLAGS) $(CXX_INCLUDES) - - -# ----------------------------------------------- - -LIB = @buildlib@/libctmath.a - -all: $(LIB) - -OBJS = \ -mach.o \ -ddaspk.o \ -dgbefa.o \ -dgbsl.o \ -dgefa.o \ -dgesl.o \ -dp1vlu.o \ -dpcoef.o \ -dpolft.o \ -fdump.o \ -j4save.o \ -pcoef.o \ -polfit.o \ -pvalue.o \ -xercnt.o \ -xerhlt.o \ -xermsg.o \ -xerprn.o \ -xersve.o \ -xgetua.o \ -printstring.o - -SRCS = $(OBJS:.o=.cpp) - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# How to make the static library -$(LIB): $(OBJS) - @ARCHIVE@ $(LIB) $(OBJS) -ifeq ($(do_ranlib),1) - @RANLIB@ $(LIB) -endif - -# ------------------------------------------------ -# Utility Targets - -clean: - $(RM) $(OBJS) $(LIB) *.d .depends - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(OBJS): Makefile - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/cathermo/DH_graph_1/Makefile.am b/test_problems/cathermo/DH_graph_1/Makefile.am index 0d6b01886..c0c7269d1 100644 --- a/test_problems/cathermo/DH_graph_1/Makefile.am +++ b/test_problems/cathermo/DH_graph_1/Makefile.am @@ -7,7 +7,7 @@ AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = DH_graph_1 From b53f21cec7a9e7ed37bc956934e6cc2ff3c5b2e9 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 3 Feb 2012 20:48:05 +0000 Subject: [PATCH 070/124] [cantera]: fixing up a makefile --- ext/f2c_libs/Makefile.am | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/ext/f2c_libs/Makefile.am b/ext/f2c_libs/Makefile.am index 7ddd26e27..e151bb3d0 100644 --- a/ext/f2c_libs/Makefile.am +++ b/ext/f2c_libs/Makefile.am @@ -2,15 +2,15 @@ cc_sources = abort_.c c_log.c d_atn2.c dfe.c d_prod.c \ due.c exit_.c getenv_.c hl_le.c i_dim.c \ inquire.c lread.c pow_ii.c r_acos.c \ r_dim.c r_nint.c r_tan.c signbit.c \ - uninit.c z_abs.c arithchk.c close.c \ + uninit.c z_abs.c close.c \ d_cnjg.c d_imag.c d_sign.c ef1asc_.c \ f77_aloc.c h_abs.c hl_lt.c i_dnnt.c \ - i_sign.c lwrite.c r_asin.c \ + i_sign.c lwrite.c r_asin.c \ rewind.c rsfe.c r_tanh.c s_paus.c util.c \ z_cos.c backspac.c c_sin.c d_cos.c \ d_int.c d_sin.c ef1cmc_.c f77vers.c \ h_dim.c h_mod.c i_indx.c lbitbits.c \ - pow_ri.c r_atan.c r_exp.c r_sign.c\ + pow_ri.c r_atan.c r_exp.c r_sign.c \ s_cat.c s_rnge.c wref.c z_div.c c_abs.c \ c_sqrt.c d_cosh.c d_lg10.c d_sinh.c \ endfile.c fmt.c h_dnnt.c h_nint.c iio.c \ @@ -32,7 +32,8 @@ cc_sources = abort_.c c_log.c d_atn2.c dfe.c d_prod.c \ c_exp.c d_atan.c d_exp.c dolio.c dtime_.c\ etime_.c getarg_.c hl_gt.c iargc_.c \ i_nint.c l_lt.c pow_hh.c r_abs.c rdfmt.c \ - r_mod.c r_sqrt.c signal_.c uio.c xwsne.c + r_mod.c r_sqrt.c signal_.c uio.c xwsne.c +# arithchk.c h_sources = f2c.h fio.h fmt.h fp.h lio.h rawio.h sysdep1.h From 6b357c3d2cbe19925c8aeb39e40c5db70fd0162e Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 3 Feb 2012 21:28:48 +0000 Subject: [PATCH 071/124] [cantera]: creating single library output From 0c26ea8c72a6e5c1c743ad4bb0c5fa76eee2b222 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Fri, 3 Feb 2012 23:41:00 +0000 Subject: [PATCH 072/124] [cantera]: moving some folders around --- Cantera/Makefile.am | 2 +- Cantera/cxx/include/importPhase.h | 4 +- Cantera/cxx/src/Makefile.am | 7 +- Cantera/cxx/src/importPhase.cpp | 4 +- {ext => Cantera/ext}/Makefile.am | 0 {ext => Cantera/ext}/blas/Makefile.am | 0 {ext => Cantera/ext}/blas/dasum.f | 0 {ext => Cantera/ext}/blas/daxpy.f | 0 {ext => Cantera/ext}/blas/dcabs1.f | 0 {ext => Cantera/ext}/blas/dcopy.f | 0 {ext => Cantera/ext}/blas/ddot.f | 0 {ext => Cantera/ext}/blas/dgbmv.f | 0 {ext => Cantera/ext}/blas/dgemm.f | 0 {ext => Cantera/ext}/blas/dgemv.f | 0 {ext => Cantera/ext}/blas/dger.f | 0 {ext => Cantera/ext}/blas/dnrm2.f | 0 {ext => Cantera/ext}/blas/drot.f | 0 {ext => Cantera/ext}/blas/drotg.f | 0 {ext => Cantera/ext}/blas/drotm.f | 0 {ext => Cantera/ext}/blas/drotmg.f | 0 {ext => Cantera/ext}/blas/dsbmv.f | 0 {ext => Cantera/ext}/blas/dscal.f | 0 {ext => Cantera/ext}/blas/dsdot.f | 0 {ext => Cantera/ext}/blas/dspmv.f | 0 {ext => Cantera/ext}/blas/dspr.f | 0 {ext => Cantera/ext}/blas/dspr2.f | 0 {ext => Cantera/ext}/blas/dswap.f | 0 {ext => Cantera/ext}/blas/dsymm.f | 0 {ext => Cantera/ext}/blas/dsymv.f | 0 {ext => Cantera/ext}/blas/dsyr.f | 0 {ext => Cantera/ext}/blas/dsyr2.f | 0 {ext => Cantera/ext}/blas/dsyr2k.f | 0 {ext => Cantera/ext}/blas/dsyrk.f | 0 {ext => Cantera/ext}/blas/dtbmv.f | 0 {ext => Cantera/ext}/blas/dtbsv.f | 0 {ext => Cantera/ext}/blas/dtpmv.f | 0 {ext => Cantera/ext}/blas/dtpsv.f | 0 {ext => Cantera/ext}/blas/dtrmm.f | 0 {ext => Cantera/ext}/blas/dtrmv.f | 0 {ext => Cantera/ext}/blas/dtrsm.f | 0 {ext => Cantera/ext}/blas/dtrsv.f | 0 {ext => Cantera/ext}/blas/dzasum.f | 0 {ext => Cantera/ext}/blas/dznrm2.f | 0 {ext => Cantera/ext}/blas/icamax.f | 0 {ext => Cantera/ext}/blas/idamax.f | 0 {ext => Cantera/ext}/blas/isamax.f | 0 {ext => Cantera/ext}/blas/izamax.f | 0 {ext => Cantera/ext}/blas/lsame.f | 0 {ext => Cantera/ext}/blas/xerbla.f | 0 {ext => Cantera/ext}/cvode/Makefile.am | 0 {ext => Cantera/ext}/cvode/band.c | 0 {ext => Cantera/ext}/cvode/band.h | 0 {ext => Cantera/ext}/cvode/cvband.c | 0 {ext => Cantera/ext}/cvode/cvband.h | 0 {ext => Cantera/ext}/cvode/cvbandpre.c | 0 {ext => Cantera/ext}/cvode/cvbandpre.h | 0 {ext => Cantera/ext}/cvode/cvdense.c | 0 {ext => Cantera/ext}/cvode/cvdense.h | 0 {ext => Cantera/ext}/cvode/cvdiag.c | 0 {ext => Cantera/ext}/cvode/cvdiag.h | 0 {ext => Cantera/ext}/cvode/cvode.c | 0 {ext => Cantera/ext}/cvode/cvode.h | 0 {ext => Cantera/ext}/cvode/cvspgmr.c | 0 {ext => Cantera/ext}/cvode/cvspgmr.h | 0 {ext => Cantera/ext}/cvode/dense.c | 0 {ext => Cantera/ext}/cvode/dense.h | 0 {ext => Cantera/ext}/cvode/iterativ.c | 0 {ext => Cantera/ext}/cvode/iterativ.h | 0 {ext => Cantera/ext}/cvode/llnlmath.c | 0 {ext => Cantera/ext}/cvode/llnlmath.h | 0 {ext => Cantera/ext}/cvode/llnltyps.h | 0 {ext => Cantera/ext}/cvode/nvector.c | 0 {ext => Cantera/ext}/cvode/nvector.h | 0 {ext => Cantera/ext}/cvode/spgmr.c | 0 {ext => Cantera/ext}/cvode/spgmr.h | 0 {ext => Cantera/ext}/f2c_blas/Makefile.am | 0 {ext => Cantera/ext}/f2c_blas/blaswrap.h | 0 {ext => Cantera/ext}/f2c_blas/dasum.c | 0 {ext => Cantera/ext}/f2c_blas/daxpy.c | 0 {ext => Cantera/ext}/f2c_blas/dcabs1.c | 0 {ext => Cantera/ext}/f2c_blas/dcopy.c | 0 {ext => Cantera/ext}/f2c_blas/ddot.c | 0 {ext => Cantera/ext}/f2c_blas/dgbmv.c | 0 {ext => Cantera/ext}/f2c_blas/dgemm.c | 0 {ext => Cantera/ext}/f2c_blas/dgemv.c | 0 {ext => Cantera/ext}/f2c_blas/dger.c | 0 {ext => Cantera/ext}/f2c_blas/dnrm2.c | 0 {ext => Cantera/ext}/f2c_blas/drot.c | 0 {ext => Cantera/ext}/f2c_blas/drotg.c | 0 {ext => Cantera/ext}/f2c_blas/drotm.c | 0 {ext => Cantera/ext}/f2c_blas/drotmg.c | 0 {ext => Cantera/ext}/f2c_blas/dsbmv.c | 0 {ext => Cantera/ext}/f2c_blas/dscal.c | 0 {ext => Cantera/ext}/f2c_blas/dsdot.c | 0 {ext => Cantera/ext}/f2c_blas/dspmv.c | 0 {ext => Cantera/ext}/f2c_blas/dspr.c | 0 {ext => Cantera/ext}/f2c_blas/dspr2.c | 0 {ext => Cantera/ext}/f2c_blas/dswap.c | 0 {ext => Cantera/ext}/f2c_blas/dsymm.c | 0 {ext => Cantera/ext}/f2c_blas/dsymv.c | 0 {ext => Cantera/ext}/f2c_blas/dsyr.c | 0 {ext => Cantera/ext}/f2c_blas/dsyr2.c | 0 {ext => Cantera/ext}/f2c_blas/dsyr2k.c | 0 {ext => Cantera/ext}/f2c_blas/dsyrk.c | 0 {ext => Cantera/ext}/f2c_blas/dtbmv.c | 0 {ext => Cantera/ext}/f2c_blas/dtbsv.c | 0 {ext => Cantera/ext}/f2c_blas/dtpmv.c | 0 {ext => Cantera/ext}/f2c_blas/dtpsv.c | 0 {ext => Cantera/ext}/f2c_blas/dtrmm.c | 0 {ext => Cantera/ext}/f2c_blas/dtrmv.c | 0 {ext => Cantera/ext}/f2c_blas/dtrsm.c | 0 {ext => Cantera/ext}/f2c_blas/dtrsv.c | 0 {ext => Cantera/ext}/f2c_blas/dzasum.c | 0 {ext => Cantera/ext}/f2c_blas/dznrm2.c | 0 {ext => Cantera/ext}/f2c_blas/idamax.c | 0 {ext => Cantera/ext}/f2c_blas/isamax.c | 0 {ext => Cantera/ext}/f2c_blas/lsame.c | 0 {ext => Cantera/ext}/f2c_blas/xerbla.c | 0 {ext => Cantera/ext}/f2c_lapack/Makefile.am | 0 {ext => Cantera/ext}/f2c_lapack/blaswrap.h | 0 {ext => Cantera/ext}/f2c_lapack/dbdsqr.c | 0 {ext => Cantera/ext}/f2c_lapack/dgbrfs.c | 0 {ext => Cantera/ext}/f2c_lapack/dgbsv.c | 0 {ext => Cantera/ext}/f2c_lapack/dgbsvx.c | 0 {ext => Cantera/ext}/f2c_lapack/dgbtf2.c | 0 {ext => Cantera/ext}/f2c_lapack/dgbtrf.c | 0 {ext => Cantera/ext}/f2c_lapack/dgbtrs.c | 0 {ext => Cantera/ext}/f2c_lapack/dgebak.c | 0 {ext => Cantera/ext}/f2c_lapack/dgebal.c | 0 {ext => Cantera/ext}/f2c_lapack/dgebd2.c | 0 {ext => Cantera/ext}/f2c_lapack/dgebrd.c | 0 {ext => Cantera/ext}/f2c_lapack/dgelq2.c | 0 {ext => Cantera/ext}/f2c_lapack/dgelqf.c | 0 {ext => Cantera/ext}/f2c_lapack/dgels.c | 0 {ext => Cantera/ext}/f2c_lapack/dgelsd.c | 0 {ext => Cantera/ext}/f2c_lapack/dgelss.c | 0 {ext => Cantera/ext}/f2c_lapack/dgelsx.c | 0 {ext => Cantera/ext}/f2c_lapack/dgelsy.c | 0 {ext => Cantera/ext}/f2c_lapack/dgeqr2.c | 0 {ext => Cantera/ext}/f2c_lapack/dgeqrf.c | 0 {ext => Cantera/ext}/f2c_lapack/dgetf2.c | 0 {ext => Cantera/ext}/f2c_lapack/dgetrf.c | 0 {ext => Cantera/ext}/f2c_lapack/dgetri.c | 0 {ext => Cantera/ext}/f2c_lapack/dgetrs.c | 0 {ext => Cantera/ext}/f2c_lapack/dlabad.c | 0 {ext => Cantera/ext}/f2c_lapack/dlabrd.c | 0 {ext => Cantera/ext}/f2c_lapack/dlacpy.c | 0 {ext => Cantera/ext}/f2c_lapack/dlamch.c | 0 {ext => Cantera/ext}/f2c_lapack/dlange.c | 0 {ext => Cantera/ext}/f2c_lapack/dlapy2.c | 0 {ext => Cantera/ext}/f2c_lapack/dlarf.c | 0 {ext => Cantera/ext}/f2c_lapack/dlarfb.c | 0 {ext => Cantera/ext}/f2c_lapack/dlarfg.c | 0 {ext => Cantera/ext}/f2c_lapack/dlarft.c | 0 {ext => Cantera/ext}/f2c_lapack/dlartg.c | 0 {ext => Cantera/ext}/f2c_lapack/dlas2.c | 0 {ext => Cantera/ext}/f2c_lapack/dlascl.c | 0 {ext => Cantera/ext}/f2c_lapack/dlaset.c | 0 {ext => Cantera/ext}/f2c_lapack/dlasq1.c | 0 {ext => Cantera/ext}/f2c_lapack/dlasq2.c | 0 {ext => Cantera/ext}/f2c_lapack/dlasq3.c | 0 {ext => Cantera/ext}/f2c_lapack/dlasq4.c | 0 {ext => Cantera/ext}/f2c_lapack/dlasq5.c | 0 {ext => Cantera/ext}/f2c_lapack/dlasq6.c | 0 {ext => Cantera/ext}/f2c_lapack/dlasr.c | 0 {ext => Cantera/ext}/f2c_lapack/dlasrt.c | 0 {ext => Cantera/ext}/f2c_lapack/dlassq.c | 0 {ext => Cantera/ext}/f2c_lapack/dlasv2.c | 0 {ext => Cantera/ext}/f2c_lapack/dlaswp.c | 0 {ext => Cantera/ext}/f2c_lapack/dorg2r.c | 0 {ext => Cantera/ext}/f2c_lapack/dorgbr.c | 0 {ext => Cantera/ext}/f2c_lapack/dorgl2.c | 0 {ext => Cantera/ext}/f2c_lapack/dorglq.c | 0 {ext => Cantera/ext}/f2c_lapack/dorgqr.c | 0 {ext => Cantera/ext}/f2c_lapack/dorm2r.c | 0 {ext => Cantera/ext}/f2c_lapack/dormbr.c | 0 {ext => Cantera/ext}/f2c_lapack/dorml2.c | 0 {ext => Cantera/ext}/f2c_lapack/dormlq.c | 0 {ext => Cantera/ext}/f2c_lapack/dormqr.c | 0 {ext => Cantera/ext}/f2c_lapack/drscl.c | 0 {ext => Cantera/ext}/f2c_lapack/dtrti2.c | 0 {ext => Cantera/ext}/f2c_lapack/dtrtri.c | 0 {ext => Cantera/ext}/f2c_lapack/ieeeck.c | 0 {ext => Cantera/ext}/f2c_lapack/ilaenv.c | 0 {ext => Cantera/ext}/f2c_lapack/lsame.c | 0 {ext => Cantera/ext}/f2c_libs/Makefile.am | 8 +- {ext => Cantera/ext}/f2c_libs/abort_.c | 0 Cantera/ext/f2c_libs/arith.h | 6 + {ext => Cantera/ext}/f2c_libs/arith.hwin32 | 0 {ext => Cantera/ext}/f2c_libs/arithchk.c | 0 {ext => Cantera/ext}/f2c_libs/backspac.c | 0 {ext => Cantera/ext}/f2c_libs/c_abs.c | 0 {ext => Cantera/ext}/f2c_libs/c_cos.c | 0 {ext => Cantera/ext}/f2c_libs/c_div.c | 0 {ext => Cantera/ext}/f2c_libs/c_exp.c | 0 {ext => Cantera/ext}/f2c_libs/c_log.c | 0 {ext => Cantera/ext}/f2c_libs/c_sin.c | 0 {ext => Cantera/ext}/f2c_libs/c_sqrt.c | 0 {ext => Cantera/ext}/f2c_libs/cabs.c | 0 {ext => Cantera/ext}/f2c_libs/close.c | 0 {ext => Cantera/ext}/f2c_libs/d_abs.c | 0 {ext => Cantera/ext}/f2c_libs/d_acos.c | 0 {ext => Cantera/ext}/f2c_libs/d_asin.c | 0 {ext => Cantera/ext}/f2c_libs/d_atan.c | 0 {ext => Cantera/ext}/f2c_libs/d_atn2.c | 0 {ext => Cantera/ext}/f2c_libs/d_cnjg.c | 0 {ext => Cantera/ext}/f2c_libs/d_cos.c | 0 {ext => Cantera/ext}/f2c_libs/d_cosh.c | 0 {ext => Cantera/ext}/f2c_libs/d_dim.c | 0 {ext => Cantera/ext}/f2c_libs/d_exp.c | 0 {ext => Cantera/ext}/f2c_libs/d_imag.c | 0 {ext => Cantera/ext}/f2c_libs/d_int.c | 0 {ext => Cantera/ext}/f2c_libs/d_lg10.c | 0 {ext => Cantera/ext}/f2c_libs/d_log.c | 0 {ext => Cantera/ext}/f2c_libs/d_mod.c | 0 {ext => Cantera/ext}/f2c_libs/d_nint.c | 0 {ext => Cantera/ext}/f2c_libs/d_prod.c | 0 {ext => Cantera/ext}/f2c_libs/d_sign.c | 0 {ext => Cantera/ext}/f2c_libs/d_sin.c | 0 {ext => Cantera/ext}/f2c_libs/d_sinh.c | 0 {ext => Cantera/ext}/f2c_libs/d_sqrt.c | 0 {ext => Cantera/ext}/f2c_libs/d_tan.c | 0 {ext => Cantera/ext}/f2c_libs/d_tanh.c | 0 {ext => Cantera/ext}/f2c_libs/derf_.c | 0 {ext => Cantera/ext}/f2c_libs/derfc_.c | 0 {ext => Cantera/ext}/f2c_libs/dfe.c | 0 {ext => Cantera/ext}/f2c_libs/dolio.c | 0 {ext => Cantera/ext}/f2c_libs/dtime_.c | 0 {ext => Cantera/ext}/f2c_libs/due.c | 0 {ext => Cantera/ext}/f2c_libs/ef1asc_.c | 0 {ext => Cantera/ext}/f2c_libs/ef1cmc_.c | 0 {ext => Cantera/ext}/f2c_libs/endfile.c | 0 {ext => Cantera/ext}/f2c_libs/erf_.c | 0 {ext => Cantera/ext}/f2c_libs/erfc_.c | 0 {ext => Cantera/ext}/f2c_libs/err.c | 0 {ext => Cantera/ext}/f2c_libs/etime_.c | 0 {ext => Cantera/ext}/f2c_libs/exit_.c | 0 {ext => Cantera/ext}/f2c_libs/f2c.h | 0 {ext => Cantera/ext}/f2c_libs/f2c.h0 | 0 {ext => Cantera/ext}/f2c_libs/f2ch.add | 0 {ext => Cantera/ext}/f2c_libs/f77_aloc.c | 0 {ext => Cantera/ext}/f2c_libs/f77vers.c | 0 {ext => Cantera/ext}/f2c_libs/fio.h | 0 {ext => Cantera/ext}/f2c_libs/fmt.c | 0 {ext => Cantera/ext}/f2c_libs/fmt.h | 0 {ext => Cantera/ext}/f2c_libs/fmtlib.c | 0 {ext => Cantera/ext}/f2c_libs/fp.h | 0 {ext => Cantera/ext}/f2c_libs/ftell64_.c | 0 {ext => Cantera/ext}/f2c_libs/ftell_.c | 0 {ext => Cantera/ext}/f2c_libs/getarg_.c | 0 {ext => Cantera/ext}/f2c_libs/getenv_.c | 0 {ext => Cantera/ext}/f2c_libs/h_abs.c | 0 {ext => Cantera/ext}/f2c_libs/h_dim.c | 0 {ext => Cantera/ext}/f2c_libs/h_dnnt.c | 0 {ext => Cantera/ext}/f2c_libs/h_indx.c | 0 {ext => Cantera/ext}/f2c_libs/h_len.c | 0 {ext => Cantera/ext}/f2c_libs/h_mod.c | 0 {ext => Cantera/ext}/f2c_libs/h_nint.c | 0 {ext => Cantera/ext}/f2c_libs/h_sign.c | 0 {ext => Cantera/ext}/f2c_libs/hl_ge.c | 0 {ext => Cantera/ext}/f2c_libs/hl_gt.c | 0 {ext => Cantera/ext}/f2c_libs/hl_le.c | 0 {ext => Cantera/ext}/f2c_libs/hl_lt.c | 0 {ext => Cantera/ext}/f2c_libs/i77vers.c | 0 {ext => Cantera/ext}/f2c_libs/i_abs.c | 0 {ext => Cantera/ext}/f2c_libs/i_dim.c | 0 {ext => Cantera/ext}/f2c_libs/i_dnnt.c | 0 {ext => Cantera/ext}/f2c_libs/i_indx.c | 0 {ext => Cantera/ext}/f2c_libs/i_len.c | 0 {ext => Cantera/ext}/f2c_libs/i_mod.c | 0 {ext => Cantera/ext}/f2c_libs/i_nint.c | 0 {ext => Cantera/ext}/f2c_libs/i_sign.c | 0 {ext => Cantera/ext}/f2c_libs/iargc_.c | 0 {ext => Cantera/ext}/f2c_libs/iio.c | 0 {ext => Cantera/ext}/f2c_libs/ilnw.c | 0 {ext => Cantera/ext}/f2c_libs/inquire.c | 0 {ext => Cantera/ext}/f2c_libs/l_ge.c | 0 {ext => Cantera/ext}/f2c_libs/l_gt.c | 0 {ext => Cantera/ext}/f2c_libs/l_le.c | 0 {ext => Cantera/ext}/f2c_libs/l_lt.c | 0 {ext => Cantera/ext}/f2c_libs/lbitbits.c | 0 {ext => Cantera/ext}/f2c_libs/lbitshft.c | 0 {ext => Cantera/ext}/f2c_libs/lio.h | 0 {ext => Cantera/ext}/f2c_libs/lread.c | 0 {ext => Cantera/ext}/f2c_libs/lwrite.c | 0 {ext => Cantera/ext}/f2c_libs/main.c | 0 {ext => Cantera/ext}/f2c_libs/open.c | 0 {ext => Cantera/ext}/f2c_libs/pow_ci.c | 0 {ext => Cantera/ext}/f2c_libs/pow_dd.c | 0 {ext => Cantera/ext}/f2c_libs/pow_di.c | 0 {ext => Cantera/ext}/f2c_libs/pow_hh.c | 0 {ext => Cantera/ext}/f2c_libs/pow_ii.c | 0 {ext => Cantera/ext}/f2c_libs/pow_qq.c | 0 {ext => Cantera/ext}/f2c_libs/pow_ri.c | 0 {ext => Cantera/ext}/f2c_libs/pow_zi.c | 0 {ext => Cantera/ext}/f2c_libs/pow_zz.c | 0 {ext => Cantera/ext}/f2c_libs/qbitbits.c | 0 {ext => Cantera/ext}/f2c_libs/qbitshft.c | 0 {ext => Cantera/ext}/f2c_libs/r_abs.c | 0 {ext => Cantera/ext}/f2c_libs/r_acos.c | 0 {ext => Cantera/ext}/f2c_libs/r_asin.c | 0 {ext => Cantera/ext}/f2c_libs/r_atan.c | 0 {ext => Cantera/ext}/f2c_libs/r_atn2.c | 0 {ext => Cantera/ext}/f2c_libs/r_cnjg.c | 0 {ext => Cantera/ext}/f2c_libs/r_cos.c | 0 {ext => Cantera/ext}/f2c_libs/r_cosh.c | 0 {ext => Cantera/ext}/f2c_libs/r_dim.c | 0 {ext => Cantera/ext}/f2c_libs/r_exp.c | 0 {ext => Cantera/ext}/f2c_libs/r_imag.c | 0 {ext => Cantera/ext}/f2c_libs/r_int.c | 0 {ext => Cantera/ext}/f2c_libs/r_lg10.c | 0 {ext => Cantera/ext}/f2c_libs/r_log.c | 0 {ext => Cantera/ext}/f2c_libs/r_mod.c | 0 {ext => Cantera/ext}/f2c_libs/r_nint.c | 0 {ext => Cantera/ext}/f2c_libs/r_sign.c | 0 {ext => Cantera/ext}/f2c_libs/r_sin.c | 0 {ext => Cantera/ext}/f2c_libs/r_sinh.c | 0 {ext => Cantera/ext}/f2c_libs/r_sqrt.c | 0 {ext => Cantera/ext}/f2c_libs/r_tan.c | 0 {ext => Cantera/ext}/f2c_libs/r_tanh.c | 0 {ext => Cantera/ext}/f2c_libs/rawio.h | 0 {ext => Cantera/ext}/f2c_libs/rdfmt.c | 0 {ext => Cantera/ext}/f2c_libs/rewind.c | 0 {ext => Cantera/ext}/f2c_libs/rsfe.c | 0 {ext => Cantera/ext}/f2c_libs/rsli.c | 0 {ext => Cantera/ext}/f2c_libs/rsne.c | 0 {ext => Cantera/ext}/f2c_libs/s_cat.c | 0 {ext => Cantera/ext}/f2c_libs/s_cmp.c | 0 {ext => Cantera/ext}/f2c_libs/s_copy.c | 0 {ext => Cantera/ext}/f2c_libs/s_paus.c | 0 {ext => Cantera/ext}/f2c_libs/s_rnge.c | 0 {ext => Cantera/ext}/f2c_libs/s_stop.c | 0 {ext => Cantera/ext}/f2c_libs/sfe.c | 0 {ext => Cantera/ext}/f2c_libs/sig_die.c | 0 {ext => Cantera/ext}/f2c_libs/signal1.h0 | 0 {ext => Cantera/ext}/f2c_libs/signal_.c | 0 {ext => Cantera/ext}/f2c_libs/signbit.c | 0 {ext => Cantera/ext}/f2c_libs/sue.c | 0 {ext => Cantera/ext}/f2c_libs/sysdep1.h0 | 0 {ext => Cantera/ext}/f2c_libs/system_.c | 0 {ext => Cantera/ext}/f2c_libs/typesize.c | 0 {ext => Cantera/ext}/f2c_libs/uio.c | 0 {ext => Cantera/ext}/f2c_libs/uninit.c | 0 {ext => Cantera/ext}/f2c_libs/util.c | 0 {ext => Cantera/ext}/f2c_libs/wref.c | 0 {ext => Cantera/ext}/f2c_libs/wrtfmt.c | 0 {ext => Cantera/ext}/f2c_libs/wsfe.c | 0 {ext => Cantera/ext}/f2c_libs/wsle.c | 0 {ext => Cantera/ext}/f2c_libs/wsne.c | 0 {ext => Cantera/ext}/f2c_libs/xwsne.c | 0 {ext => Cantera/ext}/f2c_libs/z_abs.c | 0 {ext => Cantera/ext}/f2c_libs/z_cos.c | 0 {ext => Cantera/ext}/f2c_libs/z_div.c | 0 {ext => Cantera/ext}/f2c_libs/z_exp.c | 0 {ext => Cantera/ext}/f2c_libs/z_log.c | 0 {ext => Cantera/ext}/f2c_libs/z_sin.c | 0 {ext => Cantera/ext}/f2c_libs/z_sqrt.c | 0 {ext => Cantera/ext}/f2c_math/Makefile.am | 0 {ext => Cantera/ext}/f2c_math/cblas.h | 0 {ext => Cantera/ext}/f2c_math/daux.c | 0 {ext => Cantera/ext}/f2c_math/ddaspk.c | 0 {ext => Cantera/ext}/f2c_math/dgbefa.c | 0 {ext => Cantera/ext}/f2c_math/dgbsl.c | 0 {ext => Cantera/ext}/f2c_math/dgefa.c | 0 {ext => Cantera/ext}/f2c_math/dgesl.c | 0 {ext => Cantera/ext}/f2c_math/dp1vlu.c | 0 {ext => Cantera/ext}/f2c_math/dpcoef.c | 0 {ext => Cantera/ext}/f2c_math/dpolft.c | 0 {ext => Cantera/ext}/f2c_math/fdump.c | 0 {ext => Cantera/ext}/f2c_math/gmres.h | 0 {ext => Cantera/ext}/f2c_math/idamax.c | 0 {ext => Cantera/ext}/f2c_math/j4save.c | 0 {ext => Cantera/ext}/f2c_math/mach.cpp | 0 {ext => Cantera/ext}/f2c_math/mkl_cblas.h | 0 {ext => Cantera/ext}/f2c_math/pcoef.c | 0 {ext => Cantera/ext}/f2c_math/polfit.c | 0 {ext => Cantera/ext}/f2c_math/printstring.c | 0 {ext => Cantera/ext}/f2c_math/pvalue.c | 0 {ext => Cantera/ext}/f2c_math/xercnt.c | 0 {ext => Cantera/ext}/f2c_math/xerhlt.c | 0 {ext => Cantera/ext}/f2c_math/xermsg.c | 0 {ext => Cantera/ext}/f2c_math/xerprn.c | 0 {ext => Cantera/ext}/f2c_math/xersve.c | 0 {ext => Cantera/ext}/f2c_math/xgetua.c | 0 {ext => Cantera/ext}/f2c_recipes/Makefile.in | 0 {ext => Cantera/ext}/f2c_recipes/simp1.c | 0 {ext => Cantera/ext}/f2c_recipes/simp2.c | 0 {ext => Cantera/ext}/f2c_recipes/simp3.c | 0 {ext => Cantera/ext}/f2c_recipes/simplx.c | 0 {ext => Cantera/ext}/f2c_recipes/splie2.c | 0 {ext => Cantera/ext}/f2c_recipes/splin2.c | 0 {ext => Cantera/ext}/f2c_recipes/spline.c | 0 {ext => Cantera/ext}/f2c_recipes/splint.c | 0 {ext => Cantera/ext}/lapack/Makefile.am | 0 {ext => Cantera/ext}/lapack/dbdsqr.f | 0 {ext => Cantera/ext}/lapack/dgbsv.f | 0 {ext => Cantera/ext}/lapack/dgbtf2.f | 0 {ext => Cantera/ext}/lapack/dgbtrf.f | 0 {ext => Cantera/ext}/lapack/dgbtrs.f | 0 {ext => Cantera/ext}/lapack/dgebd2.f | 0 {ext => Cantera/ext}/lapack/dgebrd.f | 0 {ext => Cantera/ext}/lapack/dgelq2.f | 0 {ext => Cantera/ext}/lapack/dgelqf.f | 0 {ext => Cantera/ext}/lapack/dgelss.f | 0 {ext => Cantera/ext}/lapack/dgeqr2.f | 0 {ext => Cantera/ext}/lapack/dgeqrf.f | 0 {ext => Cantera/ext}/lapack/dgetf2.f | 0 {ext => Cantera/ext}/lapack/dgetrf.f | 0 {ext => Cantera/ext}/lapack/dgetri.f | 0 {ext => Cantera/ext}/lapack/dgetrs.f | 0 {ext => Cantera/ext}/lapack/dlabad.f | 0 {ext => Cantera/ext}/lapack/dlabrd.f | 0 {ext => Cantera/ext}/lapack/dlacpy.f | 0 {ext => Cantera/ext}/lapack/dlamch.f | 0 {ext => Cantera/ext}/lapack/dlange.f | 0 {ext => Cantera/ext}/lapack/dlapy2.f | 0 {ext => Cantera/ext}/lapack/dlarf.f | 0 {ext => Cantera/ext}/lapack/dlarfb.f | 0 {ext => Cantera/ext}/lapack/dlarfg.f | 0 {ext => Cantera/ext}/lapack/dlarft.f | 0 {ext => Cantera/ext}/lapack/dlartg.f | 0 {ext => Cantera/ext}/lapack/dlas2.f | 0 {ext => Cantera/ext}/lapack/dlascl.f | 0 {ext => Cantera/ext}/lapack/dlaset.f | 0 {ext => Cantera/ext}/lapack/dlasq1.f | 0 {ext => Cantera/ext}/lapack/dlasq2.f | 0 {ext => Cantera/ext}/lapack/dlasq3.f | 0 {ext => Cantera/ext}/lapack/dlasq4.f | 0 {ext => Cantera/ext}/lapack/dlasr.f | 0 {ext => Cantera/ext}/lapack/dlasrt.f | 0 {ext => Cantera/ext}/lapack/dlassq.f | 0 {ext => Cantera/ext}/lapack/dlasv2.f | 0 {ext => Cantera/ext}/lapack/dlaswp.f | 0 {ext => Cantera/ext}/lapack/dorg2r.f | 0 {ext => Cantera/ext}/lapack/dorgbr.f | 0 {ext => Cantera/ext}/lapack/dorgl2.f | 0 {ext => Cantera/ext}/lapack/dorglq.f | 0 {ext => Cantera/ext}/lapack/dorgqr.f | 0 {ext => Cantera/ext}/lapack/dorm2r.f | 0 {ext => Cantera/ext}/lapack/dormbr.f | 0 {ext => Cantera/ext}/lapack/dorml2.f | 0 {ext => Cantera/ext}/lapack/dormlq.f | 0 {ext => Cantera/ext}/lapack/dormqr.f | 0 {ext => Cantera/ext}/lapack/drscl.f | 0 {ext => Cantera/ext}/lapack/ilaenv.f | 0 {ext => Cantera/ext}/lapack/lsame.f | 0 {ext => Cantera/ext}/lapack/xerbla.f | 0 {ext => Cantera/ext}/math/Makefile.am | 0 {ext => Cantera/ext}/math/cblas.h | 0 {ext => Cantera/ext}/math/daux.f | 0 {ext => Cantera/ext}/math/ddaspk.f | 0 {ext => Cantera/ext}/math/dgbefa.f | 0 {ext => Cantera/ext}/math/dgbfa.f | 0 {ext => Cantera/ext}/math/dgbsl.f | 0 {ext => Cantera/ext}/math/dgefa.f | 0 {ext => Cantera/ext}/math/dgesl.f | 0 {ext => Cantera/ext}/math/dp1vlu.f | 0 {ext => Cantera/ext}/math/dpcoef.f | 0 {ext => Cantera/ext}/math/dpolft.f | 0 {ext => Cantera/ext}/math/fdump.f | 0 {ext => Cantera/ext}/math/gmres.h | 0 {ext => Cantera/ext}/math/idamax.f | 0 {ext => Cantera/ext}/math/j4save.f | 0 {ext => Cantera/ext}/math/mach.cpp | 0 {ext => Cantera/ext}/math/mkl_cblas.h | 0 {ext => Cantera/ext}/math/pcoef.f | 0 {ext => Cantera/ext}/math/polfit.f | 0 {ext => Cantera/ext}/math/printstring.c | 0 {ext => Cantera/ext}/math/pvalue.f | 0 {ext => Cantera/ext}/math/xercnt.f | 0 {ext => Cantera/ext}/math/xerhlt.f | 0 {ext => Cantera/ext}/math/xermsg.f | 0 {ext => Cantera/ext}/math/xerprn.f | 0 {ext => Cantera/ext}/math/xersve.f | 0 {ext => Cantera/ext}/math/xgetua.f | 0 {ext => Cantera/ext}/recipes/Makefile.in | 0 {ext => Cantera/ext}/recipes/simp1.f | 0 {ext => Cantera/ext}/recipes/simp2.f | 0 {ext => Cantera/ext}/recipes/simp3.f | 0 {ext => Cantera/ext}/recipes/simplx.f | 0 {ext => Cantera/ext}/recipes/splie2.f | 0 {ext => Cantera/ext}/recipes/splin2.f | 0 {ext => Cantera/ext}/recipes/spline.f | 0 {ext => Cantera/ext}/recipes/splint.f | 0 {ext => Cantera/ext}/tpx/CMakeLists.txt | 0 {ext => Cantera/ext}/tpx/CarbonDioxide.cpp | 0 {ext => Cantera/ext}/tpx/CarbonDioxide.h | 0 {ext => Cantera/ext}/tpx/HFC134a.cpp | 0 {ext => Cantera/ext}/tpx/HFC134a.h | 0 {ext => Cantera/ext}/tpx/Heptane.cpp | 0 {ext => Cantera/ext}/tpx/Heptane.h | 0 {ext => Cantera/ext}/tpx/Hydrogen.cpp | 0 {ext => Cantera/ext}/tpx/Hydrogen.h | 0 {ext => Cantera/ext}/tpx/Makefile.am | 0 {ext => Cantera/ext}/tpx/Methane.cpp | 0 {ext => Cantera/ext}/tpx/Methane.h | 0 {ext => Cantera/ext}/tpx/Nitrogen.cpp | 0 {ext => Cantera/ext}/tpx/Nitrogen.h | 0 {ext => Cantera/ext}/tpx/Oxygen.cpp | 0 {ext => Cantera/ext}/tpx/Oxygen.h | 0 {ext => Cantera/ext}/tpx/RedlichKwong.cpp | 0 {ext => Cantera/ext}/tpx/RedlichKwong.h | 0 {ext => Cantera/ext}/tpx/Sub.cpp | 0 {ext => Cantera/ext}/tpx/Sub.h | 0 {ext => Cantera/ext}/tpx/Water.cpp | 0 {ext => Cantera/ext}/tpx/Water.h | 0 {ext => Cantera/ext}/tpx/ideal.cpp | 0 {ext => Cantera/ext}/tpx/lk.cpp | 0 {ext => Cantera/ext}/tpx/lk.h | 0 {ext => Cantera/ext}/tpx/lkw.cpp | 0 {ext => Cantera/ext}/tpx/lkw.h | 0 {ext => Cantera/ext}/tpx/mix.h | 0 {ext => Cantera/ext}/tpx/subs.h | 0 {ext => Cantera/ext}/tpx/utils.cpp | 0 {ext => Cantera/ext}/tpx/utils.h | 0 Cantera/lib/README | 3 - Cantera/src/base/Makefile.am | 8 +- Cantera/src/converters/Makefile.am | 9 +- Cantera/src/equil/Makefile.am | 7 +- Cantera/src/kinetics/Makefile.am | 9 +- Cantera/src/numerics/CVodeInt.cpp | 16 +- Cantera/src/numerics/Makefile.am | 10 +- Cantera/src/oneD/Makefile.am | 10 +- Cantera/src/spectra/Makefile.am | 10 +- Cantera/src/thermo/Makefile.am | 8 +- Cantera/src/transport/Makefile.am | 10 +- Cantera/src/zeroD/Makefile.am | 9 +- Makefile.am | 2 +- configure.ac | 14 +- win32/README.vc7 | 97 - win32/README.vc8 | 97 - win32/vc6/all/all.dsp | 63 - win32/vc6/blas/blas.dsp | 265 - win32/vc6/cantera.dsw | 254 - win32/vc6/cantera/cantera.dsp | 673 - .../vc6/cantera_examples/cantera_examples.dsw | 29 - win32/vc6/ck2cti/ck2cti.dsp | 107 - win32/vc6/ckreader/ckreader.dsp | 213 - win32/vc6/clib/clib.dsp | 161 - win32/vc6/converters/converters.dsp | 161 - win32/vc6/ct/ct.dsp | 109 - win32/vc6/ctmath/ctmath.dsp | 194 - win32/vc6/ctsetup/ctsetup.dsp | 106 - win32/vc6/cvode/cvode.dsp | 195 - win32/vc6/cxxutils/cxxutils.dsp | 105 - win32/vc6/cxxutils/cxxutils.mak | 174 - win32/vc6/lapack/lapack.dsp | 305 - win32/vc6/oneD/oneD.dsp | 161 - win32/vc6/recipes/recipes.dsp | 129 - win32/vc6/tpx/tpx.dsp | 157 - win32/vc6/tpx/tpx.mak | 224 - win32/vc6/transport/transport.dsp | 153 - win32/vc6/zeroD/zeroD.dsp | 149 - win32/vc7/SetupCantera/SetupCantera.vdproj | 16924 ----------- .../vc7/SetupCantera/SetupCanteraLite.vdproj | 11918 -------- win32/vc7/Sundials/CVODES/CVODES.vcproj | 176 - .../Sundials/CVODES_DENSE/CVODES_DENSE.vcproj | 134 - win32/vc7/Sundials/IDA/IDA.vcproj | 161 - win32/vc7/Sundials/KINSOL/KINSOL.vcproj | 158 - win32/vc7/Sundials/NVEC_SER/NVEC_SER.vcproj | 125 - .../SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj | 149 - win32/vc7/Sundials/sundials/sundials_config.h | 37 - win32/vc7/base/base.vcproj | 186 - win32/vc7/cantera.sln | 207 - win32/vc7/cantera/cantera.vcproj | 530 - win32/vc7/cantera_examples.sln | 69 - win32/vc7/cantera_no_sundials.sln | 180 - win32/vc7/ck2cti/ck2cti.vcproj | 137 - win32/vc7/clib/clib.vcproj | 203 - win32/vc7/config_h/config_h.vcproj | 144 - win32/vc7/config_h/docopy.cmd | 6 - win32/vc7/configure.vc++ | 86 - win32/vc7/converters/converters.vcproj | 189 - win32/vc7/csvdiff/csvdiff.vcproj | 144 - win32/vc7/cti2ctml/cti2ctml.vcproj | 138 - win32/vc7/ctmatlab/ctmatlab.vcproj | 127 - win32/vc7/ctmatlab/runmlab.cmd | 5 - win32/vc7/ctpython/ctpython.vcproj | 130 - win32/vc7/ctpython/runpython.cmd | 5 - win32/vc7/cvode/cvode.vcproj | 197 - win32/vc7/cxx_examples/cxx_examples.vcproj | 156 - win32/vc7/cxxutils/cxxutils.vcproj | 170 - win32/vc7/demos/CanteraDemos.sln | 61 - win32/vc7/demos/NASA_coeffs.vcproj | 141 - win32/vc7/demos/Rankine.vcproj | 141 - win32/vc7/demos/ReadMe.txt | 12 - win32/vc7/demos/combustor.vcproj | 141 - win32/vc7/demos/demo.vcproj | 143 - win32/vc7/demos/flamespeed.vcproj | 141 - win32/vc7/demos/kinetics1.vcproj | 141 - win32/vc7/diamondSurf/diamondSurf.vcproj | 136 - win32/vc7/f2c_arithchk/f2c_arithchk.vcproj | 134 - win32/vc7/f2c_blas/f2c_blas.vcproj | 245 - win32/vc7/f2c_lapack/f2c_lapack.vcproj | 317 - win32/vc7/f2c_libs/f2c_libs.vcproj | 618 - win32/vc7/f2c_math/f2c_math.vcproj | 194 - win32/vc7/f2c_recipes/f2c_recipes.vcproj | 143 - win32/vc7/oneD/oneD.vcproj | 177 - win32/vc7/prepreconfig.vc++ | 92 - win32/vc7/pycantera/pycantera.vcproj | 145 - win32/vc7/silane_equil/silane_equil.vcproj | 138 - win32/vc7/surfkin/surfkin.vcproj | 138 - win32/vc7/tpx/tpx.vcproj | 195 - win32/vc7/transport/transport.vcproj | 165 - win32/vc7/zeroD/zeroD.vcproj | 153 - win32/vc8/SetupAlt/SetupAlt.vdproj | 4075 --- win32/vc8/SetupCantera/SetupCantera.vdproj | 23121 --------------- .../vc8/SetupCantera/SetupCanteraLite.vdproj | 11949 -------- win32/vc8/Sundials/CVODES/.cvsignore | 3 - win32/vc8/Sundials/CVODES/CVODES.vcproj | 252 - win32/vc8/Sundials/NVEC_SER/.cvsignore | 3 - win32/vc8/Sundials/NVEC_SER/NVEC_SER.vcproj | 182 - win32/vc8/Sundials/SUNDIALS_SHARED/.cvsignore | 3 - .../SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj | 210 - win32/vc8/base/base.vcproj | 286 - win32/vc8/base_h/base_h.vcproj | 197 - win32/vc8/base_h/docopy.cmd | 22 - win32/vc8/cantera.sln | 345 - win32/vc8/cantera_examples.sln | 55 - win32/vc8/cantera_no_sundials.sln | 180 - win32/vc8/ck2cti/ck2cti.vcproj | 211 - win32/vc8/clib/clib.vcproj | 293 - win32/vc8/config_h/config_h.vcproj | 206 - win32/vc8/config_h/docopy.cmd | 10 - win32/vc8/converters/converters.vcproj | 268 - win32/vc8/csvdiff/csvdiff.vcproj | 216 - win32/vc8/cti2ctml/cti2ctml.vcproj | 207 - win32/vc8/ctmatlab/ctmatlab.vcproj | 195 - win32/vc8/ctmatlab/runmlab.cmd | 5 - win32/vc8/ctpython/ctpython.vcproj | 193 - win32/vc8/ctpython/runpython.cmd | 5 - win32/vc8/cvode/cvode.vcproj | 197 - win32/vc8/cxx_examples/cxx_examples.vcproj | 231 - win32/vc8/cxxutils/cxxutils.vcproj | 244 - win32/vc8/demos/CanteraDemos.sln | 61 - win32/vc8/demos/NASA_coeffs.vcproj | 141 - win32/vc8/demos/Rankine.vcproj | 141 - win32/vc8/demos/ReadMe.txt | 12 - win32/vc8/demos/combustor.vcproj | 141 - win32/vc8/demos/demo.vcproj | 143 - win32/vc8/demos/flamespeed.vcproj | 141 - win32/vc8/demos/kinetics1.vcproj | 141 - win32/vc8/diamondSurf/diamondSurf.vcproj | 204 - win32/vc8/equil/equil.vcproj | 391 - win32/vc8/f2c_blas/f2c_blas.vcproj | 342 - win32/vc8/f2c_lapack/f2c_lapack.vcproj | 440 - win32/vc8/f2c_libs/f2c_libs.vcproj | 842 - win32/vc8/f2c_math/f2c_math.vcproj | 280 - win32/vc8/kinetics/kinetics.vcproj | 315 - win32/vc8/numerics/numerics.vcproj | 292 - win32/vc8/oneD/oneD.vcproj | 248 - win32/vc8/prepreconfig.vc++ | 96 - win32/vc8/silane_equil/silane_equil.vcproj | 206 - win32/vc8/spectra/spectra.vcproj | 186 - win32/vc8/surfkin/surfkin.vcproj | 203 - win32/vc8/thermo/thermo.vcproj | 651 - win32/vc8/tpx/tpx.vcproj | 272 - win32/vc8/transport/transport.vcproj | 260 - win32/vc8/zeroD/zeroD.vcproj | 252 - win32/vc9/SetupCantera/SetupCantera.vdproj | 23890 ---------------- .../vc9/SetupCantera/SetupCanteraLite.vdproj | 11974 -------- .../SetupCanteraDebug.vdproj | 8417 ------ win32/vc9/Sundials/CVODES/.cvsignore | 3 - win32/vc9/Sundials/CVODES/CVODES.vcproj | 320 - win32/vc9/Sundials/NVEC_SER/.cvsignore | 3 - win32/vc9/Sundials/NVEC_SER/NVEC_SER.vcproj | 248 - win32/vc9/Sundials/SUNDIALS_SHARED/.cvsignore | 4 - .../SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj | 282 - win32/vc9/Sundials/SUNDIALS_SHARED/docopy.cmd | 15 - .../SUNDIALS_SHARED/sundials_config.h | 37 - win32/vc9/base/base.vcproj | 358 - win32/vc9/base/docopy.cmd | 30 - win32/vc9/cantera.sln | 378 - win32/vc9/cantera_examples.sln | 37 - win32/vc9/cantera_no_sundials.sln | 180 - win32/vc9/ck2cti/ck2cti.vcproj | 295 - win32/vc9/clib/clib.vcproj | 374 - win32/vc9/clibstatic/clibstatic.vcproj | 339 - win32/vc9/config_h/config_h.vcproj | 137 - win32/vc9/config_h/docopy.cmd | 48 - win32/vc9/converters/converters.vcproj | 341 - win32/vc9/converters/docopy.cmd | 21 - win32/vc9/csvdiff/csvdiff.vcproj | 293 - win32/vc9/cti2ctml/cti2ctml.vcproj | 290 - win32/vc9/ctmatlab/buildmlab.cmd | 3 - win32/vc9/ctmatlab/buildmlab_d.cmd | 3 - win32/vc9/ctmatlab/ctmatlab.vcproj | 197 - win32/vc9/ctmatlab/runmlab.cmd | 7 - win32/vc9/ctpython/ctpython.vcproj | 195 - win32/vc9/ctpython/runpython.cmd | 8 - win32/vc9/ctpython/runpython_d.cmd | 8 - win32/vc9/cvode/cvode.vcproj | 197 - win32/vc9/cxx_examples/cxx_examples.vcproj | 238 - win32/vc9/cxxutils/cxxutils.vcproj | 311 - win32/vc9/cxxutils/docopy.cmd | 21 - win32/vc9/demos/CanteraDemos.sln | 51 - win32/vc9/demos/NASA_coeffs.vcproj | 210 - win32/vc9/demos/Rankine.vcproj | 214 - win32/vc9/demos/ReadMe.txt | 9 - win32/vc9/demos/combustor.vcproj | 206 - win32/vc9/demos/demo.vcproj | 211 - win32/vc9/demos/flamespeed.vcproj | 206 - win32/vc9/demos/kinetics1.vcproj | 210 - win32/vc9/diamondSurf/diamondSurf.vcproj | 206 - win32/vc9/equil/docopy.cmd | 26 - win32/vc9/equil/equil.vcproj | 460 - win32/vc9/f2c_blas/f2c_blas.vcproj | 409 - win32/vc9/f2c_lapack/f2c_lapack.vcproj | 508 - win32/vc9/f2c_libs/f2c_libs.vcproj | 888 - win32/vc9/f2c_math/f2c_math.vcproj | 347 - win32/vc9/kinetics/docopy.cmd | 35 - win32/vc9/kinetics/kinetics.vcproj | 389 - win32/vc9/numerics/docopy.cmd | 29 - win32/vc9/numerics/numerics.vcproj | 357 - win32/vc9/oneD/docopy.cmd | 22 - win32/vc9/oneD/oneD.vcproj | 326 - win32/vc9/prepreconfig.vc++ | 102 - win32/vc9/silane_equil/silane_equil.vcproj | 206 - win32/vc9/spectra/spectra.vcproj | 186 - win32/vc9/surfkin/surfkin.sln | 20 - win32/vc9/surfkin/surfkin.vcproj | 205 - win32/vc9/thermo/docopy.cmd | 76 - win32/vc9/thermo/thermo.vcproj | 718 - win32/vc9/tpx/tpx.vcproj | 339 - win32/vc9/transport/docopy.cmd | 24 - win32/vc9/transport/transport.vcproj | 334 - win32/vc9/zeroD/docopy.cmd | 22 - win32/vc9/zeroD/zeroD.vcproj | 325 - 728 files changed, 113 insertions(+), 148169 deletions(-) rename {ext => Cantera/ext}/Makefile.am (100%) rename {ext => Cantera/ext}/blas/Makefile.am (100%) rename {ext => Cantera/ext}/blas/dasum.f (100%) rename {ext => Cantera/ext}/blas/daxpy.f (100%) rename {ext => Cantera/ext}/blas/dcabs1.f (100%) rename {ext => Cantera/ext}/blas/dcopy.f (100%) rename {ext => Cantera/ext}/blas/ddot.f (100%) rename {ext => Cantera/ext}/blas/dgbmv.f (100%) rename {ext => Cantera/ext}/blas/dgemm.f (100%) rename {ext => Cantera/ext}/blas/dgemv.f (100%) rename {ext => Cantera/ext}/blas/dger.f (100%) rename {ext => Cantera/ext}/blas/dnrm2.f (100%) rename {ext => Cantera/ext}/blas/drot.f (100%) rename {ext => Cantera/ext}/blas/drotg.f (100%) rename {ext => Cantera/ext}/blas/drotm.f (100%) rename {ext => Cantera/ext}/blas/drotmg.f (100%) rename {ext => Cantera/ext}/blas/dsbmv.f (100%) rename {ext => Cantera/ext}/blas/dscal.f (100%) rename {ext => Cantera/ext}/blas/dsdot.f (100%) rename {ext => Cantera/ext}/blas/dspmv.f (100%) rename {ext => Cantera/ext}/blas/dspr.f (100%) rename {ext => Cantera/ext}/blas/dspr2.f (100%) rename {ext => Cantera/ext}/blas/dswap.f (100%) rename {ext => Cantera/ext}/blas/dsymm.f (100%) rename {ext => Cantera/ext}/blas/dsymv.f (100%) rename {ext => Cantera/ext}/blas/dsyr.f (100%) rename {ext => Cantera/ext}/blas/dsyr2.f (100%) rename {ext => Cantera/ext}/blas/dsyr2k.f (100%) rename {ext => Cantera/ext}/blas/dsyrk.f (100%) rename {ext => Cantera/ext}/blas/dtbmv.f (100%) rename {ext => Cantera/ext}/blas/dtbsv.f (100%) rename {ext => Cantera/ext}/blas/dtpmv.f (100%) rename {ext => Cantera/ext}/blas/dtpsv.f (100%) rename {ext => Cantera/ext}/blas/dtrmm.f (100%) rename {ext => Cantera/ext}/blas/dtrmv.f (100%) rename {ext => Cantera/ext}/blas/dtrsm.f (100%) rename {ext => Cantera/ext}/blas/dtrsv.f (100%) rename {ext => Cantera/ext}/blas/dzasum.f (100%) rename {ext => Cantera/ext}/blas/dznrm2.f (100%) rename {ext => Cantera/ext}/blas/icamax.f (100%) rename {ext => Cantera/ext}/blas/idamax.f (100%) rename {ext => Cantera/ext}/blas/isamax.f (100%) rename {ext => Cantera/ext}/blas/izamax.f (100%) rename {ext => Cantera/ext}/blas/lsame.f (100%) rename {ext => Cantera/ext}/blas/xerbla.f (100%) rename {ext => Cantera/ext}/cvode/Makefile.am (100%) rename {ext => Cantera/ext}/cvode/band.c (100%) rename {ext => Cantera/ext}/cvode/band.h (100%) rename {ext => Cantera/ext}/cvode/cvband.c (100%) rename {ext => Cantera/ext}/cvode/cvband.h (100%) rename {ext => Cantera/ext}/cvode/cvbandpre.c (100%) rename {ext => Cantera/ext}/cvode/cvbandpre.h (100%) rename {ext => Cantera/ext}/cvode/cvdense.c (100%) rename {ext => Cantera/ext}/cvode/cvdense.h (100%) rename {ext => Cantera/ext}/cvode/cvdiag.c (100%) rename {ext => Cantera/ext}/cvode/cvdiag.h (100%) rename {ext => Cantera/ext}/cvode/cvode.c (100%) rename {ext => Cantera/ext}/cvode/cvode.h (100%) rename {ext => Cantera/ext}/cvode/cvspgmr.c (100%) rename {ext => Cantera/ext}/cvode/cvspgmr.h (100%) rename {ext => Cantera/ext}/cvode/dense.c (100%) rename {ext => Cantera/ext}/cvode/dense.h (100%) rename {ext => Cantera/ext}/cvode/iterativ.c (100%) rename {ext => Cantera/ext}/cvode/iterativ.h (100%) rename {ext => Cantera/ext}/cvode/llnlmath.c (100%) rename {ext => Cantera/ext}/cvode/llnlmath.h (100%) rename {ext => Cantera/ext}/cvode/llnltyps.h (100%) rename {ext => Cantera/ext}/cvode/nvector.c (100%) rename {ext => Cantera/ext}/cvode/nvector.h (100%) rename {ext => Cantera/ext}/cvode/spgmr.c (100%) rename {ext => Cantera/ext}/cvode/spgmr.h (100%) rename {ext => Cantera/ext}/f2c_blas/Makefile.am (100%) rename {ext => Cantera/ext}/f2c_blas/blaswrap.h (100%) rename {ext => Cantera/ext}/f2c_blas/dasum.c (100%) rename {ext => Cantera/ext}/f2c_blas/daxpy.c (100%) rename {ext => Cantera/ext}/f2c_blas/dcabs1.c (100%) rename {ext => Cantera/ext}/f2c_blas/dcopy.c (100%) rename {ext => Cantera/ext}/f2c_blas/ddot.c (100%) rename {ext => Cantera/ext}/f2c_blas/dgbmv.c (100%) rename {ext => Cantera/ext}/f2c_blas/dgemm.c (100%) rename {ext => Cantera/ext}/f2c_blas/dgemv.c (100%) rename {ext => Cantera/ext}/f2c_blas/dger.c (100%) rename {ext => Cantera/ext}/f2c_blas/dnrm2.c (100%) rename {ext => Cantera/ext}/f2c_blas/drot.c (100%) rename {ext => Cantera/ext}/f2c_blas/drotg.c (100%) rename {ext => Cantera/ext}/f2c_blas/drotm.c (100%) rename {ext => Cantera/ext}/f2c_blas/drotmg.c (100%) rename {ext => Cantera/ext}/f2c_blas/dsbmv.c (100%) rename {ext => Cantera/ext}/f2c_blas/dscal.c (100%) rename {ext => Cantera/ext}/f2c_blas/dsdot.c (100%) rename {ext => Cantera/ext}/f2c_blas/dspmv.c (100%) rename {ext => Cantera/ext}/f2c_blas/dspr.c (100%) rename {ext => Cantera/ext}/f2c_blas/dspr2.c (100%) rename {ext => Cantera/ext}/f2c_blas/dswap.c (100%) rename {ext => Cantera/ext}/f2c_blas/dsymm.c (100%) rename {ext => Cantera/ext}/f2c_blas/dsymv.c (100%) rename {ext => Cantera/ext}/f2c_blas/dsyr.c (100%) rename {ext => Cantera/ext}/f2c_blas/dsyr2.c (100%) rename {ext => Cantera/ext}/f2c_blas/dsyr2k.c (100%) rename {ext => Cantera/ext}/f2c_blas/dsyrk.c (100%) rename {ext => Cantera/ext}/f2c_blas/dtbmv.c (100%) rename {ext => Cantera/ext}/f2c_blas/dtbsv.c (100%) rename {ext => Cantera/ext}/f2c_blas/dtpmv.c (100%) rename {ext => Cantera/ext}/f2c_blas/dtpsv.c (100%) rename {ext => Cantera/ext}/f2c_blas/dtrmm.c (100%) rename {ext => Cantera/ext}/f2c_blas/dtrmv.c (100%) rename {ext => Cantera/ext}/f2c_blas/dtrsm.c (100%) rename {ext => Cantera/ext}/f2c_blas/dtrsv.c (100%) rename {ext => Cantera/ext}/f2c_blas/dzasum.c (100%) rename {ext => Cantera/ext}/f2c_blas/dznrm2.c (100%) rename {ext => Cantera/ext}/f2c_blas/idamax.c (100%) rename {ext => Cantera/ext}/f2c_blas/isamax.c (100%) rename {ext => Cantera/ext}/f2c_blas/lsame.c (100%) rename {ext => Cantera/ext}/f2c_blas/xerbla.c (100%) rename {ext => Cantera/ext}/f2c_lapack/Makefile.am (100%) rename {ext => Cantera/ext}/f2c_lapack/blaswrap.h (100%) rename {ext => Cantera/ext}/f2c_lapack/dbdsqr.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgbrfs.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgbsv.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgbsvx.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgbtf2.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgbtrf.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgbtrs.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgebak.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgebal.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgebd2.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgebrd.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgelq2.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgelqf.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgels.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgelsd.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgelss.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgelsx.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgelsy.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgeqr2.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgeqrf.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgetf2.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgetrf.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgetri.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dgetrs.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlabad.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlabrd.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlacpy.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlamch.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlange.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlapy2.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlarf.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlarfb.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlarfg.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlarft.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlartg.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlas2.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlascl.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlaset.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlasq1.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlasq2.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlasq3.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlasq4.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlasq5.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlasq6.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlasr.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlasrt.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlassq.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlasv2.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dlaswp.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dorg2r.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dorgbr.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dorgl2.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dorglq.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dorgqr.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dorm2r.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dormbr.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dorml2.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dormlq.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dormqr.c (100%) rename {ext => Cantera/ext}/f2c_lapack/drscl.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dtrti2.c (100%) rename {ext => Cantera/ext}/f2c_lapack/dtrtri.c (100%) rename {ext => Cantera/ext}/f2c_lapack/ieeeck.c (100%) rename {ext => Cantera/ext}/f2c_lapack/ilaenv.c (100%) rename {ext => Cantera/ext}/f2c_lapack/lsame.c (100%) rename {ext => Cantera/ext}/f2c_libs/Makefile.am (94%) rename {ext => Cantera/ext}/f2c_libs/abort_.c (100%) create mode 100644 Cantera/ext/f2c_libs/arith.h rename {ext => Cantera/ext}/f2c_libs/arith.hwin32 (100%) rename {ext => Cantera/ext}/f2c_libs/arithchk.c (100%) rename {ext => Cantera/ext}/f2c_libs/backspac.c (100%) rename {ext => Cantera/ext}/f2c_libs/c_abs.c (100%) rename {ext => Cantera/ext}/f2c_libs/c_cos.c (100%) rename {ext => Cantera/ext}/f2c_libs/c_div.c (100%) rename {ext => Cantera/ext}/f2c_libs/c_exp.c (100%) rename {ext => Cantera/ext}/f2c_libs/c_log.c (100%) rename {ext => Cantera/ext}/f2c_libs/c_sin.c (100%) rename {ext => Cantera/ext}/f2c_libs/c_sqrt.c (100%) rename {ext => Cantera/ext}/f2c_libs/cabs.c (100%) rename {ext => Cantera/ext}/f2c_libs/close.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_abs.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_acos.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_asin.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_atan.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_atn2.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_cnjg.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_cos.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_cosh.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_dim.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_exp.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_imag.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_int.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_lg10.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_log.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_mod.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_nint.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_prod.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_sign.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_sin.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_sinh.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_sqrt.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_tan.c (100%) rename {ext => Cantera/ext}/f2c_libs/d_tanh.c (100%) rename {ext => Cantera/ext}/f2c_libs/derf_.c (100%) rename {ext => Cantera/ext}/f2c_libs/derfc_.c (100%) rename {ext => Cantera/ext}/f2c_libs/dfe.c (100%) rename {ext => Cantera/ext}/f2c_libs/dolio.c (100%) rename {ext => Cantera/ext}/f2c_libs/dtime_.c (100%) rename {ext => Cantera/ext}/f2c_libs/due.c (100%) rename {ext => Cantera/ext}/f2c_libs/ef1asc_.c (100%) rename {ext => Cantera/ext}/f2c_libs/ef1cmc_.c (100%) rename {ext => Cantera/ext}/f2c_libs/endfile.c (100%) rename {ext => Cantera/ext}/f2c_libs/erf_.c (100%) rename {ext => Cantera/ext}/f2c_libs/erfc_.c (100%) rename {ext => Cantera/ext}/f2c_libs/err.c (100%) rename {ext => Cantera/ext}/f2c_libs/etime_.c (100%) rename {ext => Cantera/ext}/f2c_libs/exit_.c (100%) rename {ext => Cantera/ext}/f2c_libs/f2c.h (100%) rename {ext => Cantera/ext}/f2c_libs/f2c.h0 (100%) rename {ext => Cantera/ext}/f2c_libs/f2ch.add (100%) rename {ext => Cantera/ext}/f2c_libs/f77_aloc.c (100%) rename {ext => Cantera/ext}/f2c_libs/f77vers.c (100%) rename {ext => Cantera/ext}/f2c_libs/fio.h (100%) rename {ext => Cantera/ext}/f2c_libs/fmt.c (100%) rename {ext => Cantera/ext}/f2c_libs/fmt.h (100%) rename {ext => Cantera/ext}/f2c_libs/fmtlib.c (100%) rename {ext => Cantera/ext}/f2c_libs/fp.h (100%) rename {ext => Cantera/ext}/f2c_libs/ftell64_.c (100%) rename {ext => Cantera/ext}/f2c_libs/ftell_.c (100%) rename {ext => Cantera/ext}/f2c_libs/getarg_.c (100%) rename {ext => Cantera/ext}/f2c_libs/getenv_.c (100%) rename {ext => Cantera/ext}/f2c_libs/h_abs.c (100%) rename {ext => Cantera/ext}/f2c_libs/h_dim.c (100%) rename {ext => Cantera/ext}/f2c_libs/h_dnnt.c (100%) rename {ext => Cantera/ext}/f2c_libs/h_indx.c (100%) rename {ext => Cantera/ext}/f2c_libs/h_len.c (100%) rename {ext => Cantera/ext}/f2c_libs/h_mod.c (100%) rename {ext => Cantera/ext}/f2c_libs/h_nint.c (100%) rename {ext => Cantera/ext}/f2c_libs/h_sign.c (100%) rename {ext => Cantera/ext}/f2c_libs/hl_ge.c (100%) rename {ext => Cantera/ext}/f2c_libs/hl_gt.c (100%) rename {ext => Cantera/ext}/f2c_libs/hl_le.c (100%) rename {ext => Cantera/ext}/f2c_libs/hl_lt.c (100%) rename {ext => Cantera/ext}/f2c_libs/i77vers.c (100%) rename {ext => Cantera/ext}/f2c_libs/i_abs.c (100%) rename {ext => Cantera/ext}/f2c_libs/i_dim.c (100%) rename {ext => Cantera/ext}/f2c_libs/i_dnnt.c (100%) rename {ext => Cantera/ext}/f2c_libs/i_indx.c (100%) rename {ext => Cantera/ext}/f2c_libs/i_len.c (100%) rename {ext => Cantera/ext}/f2c_libs/i_mod.c (100%) rename {ext => Cantera/ext}/f2c_libs/i_nint.c (100%) rename {ext => Cantera/ext}/f2c_libs/i_sign.c (100%) rename {ext => Cantera/ext}/f2c_libs/iargc_.c (100%) rename {ext => Cantera/ext}/f2c_libs/iio.c (100%) rename {ext => Cantera/ext}/f2c_libs/ilnw.c (100%) rename {ext => Cantera/ext}/f2c_libs/inquire.c (100%) rename {ext => Cantera/ext}/f2c_libs/l_ge.c (100%) rename {ext => Cantera/ext}/f2c_libs/l_gt.c (100%) rename {ext => Cantera/ext}/f2c_libs/l_le.c (100%) rename {ext => Cantera/ext}/f2c_libs/l_lt.c (100%) rename {ext => Cantera/ext}/f2c_libs/lbitbits.c (100%) rename {ext => Cantera/ext}/f2c_libs/lbitshft.c (100%) rename {ext => Cantera/ext}/f2c_libs/lio.h (100%) rename {ext => Cantera/ext}/f2c_libs/lread.c (100%) rename {ext => Cantera/ext}/f2c_libs/lwrite.c (100%) rename {ext => Cantera/ext}/f2c_libs/main.c (100%) rename {ext => Cantera/ext}/f2c_libs/open.c (100%) rename {ext => Cantera/ext}/f2c_libs/pow_ci.c (100%) rename {ext => Cantera/ext}/f2c_libs/pow_dd.c (100%) rename {ext => Cantera/ext}/f2c_libs/pow_di.c (100%) rename {ext => Cantera/ext}/f2c_libs/pow_hh.c (100%) rename {ext => Cantera/ext}/f2c_libs/pow_ii.c (100%) rename {ext => Cantera/ext}/f2c_libs/pow_qq.c (100%) rename {ext => Cantera/ext}/f2c_libs/pow_ri.c (100%) rename {ext => Cantera/ext}/f2c_libs/pow_zi.c (100%) rename {ext => Cantera/ext}/f2c_libs/pow_zz.c (100%) rename {ext => Cantera/ext}/f2c_libs/qbitbits.c (100%) rename {ext => Cantera/ext}/f2c_libs/qbitshft.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_abs.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_acos.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_asin.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_atan.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_atn2.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_cnjg.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_cos.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_cosh.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_dim.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_exp.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_imag.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_int.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_lg10.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_log.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_mod.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_nint.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_sign.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_sin.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_sinh.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_sqrt.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_tan.c (100%) rename {ext => Cantera/ext}/f2c_libs/r_tanh.c (100%) rename {ext => Cantera/ext}/f2c_libs/rawio.h (100%) rename {ext => Cantera/ext}/f2c_libs/rdfmt.c (100%) rename {ext => Cantera/ext}/f2c_libs/rewind.c (100%) rename {ext => Cantera/ext}/f2c_libs/rsfe.c (100%) rename {ext => Cantera/ext}/f2c_libs/rsli.c (100%) rename {ext => Cantera/ext}/f2c_libs/rsne.c (100%) rename {ext => Cantera/ext}/f2c_libs/s_cat.c (100%) rename {ext => Cantera/ext}/f2c_libs/s_cmp.c (100%) rename {ext => Cantera/ext}/f2c_libs/s_copy.c (100%) rename {ext => Cantera/ext}/f2c_libs/s_paus.c (100%) rename {ext => Cantera/ext}/f2c_libs/s_rnge.c (100%) rename {ext => Cantera/ext}/f2c_libs/s_stop.c (100%) rename {ext => Cantera/ext}/f2c_libs/sfe.c (100%) rename {ext => Cantera/ext}/f2c_libs/sig_die.c (100%) rename {ext => Cantera/ext}/f2c_libs/signal1.h0 (100%) rename {ext => Cantera/ext}/f2c_libs/signal_.c (100%) rename {ext => Cantera/ext}/f2c_libs/signbit.c (100%) rename {ext => Cantera/ext}/f2c_libs/sue.c (100%) rename {ext => Cantera/ext}/f2c_libs/sysdep1.h0 (100%) rename {ext => Cantera/ext}/f2c_libs/system_.c (100%) rename {ext => Cantera/ext}/f2c_libs/typesize.c (100%) rename {ext => Cantera/ext}/f2c_libs/uio.c (100%) rename {ext => Cantera/ext}/f2c_libs/uninit.c (100%) rename {ext => Cantera/ext}/f2c_libs/util.c (100%) rename {ext => Cantera/ext}/f2c_libs/wref.c (100%) rename {ext => Cantera/ext}/f2c_libs/wrtfmt.c (100%) rename {ext => Cantera/ext}/f2c_libs/wsfe.c (100%) rename {ext => Cantera/ext}/f2c_libs/wsle.c (100%) rename {ext => Cantera/ext}/f2c_libs/wsne.c (100%) rename {ext => Cantera/ext}/f2c_libs/xwsne.c (100%) rename {ext => Cantera/ext}/f2c_libs/z_abs.c (100%) rename {ext => Cantera/ext}/f2c_libs/z_cos.c (100%) rename {ext => Cantera/ext}/f2c_libs/z_div.c (100%) rename {ext => Cantera/ext}/f2c_libs/z_exp.c (100%) rename {ext => Cantera/ext}/f2c_libs/z_log.c (100%) rename {ext => Cantera/ext}/f2c_libs/z_sin.c (100%) rename {ext => Cantera/ext}/f2c_libs/z_sqrt.c (100%) rename {ext => Cantera/ext}/f2c_math/Makefile.am (100%) rename {ext => Cantera/ext}/f2c_math/cblas.h (100%) rename {ext => Cantera/ext}/f2c_math/daux.c (100%) rename {ext => Cantera/ext}/f2c_math/ddaspk.c (100%) rename {ext => Cantera/ext}/f2c_math/dgbefa.c (100%) rename {ext => Cantera/ext}/f2c_math/dgbsl.c (100%) rename {ext => Cantera/ext}/f2c_math/dgefa.c (100%) rename {ext => Cantera/ext}/f2c_math/dgesl.c (100%) rename {ext => Cantera/ext}/f2c_math/dp1vlu.c (100%) rename {ext => Cantera/ext}/f2c_math/dpcoef.c (100%) rename {ext => Cantera/ext}/f2c_math/dpolft.c (100%) rename {ext => Cantera/ext}/f2c_math/fdump.c (100%) rename {ext => Cantera/ext}/f2c_math/gmres.h (100%) rename {ext => Cantera/ext}/f2c_math/idamax.c (100%) rename {ext => Cantera/ext}/f2c_math/j4save.c (100%) rename {ext => Cantera/ext}/f2c_math/mach.cpp (100%) rename {ext => Cantera/ext}/f2c_math/mkl_cblas.h (100%) rename {ext => Cantera/ext}/f2c_math/pcoef.c (100%) rename {ext => Cantera/ext}/f2c_math/polfit.c (100%) rename {ext => Cantera/ext}/f2c_math/printstring.c (100%) rename {ext => Cantera/ext}/f2c_math/pvalue.c (100%) rename {ext => Cantera/ext}/f2c_math/xercnt.c (100%) rename {ext => Cantera/ext}/f2c_math/xerhlt.c (100%) rename {ext => Cantera/ext}/f2c_math/xermsg.c (100%) rename {ext => Cantera/ext}/f2c_math/xerprn.c (100%) rename {ext => Cantera/ext}/f2c_math/xersve.c (100%) rename {ext => Cantera/ext}/f2c_math/xgetua.c (100%) rename {ext => Cantera/ext}/f2c_recipes/Makefile.in (100%) rename {ext => Cantera/ext}/f2c_recipes/simp1.c (100%) rename {ext => Cantera/ext}/f2c_recipes/simp2.c (100%) rename {ext => Cantera/ext}/f2c_recipes/simp3.c (100%) rename {ext => Cantera/ext}/f2c_recipes/simplx.c (100%) rename {ext => Cantera/ext}/f2c_recipes/splie2.c (100%) rename {ext => Cantera/ext}/f2c_recipes/splin2.c (100%) rename {ext => Cantera/ext}/f2c_recipes/spline.c (100%) rename {ext => Cantera/ext}/f2c_recipes/splint.c (100%) rename {ext => Cantera/ext}/lapack/Makefile.am (100%) rename {ext => Cantera/ext}/lapack/dbdsqr.f (100%) rename {ext => Cantera/ext}/lapack/dgbsv.f (100%) rename {ext => Cantera/ext}/lapack/dgbtf2.f (100%) rename {ext => Cantera/ext}/lapack/dgbtrf.f (100%) rename {ext => Cantera/ext}/lapack/dgbtrs.f (100%) rename {ext => Cantera/ext}/lapack/dgebd2.f (100%) rename {ext => Cantera/ext}/lapack/dgebrd.f (100%) rename {ext => Cantera/ext}/lapack/dgelq2.f (100%) rename {ext => Cantera/ext}/lapack/dgelqf.f (100%) rename {ext => Cantera/ext}/lapack/dgelss.f (100%) rename {ext => Cantera/ext}/lapack/dgeqr2.f (100%) rename {ext => Cantera/ext}/lapack/dgeqrf.f (100%) rename {ext => Cantera/ext}/lapack/dgetf2.f (100%) rename {ext => Cantera/ext}/lapack/dgetrf.f (100%) rename {ext => Cantera/ext}/lapack/dgetri.f (100%) rename {ext => Cantera/ext}/lapack/dgetrs.f (100%) rename {ext => Cantera/ext}/lapack/dlabad.f (100%) rename {ext => Cantera/ext}/lapack/dlabrd.f (100%) rename {ext => Cantera/ext}/lapack/dlacpy.f (100%) rename {ext => Cantera/ext}/lapack/dlamch.f (100%) rename {ext => Cantera/ext}/lapack/dlange.f (100%) rename {ext => Cantera/ext}/lapack/dlapy2.f (100%) rename {ext => Cantera/ext}/lapack/dlarf.f (100%) rename {ext => Cantera/ext}/lapack/dlarfb.f (100%) rename {ext => Cantera/ext}/lapack/dlarfg.f (100%) rename {ext => Cantera/ext}/lapack/dlarft.f (100%) rename {ext => Cantera/ext}/lapack/dlartg.f (100%) rename {ext => Cantera/ext}/lapack/dlas2.f (100%) rename {ext => Cantera/ext}/lapack/dlascl.f (100%) rename {ext => Cantera/ext}/lapack/dlaset.f (100%) rename {ext => Cantera/ext}/lapack/dlasq1.f (100%) rename {ext => Cantera/ext}/lapack/dlasq2.f (100%) rename {ext => Cantera/ext}/lapack/dlasq3.f (100%) rename {ext => Cantera/ext}/lapack/dlasq4.f (100%) rename {ext => Cantera/ext}/lapack/dlasr.f (100%) rename {ext => Cantera/ext}/lapack/dlasrt.f (100%) rename {ext => Cantera/ext}/lapack/dlassq.f (100%) rename {ext => Cantera/ext}/lapack/dlasv2.f (100%) rename {ext => Cantera/ext}/lapack/dlaswp.f (100%) rename {ext => Cantera/ext}/lapack/dorg2r.f (100%) rename {ext => Cantera/ext}/lapack/dorgbr.f (100%) rename {ext => Cantera/ext}/lapack/dorgl2.f (100%) rename {ext => Cantera/ext}/lapack/dorglq.f (100%) rename {ext => Cantera/ext}/lapack/dorgqr.f (100%) rename {ext => Cantera/ext}/lapack/dorm2r.f (100%) rename {ext => Cantera/ext}/lapack/dormbr.f (100%) rename {ext => Cantera/ext}/lapack/dorml2.f (100%) rename {ext => Cantera/ext}/lapack/dormlq.f (100%) rename {ext => Cantera/ext}/lapack/dormqr.f (100%) rename {ext => Cantera/ext}/lapack/drscl.f (100%) rename {ext => Cantera/ext}/lapack/ilaenv.f (100%) rename {ext => Cantera/ext}/lapack/lsame.f (100%) rename {ext => Cantera/ext}/lapack/xerbla.f (100%) rename {ext => Cantera/ext}/math/Makefile.am (100%) rename {ext => Cantera/ext}/math/cblas.h (100%) rename {ext => Cantera/ext}/math/daux.f (100%) rename {ext => Cantera/ext}/math/ddaspk.f (100%) rename {ext => Cantera/ext}/math/dgbefa.f (100%) rename {ext => Cantera/ext}/math/dgbfa.f (100%) rename {ext => Cantera/ext}/math/dgbsl.f (100%) rename {ext => Cantera/ext}/math/dgefa.f (100%) rename {ext => Cantera/ext}/math/dgesl.f (100%) rename {ext => Cantera/ext}/math/dp1vlu.f (100%) rename {ext => Cantera/ext}/math/dpcoef.f (100%) rename {ext => Cantera/ext}/math/dpolft.f (100%) rename {ext => Cantera/ext}/math/fdump.f (100%) rename {ext => Cantera/ext}/math/gmres.h (100%) rename {ext => Cantera/ext}/math/idamax.f (100%) rename {ext => Cantera/ext}/math/j4save.f (100%) rename {ext => Cantera/ext}/math/mach.cpp (100%) rename {ext => Cantera/ext}/math/mkl_cblas.h (100%) rename {ext => Cantera/ext}/math/pcoef.f (100%) rename {ext => Cantera/ext}/math/polfit.f (100%) rename {ext => Cantera/ext}/math/printstring.c (100%) rename {ext => Cantera/ext}/math/pvalue.f (100%) rename {ext => Cantera/ext}/math/xercnt.f (100%) rename {ext => Cantera/ext}/math/xerhlt.f (100%) rename {ext => Cantera/ext}/math/xermsg.f (100%) rename {ext => Cantera/ext}/math/xerprn.f (100%) rename {ext => Cantera/ext}/math/xersve.f (100%) rename {ext => Cantera/ext}/math/xgetua.f (100%) rename {ext => Cantera/ext}/recipes/Makefile.in (100%) rename {ext => Cantera/ext}/recipes/simp1.f (100%) rename {ext => Cantera/ext}/recipes/simp2.f (100%) rename {ext => Cantera/ext}/recipes/simp3.f (100%) rename {ext => Cantera/ext}/recipes/simplx.f (100%) rename {ext => Cantera/ext}/recipes/splie2.f (100%) rename {ext => Cantera/ext}/recipes/splin2.f (100%) rename {ext => Cantera/ext}/recipes/spline.f (100%) rename {ext => Cantera/ext}/recipes/splint.f (100%) rename {ext => Cantera/ext}/tpx/CMakeLists.txt (100%) rename {ext => Cantera/ext}/tpx/CarbonDioxide.cpp (100%) rename {ext => Cantera/ext}/tpx/CarbonDioxide.h (100%) rename {ext => Cantera/ext}/tpx/HFC134a.cpp (100%) rename {ext => Cantera/ext}/tpx/HFC134a.h (100%) rename {ext => Cantera/ext}/tpx/Heptane.cpp (100%) rename {ext => Cantera/ext}/tpx/Heptane.h (100%) rename {ext => Cantera/ext}/tpx/Hydrogen.cpp (100%) rename {ext => Cantera/ext}/tpx/Hydrogen.h (100%) rename {ext => Cantera/ext}/tpx/Makefile.am (100%) rename {ext => Cantera/ext}/tpx/Methane.cpp (100%) rename {ext => Cantera/ext}/tpx/Methane.h (100%) rename {ext => Cantera/ext}/tpx/Nitrogen.cpp (100%) rename {ext => Cantera/ext}/tpx/Nitrogen.h (100%) rename {ext => Cantera/ext}/tpx/Oxygen.cpp (100%) rename {ext => Cantera/ext}/tpx/Oxygen.h (100%) rename {ext => Cantera/ext}/tpx/RedlichKwong.cpp (100%) rename {ext => Cantera/ext}/tpx/RedlichKwong.h (100%) rename {ext => Cantera/ext}/tpx/Sub.cpp (100%) rename {ext => Cantera/ext}/tpx/Sub.h (100%) rename {ext => Cantera/ext}/tpx/Water.cpp (100%) rename {ext => Cantera/ext}/tpx/Water.h (100%) rename {ext => Cantera/ext}/tpx/ideal.cpp (100%) rename {ext => Cantera/ext}/tpx/lk.cpp (100%) rename {ext => Cantera/ext}/tpx/lk.h (100%) rename {ext => Cantera/ext}/tpx/lkw.cpp (100%) rename {ext => Cantera/ext}/tpx/lkw.h (100%) rename {ext => Cantera/ext}/tpx/mix.h (100%) rename {ext => Cantera/ext}/tpx/subs.h (100%) rename {ext => Cantera/ext}/tpx/utils.cpp (100%) rename {ext => Cantera/ext}/tpx/utils.h (100%) delete mode 100755 Cantera/lib/README delete mode 100644 win32/README.vc7 delete mode 100644 win32/README.vc8 delete mode 100644 win32/vc6/all/all.dsp delete mode 100755 win32/vc6/blas/blas.dsp delete mode 100755 win32/vc6/cantera.dsw delete mode 100755 win32/vc6/cantera/cantera.dsp delete mode 100755 win32/vc6/cantera_examples/cantera_examples.dsw delete mode 100644 win32/vc6/ck2cti/ck2cti.dsp delete mode 100755 win32/vc6/ckreader/ckreader.dsp delete mode 100644 win32/vc6/clib/clib.dsp delete mode 100644 win32/vc6/converters/converters.dsp delete mode 100755 win32/vc6/ct/ct.dsp delete mode 100755 win32/vc6/ctmath/ctmath.dsp delete mode 100755 win32/vc6/ctsetup/ctsetup.dsp delete mode 100755 win32/vc6/cvode/cvode.dsp delete mode 100644 win32/vc6/cxxutils/cxxutils.dsp delete mode 100644 win32/vc6/cxxutils/cxxutils.mak delete mode 100755 win32/vc6/lapack/lapack.dsp delete mode 100644 win32/vc6/oneD/oneD.dsp delete mode 100755 win32/vc6/recipes/recipes.dsp delete mode 100644 win32/vc6/tpx/tpx.dsp delete mode 100644 win32/vc6/tpx/tpx.mak delete mode 100644 win32/vc6/transport/transport.dsp delete mode 100644 win32/vc6/zeroD/zeroD.dsp delete mode 100755 win32/vc7/SetupCantera/SetupCantera.vdproj delete mode 100755 win32/vc7/SetupCantera/SetupCanteraLite.vdproj delete mode 100644 win32/vc7/Sundials/CVODES/CVODES.vcproj delete mode 100644 win32/vc7/Sundials/CVODES_DENSE/CVODES_DENSE.vcproj delete mode 100644 win32/vc7/Sundials/IDA/IDA.vcproj delete mode 100644 win32/vc7/Sundials/KINSOL/KINSOL.vcproj delete mode 100644 win32/vc7/Sundials/NVEC_SER/NVEC_SER.vcproj delete mode 100644 win32/vc7/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj delete mode 100644 win32/vc7/Sundials/sundials/sundials_config.h delete mode 100755 win32/vc7/base/base.vcproj delete mode 100755 win32/vc7/cantera.sln delete mode 100755 win32/vc7/cantera/cantera.vcproj delete mode 100755 win32/vc7/cantera_examples.sln delete mode 100755 win32/vc7/cantera_no_sundials.sln delete mode 100755 win32/vc7/ck2cti/ck2cti.vcproj delete mode 100755 win32/vc7/clib/clib.vcproj delete mode 100755 win32/vc7/config_h/config_h.vcproj delete mode 100644 win32/vc7/config_h/docopy.cmd delete mode 100755 win32/vc7/configure.vc++ delete mode 100755 win32/vc7/converters/converters.vcproj delete mode 100755 win32/vc7/csvdiff/csvdiff.vcproj delete mode 100755 win32/vc7/cti2ctml/cti2ctml.vcproj delete mode 100755 win32/vc7/ctmatlab/ctmatlab.vcproj delete mode 100755 win32/vc7/ctmatlab/runmlab.cmd delete mode 100755 win32/vc7/ctpython/ctpython.vcproj delete mode 100755 win32/vc7/ctpython/runpython.cmd delete mode 100755 win32/vc7/cvode/cvode.vcproj delete mode 100755 win32/vc7/cxx_examples/cxx_examples.vcproj delete mode 100755 win32/vc7/cxxutils/cxxutils.vcproj delete mode 100755 win32/vc7/demos/CanteraDemos.sln delete mode 100644 win32/vc7/demos/NASA_coeffs.vcproj delete mode 100755 win32/vc7/demos/Rankine.vcproj delete mode 100755 win32/vc7/demos/ReadMe.txt delete mode 100644 win32/vc7/demos/combustor.vcproj delete mode 100755 win32/vc7/demos/demo.vcproj delete mode 100644 win32/vc7/demos/flamespeed.vcproj delete mode 100644 win32/vc7/demos/kinetics1.vcproj delete mode 100755 win32/vc7/diamondSurf/diamondSurf.vcproj delete mode 100755 win32/vc7/f2c_arithchk/f2c_arithchk.vcproj delete mode 100755 win32/vc7/f2c_blas/f2c_blas.vcproj delete mode 100755 win32/vc7/f2c_lapack/f2c_lapack.vcproj delete mode 100755 win32/vc7/f2c_libs/f2c_libs.vcproj delete mode 100755 win32/vc7/f2c_math/f2c_math.vcproj delete mode 100755 win32/vc7/f2c_recipes/f2c_recipes.vcproj delete mode 100755 win32/vc7/oneD/oneD.vcproj delete mode 100755 win32/vc7/prepreconfig.vc++ delete mode 100755 win32/vc7/pycantera/pycantera.vcproj delete mode 100755 win32/vc7/silane_equil/silane_equil.vcproj delete mode 100755 win32/vc7/surfkin/surfkin.vcproj delete mode 100755 win32/vc7/tpx/tpx.vcproj delete mode 100755 win32/vc7/transport/transport.vcproj delete mode 100755 win32/vc7/zeroD/zeroD.vcproj delete mode 100755 win32/vc8/SetupAlt/SetupAlt.vdproj delete mode 100755 win32/vc8/SetupCantera/SetupCantera.vdproj delete mode 100755 win32/vc8/SetupCantera/SetupCanteraLite.vdproj delete mode 100644 win32/vc8/Sundials/CVODES/.cvsignore delete mode 100755 win32/vc8/Sundials/CVODES/CVODES.vcproj delete mode 100644 win32/vc8/Sundials/NVEC_SER/.cvsignore delete mode 100755 win32/vc8/Sundials/NVEC_SER/NVEC_SER.vcproj delete mode 100644 win32/vc8/Sundials/SUNDIALS_SHARED/.cvsignore delete mode 100755 win32/vc8/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj delete mode 100755 win32/vc8/base/base.vcproj delete mode 100755 win32/vc8/base_h/base_h.vcproj delete mode 100755 win32/vc8/base_h/docopy.cmd delete mode 100755 win32/vc8/cantera.sln delete mode 100755 win32/vc8/cantera_examples.sln delete mode 100755 win32/vc8/cantera_no_sundials.sln delete mode 100755 win32/vc8/ck2cti/ck2cti.vcproj delete mode 100755 win32/vc8/clib/clib.vcproj delete mode 100755 win32/vc8/config_h/config_h.vcproj delete mode 100755 win32/vc8/config_h/docopy.cmd delete mode 100755 win32/vc8/converters/converters.vcproj delete mode 100755 win32/vc8/csvdiff/csvdiff.vcproj delete mode 100755 win32/vc8/cti2ctml/cti2ctml.vcproj delete mode 100755 win32/vc8/ctmatlab/ctmatlab.vcproj delete mode 100755 win32/vc8/ctmatlab/runmlab.cmd delete mode 100755 win32/vc8/ctpython/ctpython.vcproj delete mode 100755 win32/vc8/ctpython/runpython.cmd delete mode 100755 win32/vc8/cvode/cvode.vcproj delete mode 100755 win32/vc8/cxx_examples/cxx_examples.vcproj delete mode 100755 win32/vc8/cxxutils/cxxutils.vcproj delete mode 100755 win32/vc8/demos/CanteraDemos.sln delete mode 100755 win32/vc8/demos/NASA_coeffs.vcproj delete mode 100755 win32/vc8/demos/Rankine.vcproj delete mode 100755 win32/vc8/demos/ReadMe.txt delete mode 100755 win32/vc8/demos/combustor.vcproj delete mode 100755 win32/vc8/demos/demo.vcproj delete mode 100755 win32/vc8/demos/flamespeed.vcproj delete mode 100755 win32/vc8/demos/kinetics1.vcproj delete mode 100755 win32/vc8/diamondSurf/diamondSurf.vcproj delete mode 100755 win32/vc8/equil/equil.vcproj delete mode 100755 win32/vc8/f2c_blas/f2c_blas.vcproj delete mode 100755 win32/vc8/f2c_lapack/f2c_lapack.vcproj delete mode 100755 win32/vc8/f2c_libs/f2c_libs.vcproj delete mode 100755 win32/vc8/f2c_math/f2c_math.vcproj delete mode 100755 win32/vc8/kinetics/kinetics.vcproj delete mode 100755 win32/vc8/numerics/numerics.vcproj delete mode 100755 win32/vc8/oneD/oneD.vcproj delete mode 100755 win32/vc8/prepreconfig.vc++ delete mode 100755 win32/vc8/silane_equil/silane_equil.vcproj delete mode 100755 win32/vc8/spectra/spectra.vcproj delete mode 100755 win32/vc8/surfkin/surfkin.vcproj delete mode 100755 win32/vc8/thermo/thermo.vcproj delete mode 100755 win32/vc8/tpx/tpx.vcproj delete mode 100755 win32/vc8/transport/transport.vcproj delete mode 100755 win32/vc8/zeroD/zeroD.vcproj delete mode 100755 win32/vc9/SetupCantera/SetupCantera.vdproj delete mode 100755 win32/vc9/SetupCantera/SetupCanteraLite.vdproj delete mode 100755 win32/vc9/SetupCanteraDebug/SetupCanteraDebug.vdproj delete mode 100755 win32/vc9/Sundials/CVODES/.cvsignore delete mode 100755 win32/vc9/Sundials/CVODES/CVODES.vcproj delete mode 100755 win32/vc9/Sundials/NVEC_SER/.cvsignore delete mode 100755 win32/vc9/Sundials/NVEC_SER/NVEC_SER.vcproj delete mode 100755 win32/vc9/Sundials/SUNDIALS_SHARED/.cvsignore delete mode 100755 win32/vc9/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj delete mode 100755 win32/vc9/Sundials/SUNDIALS_SHARED/docopy.cmd delete mode 100644 win32/vc9/Sundials/SUNDIALS_SHARED/sundials_config.h delete mode 100755 win32/vc9/base/base.vcproj delete mode 100755 win32/vc9/base/docopy.cmd delete mode 100755 win32/vc9/cantera.sln delete mode 100755 win32/vc9/cantera_examples.sln delete mode 100755 win32/vc9/cantera_no_sundials.sln delete mode 100755 win32/vc9/ck2cti/ck2cti.vcproj delete mode 100755 win32/vc9/clib/clib.vcproj delete mode 100755 win32/vc9/clibstatic/clibstatic.vcproj delete mode 100755 win32/vc9/config_h/config_h.vcproj delete mode 100755 win32/vc9/config_h/docopy.cmd delete mode 100755 win32/vc9/converters/converters.vcproj delete mode 100755 win32/vc9/converters/docopy.cmd delete mode 100755 win32/vc9/csvdiff/csvdiff.vcproj delete mode 100755 win32/vc9/cti2ctml/cti2ctml.vcproj delete mode 100755 win32/vc9/ctmatlab/buildmlab.cmd delete mode 100755 win32/vc9/ctmatlab/buildmlab_d.cmd delete mode 100755 win32/vc9/ctmatlab/ctmatlab.vcproj delete mode 100755 win32/vc9/ctmatlab/runmlab.cmd delete mode 100755 win32/vc9/ctpython/ctpython.vcproj delete mode 100755 win32/vc9/ctpython/runpython.cmd delete mode 100755 win32/vc9/ctpython/runpython_d.cmd delete mode 100755 win32/vc9/cvode/cvode.vcproj delete mode 100755 win32/vc9/cxx_examples/cxx_examples.vcproj delete mode 100755 win32/vc9/cxxutils/cxxutils.vcproj delete mode 100755 win32/vc9/cxxutils/docopy.cmd delete mode 100755 win32/vc9/demos/CanteraDemos.sln delete mode 100755 win32/vc9/demos/NASA_coeffs.vcproj delete mode 100755 win32/vc9/demos/Rankine.vcproj delete mode 100755 win32/vc9/demos/ReadMe.txt delete mode 100755 win32/vc9/demos/combustor.vcproj delete mode 100755 win32/vc9/demos/demo.vcproj delete mode 100755 win32/vc9/demos/flamespeed.vcproj delete mode 100755 win32/vc9/demos/kinetics1.vcproj delete mode 100755 win32/vc9/diamondSurf/diamondSurf.vcproj delete mode 100755 win32/vc9/equil/docopy.cmd delete mode 100755 win32/vc9/equil/equil.vcproj delete mode 100755 win32/vc9/f2c_blas/f2c_blas.vcproj delete mode 100755 win32/vc9/f2c_lapack/f2c_lapack.vcproj delete mode 100755 win32/vc9/f2c_libs/f2c_libs.vcproj delete mode 100755 win32/vc9/f2c_math/f2c_math.vcproj delete mode 100755 win32/vc9/kinetics/docopy.cmd delete mode 100755 win32/vc9/kinetics/kinetics.vcproj delete mode 100755 win32/vc9/numerics/docopy.cmd delete mode 100755 win32/vc9/numerics/numerics.vcproj delete mode 100755 win32/vc9/oneD/docopy.cmd delete mode 100755 win32/vc9/oneD/oneD.vcproj delete mode 100755 win32/vc9/prepreconfig.vc++ delete mode 100755 win32/vc9/silane_equil/silane_equil.vcproj delete mode 100755 win32/vc9/spectra/spectra.vcproj delete mode 100755 win32/vc9/surfkin/surfkin.sln delete mode 100755 win32/vc9/surfkin/surfkin.vcproj delete mode 100755 win32/vc9/thermo/docopy.cmd delete mode 100755 win32/vc9/thermo/thermo.vcproj delete mode 100755 win32/vc9/tpx/tpx.vcproj delete mode 100755 win32/vc9/transport/docopy.cmd delete mode 100755 win32/vc9/transport/transport.vcproj delete mode 100755 win32/vc9/zeroD/docopy.cmd delete mode 100755 win32/vc9/zeroD/zeroD.vcproj diff --git a/Cantera/Makefile.am b/Cantera/Makefile.am index 16d372985..25ffef14a 100644 --- a/Cantera/Makefile.am +++ b/Cantera/Makefile.am @@ -1,4 +1,4 @@ # $Id: $ # will need to add python and matlab -SUBDIRS = src user cxx +SUBDIRS = src user cxx ext diff --git a/Cantera/cxx/include/importPhase.h b/Cantera/cxx/include/importPhase.h index 50e1c649e..e9b45ff1b 100644 --- a/Cantera/cxx/include/importPhase.h +++ b/Cantera/cxx/include/importPhase.h @@ -3,8 +3,8 @@ #include -#include "kernel/ThermoPhase.h" -#include "kernel/ThermoFactory.h" +#include "ThermoPhase.h" +#include "ThermoFactory.h" /* * The Definitions for these functions are all located in diff --git a/Cantera/cxx/src/Makefile.am b/Cantera/cxx/src/Makefile.am index 4774b0f59..160270155 100644 --- a/Cantera/cxx/src/Makefile.am +++ b/Cantera/cxx/src/Makefile.am @@ -1,6 +1,6 @@ cc_sources = importPhase.cpp -AM_CPPFLAGS = -I/workspace/src/cantera/pecos_autotools/build/include/cantera +AM_CPPFLAGS = -I$(top_builddir)/build/include AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctcxx.la @@ -14,4 +14,9 @@ library_include_HEADERS = $(h_sources) __top_builddir__build_lib_libctcxx_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libctcxx_la_SOURCES = $(cc_sources) $(h_sources) +# header file accumulation +all: + @echo copying headers $< + cp ../include/*.h $(top_builddir)/build/include/ + CLEANFILES = *.o diff --git a/Cantera/cxx/src/importPhase.cpp b/Cantera/cxx/src/importPhase.cpp index 622a7a1ea..9d0c53604 100644 --- a/Cantera/cxx/src/importPhase.cpp +++ b/Cantera/cxx/src/importPhase.cpp @@ -4,8 +4,8 @@ #include -#include "kernel/ThermoPhase.h" -#include "kernel/ThermoFactory.h" +#include "ThermoPhase.h" +#include "ThermoFactory.h" namespace Cantera {} diff --git a/ext/Makefile.am b/Cantera/ext/Makefile.am similarity index 100% rename from ext/Makefile.am rename to Cantera/ext/Makefile.am diff --git a/ext/blas/Makefile.am b/Cantera/ext/blas/Makefile.am similarity index 100% rename from ext/blas/Makefile.am rename to Cantera/ext/blas/Makefile.am diff --git a/ext/blas/dasum.f b/Cantera/ext/blas/dasum.f similarity index 100% rename from ext/blas/dasum.f rename to Cantera/ext/blas/dasum.f diff --git a/ext/blas/daxpy.f b/Cantera/ext/blas/daxpy.f similarity index 100% rename from ext/blas/daxpy.f rename to Cantera/ext/blas/daxpy.f diff --git a/ext/blas/dcabs1.f b/Cantera/ext/blas/dcabs1.f similarity index 100% rename from ext/blas/dcabs1.f rename to Cantera/ext/blas/dcabs1.f diff --git a/ext/blas/dcopy.f b/Cantera/ext/blas/dcopy.f similarity index 100% rename from ext/blas/dcopy.f rename to Cantera/ext/blas/dcopy.f diff --git a/ext/blas/ddot.f b/Cantera/ext/blas/ddot.f similarity index 100% rename from ext/blas/ddot.f rename to Cantera/ext/blas/ddot.f diff --git a/ext/blas/dgbmv.f b/Cantera/ext/blas/dgbmv.f similarity index 100% rename from ext/blas/dgbmv.f rename to Cantera/ext/blas/dgbmv.f diff --git a/ext/blas/dgemm.f b/Cantera/ext/blas/dgemm.f similarity index 100% rename from ext/blas/dgemm.f rename to Cantera/ext/blas/dgemm.f diff --git a/ext/blas/dgemv.f b/Cantera/ext/blas/dgemv.f similarity index 100% rename from ext/blas/dgemv.f rename to Cantera/ext/blas/dgemv.f diff --git a/ext/blas/dger.f b/Cantera/ext/blas/dger.f similarity index 100% rename from ext/blas/dger.f rename to Cantera/ext/blas/dger.f diff --git a/ext/blas/dnrm2.f b/Cantera/ext/blas/dnrm2.f similarity index 100% rename from ext/blas/dnrm2.f rename to Cantera/ext/blas/dnrm2.f diff --git a/ext/blas/drot.f b/Cantera/ext/blas/drot.f similarity index 100% rename from ext/blas/drot.f rename to Cantera/ext/blas/drot.f diff --git a/ext/blas/drotg.f b/Cantera/ext/blas/drotg.f similarity index 100% rename from ext/blas/drotg.f rename to Cantera/ext/blas/drotg.f diff --git a/ext/blas/drotm.f b/Cantera/ext/blas/drotm.f similarity index 100% rename from ext/blas/drotm.f rename to Cantera/ext/blas/drotm.f diff --git a/ext/blas/drotmg.f b/Cantera/ext/blas/drotmg.f similarity index 100% rename from ext/blas/drotmg.f rename to Cantera/ext/blas/drotmg.f diff --git a/ext/blas/dsbmv.f b/Cantera/ext/blas/dsbmv.f similarity index 100% rename from ext/blas/dsbmv.f rename to Cantera/ext/blas/dsbmv.f diff --git a/ext/blas/dscal.f b/Cantera/ext/blas/dscal.f similarity index 100% rename from ext/blas/dscal.f rename to Cantera/ext/blas/dscal.f diff --git a/ext/blas/dsdot.f b/Cantera/ext/blas/dsdot.f similarity index 100% rename from ext/blas/dsdot.f rename to Cantera/ext/blas/dsdot.f diff --git a/ext/blas/dspmv.f b/Cantera/ext/blas/dspmv.f similarity index 100% rename from ext/blas/dspmv.f rename to Cantera/ext/blas/dspmv.f diff --git a/ext/blas/dspr.f b/Cantera/ext/blas/dspr.f similarity index 100% rename from ext/blas/dspr.f rename to Cantera/ext/blas/dspr.f diff --git a/ext/blas/dspr2.f b/Cantera/ext/blas/dspr2.f similarity index 100% rename from ext/blas/dspr2.f rename to Cantera/ext/blas/dspr2.f diff --git a/ext/blas/dswap.f b/Cantera/ext/blas/dswap.f similarity index 100% rename from ext/blas/dswap.f rename to Cantera/ext/blas/dswap.f diff --git a/ext/blas/dsymm.f b/Cantera/ext/blas/dsymm.f similarity index 100% rename from ext/blas/dsymm.f rename to Cantera/ext/blas/dsymm.f diff --git a/ext/blas/dsymv.f b/Cantera/ext/blas/dsymv.f similarity index 100% rename from ext/blas/dsymv.f rename to Cantera/ext/blas/dsymv.f diff --git a/ext/blas/dsyr.f b/Cantera/ext/blas/dsyr.f similarity index 100% rename from ext/blas/dsyr.f rename to Cantera/ext/blas/dsyr.f diff --git a/ext/blas/dsyr2.f b/Cantera/ext/blas/dsyr2.f similarity index 100% rename from ext/blas/dsyr2.f rename to Cantera/ext/blas/dsyr2.f diff --git a/ext/blas/dsyr2k.f b/Cantera/ext/blas/dsyr2k.f similarity index 100% rename from ext/blas/dsyr2k.f rename to Cantera/ext/blas/dsyr2k.f diff --git a/ext/blas/dsyrk.f b/Cantera/ext/blas/dsyrk.f similarity index 100% rename from ext/blas/dsyrk.f rename to Cantera/ext/blas/dsyrk.f diff --git a/ext/blas/dtbmv.f b/Cantera/ext/blas/dtbmv.f similarity index 100% rename from ext/blas/dtbmv.f rename to Cantera/ext/blas/dtbmv.f diff --git a/ext/blas/dtbsv.f b/Cantera/ext/blas/dtbsv.f similarity index 100% rename from ext/blas/dtbsv.f rename to Cantera/ext/blas/dtbsv.f diff --git a/ext/blas/dtpmv.f b/Cantera/ext/blas/dtpmv.f similarity index 100% rename from ext/blas/dtpmv.f rename to Cantera/ext/blas/dtpmv.f diff --git a/ext/blas/dtpsv.f b/Cantera/ext/blas/dtpsv.f similarity index 100% rename from ext/blas/dtpsv.f rename to Cantera/ext/blas/dtpsv.f diff --git a/ext/blas/dtrmm.f b/Cantera/ext/blas/dtrmm.f similarity index 100% rename from ext/blas/dtrmm.f rename to Cantera/ext/blas/dtrmm.f diff --git a/ext/blas/dtrmv.f b/Cantera/ext/blas/dtrmv.f similarity index 100% rename from ext/blas/dtrmv.f rename to Cantera/ext/blas/dtrmv.f diff --git a/ext/blas/dtrsm.f b/Cantera/ext/blas/dtrsm.f similarity index 100% rename from ext/blas/dtrsm.f rename to Cantera/ext/blas/dtrsm.f diff --git a/ext/blas/dtrsv.f b/Cantera/ext/blas/dtrsv.f similarity index 100% rename from ext/blas/dtrsv.f rename to Cantera/ext/blas/dtrsv.f diff --git a/ext/blas/dzasum.f b/Cantera/ext/blas/dzasum.f similarity index 100% rename from ext/blas/dzasum.f rename to Cantera/ext/blas/dzasum.f diff --git a/ext/blas/dznrm2.f b/Cantera/ext/blas/dznrm2.f similarity index 100% rename from ext/blas/dznrm2.f rename to Cantera/ext/blas/dznrm2.f diff --git a/ext/blas/icamax.f b/Cantera/ext/blas/icamax.f similarity index 100% rename from ext/blas/icamax.f rename to Cantera/ext/blas/icamax.f diff --git a/ext/blas/idamax.f b/Cantera/ext/blas/idamax.f similarity index 100% rename from ext/blas/idamax.f rename to Cantera/ext/blas/idamax.f diff --git a/ext/blas/isamax.f b/Cantera/ext/blas/isamax.f similarity index 100% rename from ext/blas/isamax.f rename to Cantera/ext/blas/isamax.f diff --git a/ext/blas/izamax.f b/Cantera/ext/blas/izamax.f similarity index 100% rename from ext/blas/izamax.f rename to Cantera/ext/blas/izamax.f diff --git a/ext/blas/lsame.f b/Cantera/ext/blas/lsame.f similarity index 100% rename from ext/blas/lsame.f rename to Cantera/ext/blas/lsame.f diff --git a/ext/blas/xerbla.f b/Cantera/ext/blas/xerbla.f similarity index 100% rename from ext/blas/xerbla.f rename to Cantera/ext/blas/xerbla.f diff --git a/ext/cvode/Makefile.am b/Cantera/ext/cvode/Makefile.am similarity index 100% rename from ext/cvode/Makefile.am rename to Cantera/ext/cvode/Makefile.am diff --git a/ext/cvode/band.c b/Cantera/ext/cvode/band.c similarity index 100% rename from ext/cvode/band.c rename to Cantera/ext/cvode/band.c diff --git a/ext/cvode/band.h b/Cantera/ext/cvode/band.h similarity index 100% rename from ext/cvode/band.h rename to Cantera/ext/cvode/band.h diff --git a/ext/cvode/cvband.c b/Cantera/ext/cvode/cvband.c similarity index 100% rename from ext/cvode/cvband.c rename to Cantera/ext/cvode/cvband.c diff --git a/ext/cvode/cvband.h b/Cantera/ext/cvode/cvband.h similarity index 100% rename from ext/cvode/cvband.h rename to Cantera/ext/cvode/cvband.h diff --git a/ext/cvode/cvbandpre.c b/Cantera/ext/cvode/cvbandpre.c similarity index 100% rename from ext/cvode/cvbandpre.c rename to Cantera/ext/cvode/cvbandpre.c diff --git a/ext/cvode/cvbandpre.h b/Cantera/ext/cvode/cvbandpre.h similarity index 100% rename from ext/cvode/cvbandpre.h rename to Cantera/ext/cvode/cvbandpre.h diff --git a/ext/cvode/cvdense.c b/Cantera/ext/cvode/cvdense.c similarity index 100% rename from ext/cvode/cvdense.c rename to Cantera/ext/cvode/cvdense.c diff --git a/ext/cvode/cvdense.h b/Cantera/ext/cvode/cvdense.h similarity index 100% rename from ext/cvode/cvdense.h rename to Cantera/ext/cvode/cvdense.h diff --git a/ext/cvode/cvdiag.c b/Cantera/ext/cvode/cvdiag.c similarity index 100% rename from ext/cvode/cvdiag.c rename to Cantera/ext/cvode/cvdiag.c diff --git a/ext/cvode/cvdiag.h b/Cantera/ext/cvode/cvdiag.h similarity index 100% rename from ext/cvode/cvdiag.h rename to Cantera/ext/cvode/cvdiag.h diff --git a/ext/cvode/cvode.c b/Cantera/ext/cvode/cvode.c similarity index 100% rename from ext/cvode/cvode.c rename to Cantera/ext/cvode/cvode.c diff --git a/ext/cvode/cvode.h b/Cantera/ext/cvode/cvode.h similarity index 100% rename from ext/cvode/cvode.h rename to Cantera/ext/cvode/cvode.h diff --git a/ext/cvode/cvspgmr.c b/Cantera/ext/cvode/cvspgmr.c similarity index 100% rename from ext/cvode/cvspgmr.c rename to Cantera/ext/cvode/cvspgmr.c diff --git a/ext/cvode/cvspgmr.h b/Cantera/ext/cvode/cvspgmr.h similarity index 100% rename from ext/cvode/cvspgmr.h rename to Cantera/ext/cvode/cvspgmr.h diff --git a/ext/cvode/dense.c b/Cantera/ext/cvode/dense.c similarity index 100% rename from ext/cvode/dense.c rename to Cantera/ext/cvode/dense.c diff --git a/ext/cvode/dense.h b/Cantera/ext/cvode/dense.h similarity index 100% rename from ext/cvode/dense.h rename to Cantera/ext/cvode/dense.h diff --git a/ext/cvode/iterativ.c b/Cantera/ext/cvode/iterativ.c similarity index 100% rename from ext/cvode/iterativ.c rename to Cantera/ext/cvode/iterativ.c diff --git a/ext/cvode/iterativ.h b/Cantera/ext/cvode/iterativ.h similarity index 100% rename from ext/cvode/iterativ.h rename to Cantera/ext/cvode/iterativ.h diff --git a/ext/cvode/llnlmath.c b/Cantera/ext/cvode/llnlmath.c similarity index 100% rename from ext/cvode/llnlmath.c rename to Cantera/ext/cvode/llnlmath.c diff --git a/ext/cvode/llnlmath.h b/Cantera/ext/cvode/llnlmath.h similarity index 100% rename from ext/cvode/llnlmath.h rename to Cantera/ext/cvode/llnlmath.h diff --git a/ext/cvode/llnltyps.h b/Cantera/ext/cvode/llnltyps.h similarity index 100% rename from ext/cvode/llnltyps.h rename to Cantera/ext/cvode/llnltyps.h diff --git a/ext/cvode/nvector.c b/Cantera/ext/cvode/nvector.c similarity index 100% rename from ext/cvode/nvector.c rename to Cantera/ext/cvode/nvector.c diff --git a/ext/cvode/nvector.h b/Cantera/ext/cvode/nvector.h similarity index 100% rename from ext/cvode/nvector.h rename to Cantera/ext/cvode/nvector.h diff --git a/ext/cvode/spgmr.c b/Cantera/ext/cvode/spgmr.c similarity index 100% rename from ext/cvode/spgmr.c rename to Cantera/ext/cvode/spgmr.c diff --git a/ext/cvode/spgmr.h b/Cantera/ext/cvode/spgmr.h similarity index 100% rename from ext/cvode/spgmr.h rename to Cantera/ext/cvode/spgmr.h diff --git a/ext/f2c_blas/Makefile.am b/Cantera/ext/f2c_blas/Makefile.am similarity index 100% rename from ext/f2c_blas/Makefile.am rename to Cantera/ext/f2c_blas/Makefile.am diff --git a/ext/f2c_blas/blaswrap.h b/Cantera/ext/f2c_blas/blaswrap.h similarity index 100% rename from ext/f2c_blas/blaswrap.h rename to Cantera/ext/f2c_blas/blaswrap.h diff --git a/ext/f2c_blas/dasum.c b/Cantera/ext/f2c_blas/dasum.c similarity index 100% rename from ext/f2c_blas/dasum.c rename to Cantera/ext/f2c_blas/dasum.c diff --git a/ext/f2c_blas/daxpy.c b/Cantera/ext/f2c_blas/daxpy.c similarity index 100% rename from ext/f2c_blas/daxpy.c rename to Cantera/ext/f2c_blas/daxpy.c diff --git a/ext/f2c_blas/dcabs1.c b/Cantera/ext/f2c_blas/dcabs1.c similarity index 100% rename from ext/f2c_blas/dcabs1.c rename to Cantera/ext/f2c_blas/dcabs1.c diff --git a/ext/f2c_blas/dcopy.c b/Cantera/ext/f2c_blas/dcopy.c similarity index 100% rename from ext/f2c_blas/dcopy.c rename to Cantera/ext/f2c_blas/dcopy.c diff --git a/ext/f2c_blas/ddot.c b/Cantera/ext/f2c_blas/ddot.c similarity index 100% rename from ext/f2c_blas/ddot.c rename to Cantera/ext/f2c_blas/ddot.c diff --git a/ext/f2c_blas/dgbmv.c b/Cantera/ext/f2c_blas/dgbmv.c similarity index 100% rename from ext/f2c_blas/dgbmv.c rename to Cantera/ext/f2c_blas/dgbmv.c diff --git a/ext/f2c_blas/dgemm.c b/Cantera/ext/f2c_blas/dgemm.c similarity index 100% rename from ext/f2c_blas/dgemm.c rename to Cantera/ext/f2c_blas/dgemm.c diff --git a/ext/f2c_blas/dgemv.c b/Cantera/ext/f2c_blas/dgemv.c similarity index 100% rename from ext/f2c_blas/dgemv.c rename to Cantera/ext/f2c_blas/dgemv.c diff --git a/ext/f2c_blas/dger.c b/Cantera/ext/f2c_blas/dger.c similarity index 100% rename from ext/f2c_blas/dger.c rename to Cantera/ext/f2c_blas/dger.c diff --git a/ext/f2c_blas/dnrm2.c b/Cantera/ext/f2c_blas/dnrm2.c similarity index 100% rename from ext/f2c_blas/dnrm2.c rename to Cantera/ext/f2c_blas/dnrm2.c diff --git a/ext/f2c_blas/drot.c b/Cantera/ext/f2c_blas/drot.c similarity index 100% rename from ext/f2c_blas/drot.c rename to Cantera/ext/f2c_blas/drot.c diff --git a/ext/f2c_blas/drotg.c b/Cantera/ext/f2c_blas/drotg.c similarity index 100% rename from ext/f2c_blas/drotg.c rename to Cantera/ext/f2c_blas/drotg.c diff --git a/ext/f2c_blas/drotm.c b/Cantera/ext/f2c_blas/drotm.c similarity index 100% rename from ext/f2c_blas/drotm.c rename to Cantera/ext/f2c_blas/drotm.c diff --git a/ext/f2c_blas/drotmg.c b/Cantera/ext/f2c_blas/drotmg.c similarity index 100% rename from ext/f2c_blas/drotmg.c rename to Cantera/ext/f2c_blas/drotmg.c diff --git a/ext/f2c_blas/dsbmv.c b/Cantera/ext/f2c_blas/dsbmv.c similarity index 100% rename from ext/f2c_blas/dsbmv.c rename to Cantera/ext/f2c_blas/dsbmv.c diff --git a/ext/f2c_blas/dscal.c b/Cantera/ext/f2c_blas/dscal.c similarity index 100% rename from ext/f2c_blas/dscal.c rename to Cantera/ext/f2c_blas/dscal.c diff --git a/ext/f2c_blas/dsdot.c b/Cantera/ext/f2c_blas/dsdot.c similarity index 100% rename from ext/f2c_blas/dsdot.c rename to Cantera/ext/f2c_blas/dsdot.c diff --git a/ext/f2c_blas/dspmv.c b/Cantera/ext/f2c_blas/dspmv.c similarity index 100% rename from ext/f2c_blas/dspmv.c rename to Cantera/ext/f2c_blas/dspmv.c diff --git a/ext/f2c_blas/dspr.c b/Cantera/ext/f2c_blas/dspr.c similarity index 100% rename from ext/f2c_blas/dspr.c rename to Cantera/ext/f2c_blas/dspr.c diff --git a/ext/f2c_blas/dspr2.c b/Cantera/ext/f2c_blas/dspr2.c similarity index 100% rename from ext/f2c_blas/dspr2.c rename to Cantera/ext/f2c_blas/dspr2.c diff --git a/ext/f2c_blas/dswap.c b/Cantera/ext/f2c_blas/dswap.c similarity index 100% rename from ext/f2c_blas/dswap.c rename to Cantera/ext/f2c_blas/dswap.c diff --git a/ext/f2c_blas/dsymm.c b/Cantera/ext/f2c_blas/dsymm.c similarity index 100% rename from ext/f2c_blas/dsymm.c rename to Cantera/ext/f2c_blas/dsymm.c diff --git a/ext/f2c_blas/dsymv.c b/Cantera/ext/f2c_blas/dsymv.c similarity index 100% rename from ext/f2c_blas/dsymv.c rename to Cantera/ext/f2c_blas/dsymv.c diff --git a/ext/f2c_blas/dsyr.c b/Cantera/ext/f2c_blas/dsyr.c similarity index 100% rename from ext/f2c_blas/dsyr.c rename to Cantera/ext/f2c_blas/dsyr.c diff --git a/ext/f2c_blas/dsyr2.c b/Cantera/ext/f2c_blas/dsyr2.c similarity index 100% rename from ext/f2c_blas/dsyr2.c rename to Cantera/ext/f2c_blas/dsyr2.c diff --git a/ext/f2c_blas/dsyr2k.c b/Cantera/ext/f2c_blas/dsyr2k.c similarity index 100% rename from ext/f2c_blas/dsyr2k.c rename to Cantera/ext/f2c_blas/dsyr2k.c diff --git a/ext/f2c_blas/dsyrk.c b/Cantera/ext/f2c_blas/dsyrk.c similarity index 100% rename from ext/f2c_blas/dsyrk.c rename to Cantera/ext/f2c_blas/dsyrk.c diff --git a/ext/f2c_blas/dtbmv.c b/Cantera/ext/f2c_blas/dtbmv.c similarity index 100% rename from ext/f2c_blas/dtbmv.c rename to Cantera/ext/f2c_blas/dtbmv.c diff --git a/ext/f2c_blas/dtbsv.c b/Cantera/ext/f2c_blas/dtbsv.c similarity index 100% rename from ext/f2c_blas/dtbsv.c rename to Cantera/ext/f2c_blas/dtbsv.c diff --git a/ext/f2c_blas/dtpmv.c b/Cantera/ext/f2c_blas/dtpmv.c similarity index 100% rename from ext/f2c_blas/dtpmv.c rename to Cantera/ext/f2c_blas/dtpmv.c diff --git a/ext/f2c_blas/dtpsv.c b/Cantera/ext/f2c_blas/dtpsv.c similarity index 100% rename from ext/f2c_blas/dtpsv.c rename to Cantera/ext/f2c_blas/dtpsv.c diff --git a/ext/f2c_blas/dtrmm.c b/Cantera/ext/f2c_blas/dtrmm.c similarity index 100% rename from ext/f2c_blas/dtrmm.c rename to Cantera/ext/f2c_blas/dtrmm.c diff --git a/ext/f2c_blas/dtrmv.c b/Cantera/ext/f2c_blas/dtrmv.c similarity index 100% rename from ext/f2c_blas/dtrmv.c rename to Cantera/ext/f2c_blas/dtrmv.c diff --git a/ext/f2c_blas/dtrsm.c b/Cantera/ext/f2c_blas/dtrsm.c similarity index 100% rename from ext/f2c_blas/dtrsm.c rename to Cantera/ext/f2c_blas/dtrsm.c diff --git a/ext/f2c_blas/dtrsv.c b/Cantera/ext/f2c_blas/dtrsv.c similarity index 100% rename from ext/f2c_blas/dtrsv.c rename to Cantera/ext/f2c_blas/dtrsv.c diff --git a/ext/f2c_blas/dzasum.c b/Cantera/ext/f2c_blas/dzasum.c similarity index 100% rename from ext/f2c_blas/dzasum.c rename to Cantera/ext/f2c_blas/dzasum.c diff --git a/ext/f2c_blas/dznrm2.c b/Cantera/ext/f2c_blas/dznrm2.c similarity index 100% rename from ext/f2c_blas/dznrm2.c rename to Cantera/ext/f2c_blas/dznrm2.c diff --git a/ext/f2c_blas/idamax.c b/Cantera/ext/f2c_blas/idamax.c similarity index 100% rename from ext/f2c_blas/idamax.c rename to Cantera/ext/f2c_blas/idamax.c diff --git a/ext/f2c_blas/isamax.c b/Cantera/ext/f2c_blas/isamax.c similarity index 100% rename from ext/f2c_blas/isamax.c rename to Cantera/ext/f2c_blas/isamax.c diff --git a/ext/f2c_blas/lsame.c b/Cantera/ext/f2c_blas/lsame.c similarity index 100% rename from ext/f2c_blas/lsame.c rename to Cantera/ext/f2c_blas/lsame.c diff --git a/ext/f2c_blas/xerbla.c b/Cantera/ext/f2c_blas/xerbla.c similarity index 100% rename from ext/f2c_blas/xerbla.c rename to Cantera/ext/f2c_blas/xerbla.c diff --git a/ext/f2c_lapack/Makefile.am b/Cantera/ext/f2c_lapack/Makefile.am similarity index 100% rename from ext/f2c_lapack/Makefile.am rename to Cantera/ext/f2c_lapack/Makefile.am diff --git a/ext/f2c_lapack/blaswrap.h b/Cantera/ext/f2c_lapack/blaswrap.h similarity index 100% rename from ext/f2c_lapack/blaswrap.h rename to Cantera/ext/f2c_lapack/blaswrap.h diff --git a/ext/f2c_lapack/dbdsqr.c b/Cantera/ext/f2c_lapack/dbdsqr.c similarity index 100% rename from ext/f2c_lapack/dbdsqr.c rename to Cantera/ext/f2c_lapack/dbdsqr.c diff --git a/ext/f2c_lapack/dgbrfs.c b/Cantera/ext/f2c_lapack/dgbrfs.c similarity index 100% rename from ext/f2c_lapack/dgbrfs.c rename to Cantera/ext/f2c_lapack/dgbrfs.c diff --git a/ext/f2c_lapack/dgbsv.c b/Cantera/ext/f2c_lapack/dgbsv.c similarity index 100% rename from ext/f2c_lapack/dgbsv.c rename to Cantera/ext/f2c_lapack/dgbsv.c diff --git a/ext/f2c_lapack/dgbsvx.c b/Cantera/ext/f2c_lapack/dgbsvx.c similarity index 100% rename from ext/f2c_lapack/dgbsvx.c rename to Cantera/ext/f2c_lapack/dgbsvx.c diff --git a/ext/f2c_lapack/dgbtf2.c b/Cantera/ext/f2c_lapack/dgbtf2.c similarity index 100% rename from ext/f2c_lapack/dgbtf2.c rename to Cantera/ext/f2c_lapack/dgbtf2.c diff --git a/ext/f2c_lapack/dgbtrf.c b/Cantera/ext/f2c_lapack/dgbtrf.c similarity index 100% rename from ext/f2c_lapack/dgbtrf.c rename to Cantera/ext/f2c_lapack/dgbtrf.c diff --git a/ext/f2c_lapack/dgbtrs.c b/Cantera/ext/f2c_lapack/dgbtrs.c similarity index 100% rename from ext/f2c_lapack/dgbtrs.c rename to Cantera/ext/f2c_lapack/dgbtrs.c diff --git a/ext/f2c_lapack/dgebak.c b/Cantera/ext/f2c_lapack/dgebak.c similarity index 100% rename from ext/f2c_lapack/dgebak.c rename to Cantera/ext/f2c_lapack/dgebak.c diff --git a/ext/f2c_lapack/dgebal.c b/Cantera/ext/f2c_lapack/dgebal.c similarity index 100% rename from ext/f2c_lapack/dgebal.c rename to Cantera/ext/f2c_lapack/dgebal.c diff --git a/ext/f2c_lapack/dgebd2.c b/Cantera/ext/f2c_lapack/dgebd2.c similarity index 100% rename from ext/f2c_lapack/dgebd2.c rename to Cantera/ext/f2c_lapack/dgebd2.c diff --git a/ext/f2c_lapack/dgebrd.c b/Cantera/ext/f2c_lapack/dgebrd.c similarity index 100% rename from ext/f2c_lapack/dgebrd.c rename to Cantera/ext/f2c_lapack/dgebrd.c diff --git a/ext/f2c_lapack/dgelq2.c b/Cantera/ext/f2c_lapack/dgelq2.c similarity index 100% rename from ext/f2c_lapack/dgelq2.c rename to Cantera/ext/f2c_lapack/dgelq2.c diff --git a/ext/f2c_lapack/dgelqf.c b/Cantera/ext/f2c_lapack/dgelqf.c similarity index 100% rename from ext/f2c_lapack/dgelqf.c rename to Cantera/ext/f2c_lapack/dgelqf.c diff --git a/ext/f2c_lapack/dgels.c b/Cantera/ext/f2c_lapack/dgels.c similarity index 100% rename from ext/f2c_lapack/dgels.c rename to Cantera/ext/f2c_lapack/dgels.c diff --git a/ext/f2c_lapack/dgelsd.c b/Cantera/ext/f2c_lapack/dgelsd.c similarity index 100% rename from ext/f2c_lapack/dgelsd.c rename to Cantera/ext/f2c_lapack/dgelsd.c diff --git a/ext/f2c_lapack/dgelss.c b/Cantera/ext/f2c_lapack/dgelss.c similarity index 100% rename from ext/f2c_lapack/dgelss.c rename to Cantera/ext/f2c_lapack/dgelss.c diff --git a/ext/f2c_lapack/dgelsx.c b/Cantera/ext/f2c_lapack/dgelsx.c similarity index 100% rename from ext/f2c_lapack/dgelsx.c rename to Cantera/ext/f2c_lapack/dgelsx.c diff --git a/ext/f2c_lapack/dgelsy.c b/Cantera/ext/f2c_lapack/dgelsy.c similarity index 100% rename from ext/f2c_lapack/dgelsy.c rename to Cantera/ext/f2c_lapack/dgelsy.c diff --git a/ext/f2c_lapack/dgeqr2.c b/Cantera/ext/f2c_lapack/dgeqr2.c similarity index 100% rename from ext/f2c_lapack/dgeqr2.c rename to Cantera/ext/f2c_lapack/dgeqr2.c diff --git a/ext/f2c_lapack/dgeqrf.c b/Cantera/ext/f2c_lapack/dgeqrf.c similarity index 100% rename from ext/f2c_lapack/dgeqrf.c rename to Cantera/ext/f2c_lapack/dgeqrf.c diff --git a/ext/f2c_lapack/dgetf2.c b/Cantera/ext/f2c_lapack/dgetf2.c similarity index 100% rename from ext/f2c_lapack/dgetf2.c rename to Cantera/ext/f2c_lapack/dgetf2.c diff --git a/ext/f2c_lapack/dgetrf.c b/Cantera/ext/f2c_lapack/dgetrf.c similarity index 100% rename from ext/f2c_lapack/dgetrf.c rename to Cantera/ext/f2c_lapack/dgetrf.c diff --git a/ext/f2c_lapack/dgetri.c b/Cantera/ext/f2c_lapack/dgetri.c similarity index 100% rename from ext/f2c_lapack/dgetri.c rename to Cantera/ext/f2c_lapack/dgetri.c diff --git a/ext/f2c_lapack/dgetrs.c b/Cantera/ext/f2c_lapack/dgetrs.c similarity index 100% rename from ext/f2c_lapack/dgetrs.c rename to Cantera/ext/f2c_lapack/dgetrs.c diff --git a/ext/f2c_lapack/dlabad.c b/Cantera/ext/f2c_lapack/dlabad.c similarity index 100% rename from ext/f2c_lapack/dlabad.c rename to Cantera/ext/f2c_lapack/dlabad.c diff --git a/ext/f2c_lapack/dlabrd.c b/Cantera/ext/f2c_lapack/dlabrd.c similarity index 100% rename from ext/f2c_lapack/dlabrd.c rename to Cantera/ext/f2c_lapack/dlabrd.c diff --git a/ext/f2c_lapack/dlacpy.c b/Cantera/ext/f2c_lapack/dlacpy.c similarity index 100% rename from ext/f2c_lapack/dlacpy.c rename to Cantera/ext/f2c_lapack/dlacpy.c diff --git a/ext/f2c_lapack/dlamch.c b/Cantera/ext/f2c_lapack/dlamch.c similarity index 100% rename from ext/f2c_lapack/dlamch.c rename to Cantera/ext/f2c_lapack/dlamch.c diff --git a/ext/f2c_lapack/dlange.c b/Cantera/ext/f2c_lapack/dlange.c similarity index 100% rename from ext/f2c_lapack/dlange.c rename to Cantera/ext/f2c_lapack/dlange.c diff --git a/ext/f2c_lapack/dlapy2.c b/Cantera/ext/f2c_lapack/dlapy2.c similarity index 100% rename from ext/f2c_lapack/dlapy2.c rename to Cantera/ext/f2c_lapack/dlapy2.c diff --git a/ext/f2c_lapack/dlarf.c b/Cantera/ext/f2c_lapack/dlarf.c similarity index 100% rename from ext/f2c_lapack/dlarf.c rename to Cantera/ext/f2c_lapack/dlarf.c diff --git a/ext/f2c_lapack/dlarfb.c b/Cantera/ext/f2c_lapack/dlarfb.c similarity index 100% rename from ext/f2c_lapack/dlarfb.c rename to Cantera/ext/f2c_lapack/dlarfb.c diff --git a/ext/f2c_lapack/dlarfg.c b/Cantera/ext/f2c_lapack/dlarfg.c similarity index 100% rename from ext/f2c_lapack/dlarfg.c rename to Cantera/ext/f2c_lapack/dlarfg.c diff --git a/ext/f2c_lapack/dlarft.c b/Cantera/ext/f2c_lapack/dlarft.c similarity index 100% rename from ext/f2c_lapack/dlarft.c rename to Cantera/ext/f2c_lapack/dlarft.c diff --git a/ext/f2c_lapack/dlartg.c b/Cantera/ext/f2c_lapack/dlartg.c similarity index 100% rename from ext/f2c_lapack/dlartg.c rename to Cantera/ext/f2c_lapack/dlartg.c diff --git a/ext/f2c_lapack/dlas2.c b/Cantera/ext/f2c_lapack/dlas2.c similarity index 100% rename from ext/f2c_lapack/dlas2.c rename to Cantera/ext/f2c_lapack/dlas2.c diff --git a/ext/f2c_lapack/dlascl.c b/Cantera/ext/f2c_lapack/dlascl.c similarity index 100% rename from ext/f2c_lapack/dlascl.c rename to Cantera/ext/f2c_lapack/dlascl.c diff --git a/ext/f2c_lapack/dlaset.c b/Cantera/ext/f2c_lapack/dlaset.c similarity index 100% rename from ext/f2c_lapack/dlaset.c rename to Cantera/ext/f2c_lapack/dlaset.c diff --git a/ext/f2c_lapack/dlasq1.c b/Cantera/ext/f2c_lapack/dlasq1.c similarity index 100% rename from ext/f2c_lapack/dlasq1.c rename to Cantera/ext/f2c_lapack/dlasq1.c diff --git a/ext/f2c_lapack/dlasq2.c b/Cantera/ext/f2c_lapack/dlasq2.c similarity index 100% rename from ext/f2c_lapack/dlasq2.c rename to Cantera/ext/f2c_lapack/dlasq2.c diff --git a/ext/f2c_lapack/dlasq3.c b/Cantera/ext/f2c_lapack/dlasq3.c similarity index 100% rename from ext/f2c_lapack/dlasq3.c rename to Cantera/ext/f2c_lapack/dlasq3.c diff --git a/ext/f2c_lapack/dlasq4.c b/Cantera/ext/f2c_lapack/dlasq4.c similarity index 100% rename from ext/f2c_lapack/dlasq4.c rename to Cantera/ext/f2c_lapack/dlasq4.c diff --git a/ext/f2c_lapack/dlasq5.c b/Cantera/ext/f2c_lapack/dlasq5.c similarity index 100% rename from ext/f2c_lapack/dlasq5.c rename to Cantera/ext/f2c_lapack/dlasq5.c diff --git a/ext/f2c_lapack/dlasq6.c b/Cantera/ext/f2c_lapack/dlasq6.c similarity index 100% rename from ext/f2c_lapack/dlasq6.c rename to Cantera/ext/f2c_lapack/dlasq6.c diff --git a/ext/f2c_lapack/dlasr.c b/Cantera/ext/f2c_lapack/dlasr.c similarity index 100% rename from ext/f2c_lapack/dlasr.c rename to Cantera/ext/f2c_lapack/dlasr.c diff --git a/ext/f2c_lapack/dlasrt.c b/Cantera/ext/f2c_lapack/dlasrt.c similarity index 100% rename from ext/f2c_lapack/dlasrt.c rename to Cantera/ext/f2c_lapack/dlasrt.c diff --git a/ext/f2c_lapack/dlassq.c b/Cantera/ext/f2c_lapack/dlassq.c similarity index 100% rename from ext/f2c_lapack/dlassq.c rename to Cantera/ext/f2c_lapack/dlassq.c diff --git a/ext/f2c_lapack/dlasv2.c b/Cantera/ext/f2c_lapack/dlasv2.c similarity index 100% rename from ext/f2c_lapack/dlasv2.c rename to Cantera/ext/f2c_lapack/dlasv2.c diff --git a/ext/f2c_lapack/dlaswp.c b/Cantera/ext/f2c_lapack/dlaswp.c similarity index 100% rename from ext/f2c_lapack/dlaswp.c rename to Cantera/ext/f2c_lapack/dlaswp.c diff --git a/ext/f2c_lapack/dorg2r.c b/Cantera/ext/f2c_lapack/dorg2r.c similarity index 100% rename from ext/f2c_lapack/dorg2r.c rename to Cantera/ext/f2c_lapack/dorg2r.c diff --git a/ext/f2c_lapack/dorgbr.c b/Cantera/ext/f2c_lapack/dorgbr.c similarity index 100% rename from ext/f2c_lapack/dorgbr.c rename to Cantera/ext/f2c_lapack/dorgbr.c diff --git a/ext/f2c_lapack/dorgl2.c b/Cantera/ext/f2c_lapack/dorgl2.c similarity index 100% rename from ext/f2c_lapack/dorgl2.c rename to Cantera/ext/f2c_lapack/dorgl2.c diff --git a/ext/f2c_lapack/dorglq.c b/Cantera/ext/f2c_lapack/dorglq.c similarity index 100% rename from ext/f2c_lapack/dorglq.c rename to Cantera/ext/f2c_lapack/dorglq.c diff --git a/ext/f2c_lapack/dorgqr.c b/Cantera/ext/f2c_lapack/dorgqr.c similarity index 100% rename from ext/f2c_lapack/dorgqr.c rename to Cantera/ext/f2c_lapack/dorgqr.c diff --git a/ext/f2c_lapack/dorm2r.c b/Cantera/ext/f2c_lapack/dorm2r.c similarity index 100% rename from ext/f2c_lapack/dorm2r.c rename to Cantera/ext/f2c_lapack/dorm2r.c diff --git a/ext/f2c_lapack/dormbr.c b/Cantera/ext/f2c_lapack/dormbr.c similarity index 100% rename from ext/f2c_lapack/dormbr.c rename to Cantera/ext/f2c_lapack/dormbr.c diff --git a/ext/f2c_lapack/dorml2.c b/Cantera/ext/f2c_lapack/dorml2.c similarity index 100% rename from ext/f2c_lapack/dorml2.c rename to Cantera/ext/f2c_lapack/dorml2.c diff --git a/ext/f2c_lapack/dormlq.c b/Cantera/ext/f2c_lapack/dormlq.c similarity index 100% rename from ext/f2c_lapack/dormlq.c rename to Cantera/ext/f2c_lapack/dormlq.c diff --git a/ext/f2c_lapack/dormqr.c b/Cantera/ext/f2c_lapack/dormqr.c similarity index 100% rename from ext/f2c_lapack/dormqr.c rename to Cantera/ext/f2c_lapack/dormqr.c diff --git a/ext/f2c_lapack/drscl.c b/Cantera/ext/f2c_lapack/drscl.c similarity index 100% rename from ext/f2c_lapack/drscl.c rename to Cantera/ext/f2c_lapack/drscl.c diff --git a/ext/f2c_lapack/dtrti2.c b/Cantera/ext/f2c_lapack/dtrti2.c similarity index 100% rename from ext/f2c_lapack/dtrti2.c rename to Cantera/ext/f2c_lapack/dtrti2.c diff --git a/ext/f2c_lapack/dtrtri.c b/Cantera/ext/f2c_lapack/dtrtri.c similarity index 100% rename from ext/f2c_lapack/dtrtri.c rename to Cantera/ext/f2c_lapack/dtrtri.c diff --git a/ext/f2c_lapack/ieeeck.c b/Cantera/ext/f2c_lapack/ieeeck.c similarity index 100% rename from ext/f2c_lapack/ieeeck.c rename to Cantera/ext/f2c_lapack/ieeeck.c diff --git a/ext/f2c_lapack/ilaenv.c b/Cantera/ext/f2c_lapack/ilaenv.c similarity index 100% rename from ext/f2c_lapack/ilaenv.c rename to Cantera/ext/f2c_lapack/ilaenv.c diff --git a/ext/f2c_lapack/lsame.c b/Cantera/ext/f2c_lapack/lsame.c similarity index 100% rename from ext/f2c_lapack/lsame.c rename to Cantera/ext/f2c_lapack/lsame.c diff --git a/ext/f2c_libs/Makefile.am b/Cantera/ext/f2c_libs/Makefile.am similarity index 94% rename from ext/f2c_libs/Makefile.am rename to Cantera/ext/f2c_libs/Makefile.am index e151bb3d0..85adc430b 100644 --- a/ext/f2c_libs/Makefile.am +++ b/Cantera/ext/f2c_libs/Makefile.am @@ -37,7 +37,7 @@ cc_sources = abort_.c c_log.c d_atn2.c dfe.c d_prod.c \ h_sources = f2c.h fio.h fmt.h fp.h lio.h rawio.h sysdep1.h -AM_CPPFLAGS = +AM_CPPFLAGS = -I. AM_CXXFLAGS = $(AM_CPPFLAGS) AM_FCFLAGS = $(AM_CPPFLAGS) @@ -53,3 +53,9 @@ __top_builddir__build_lib_libctf2c_la_LDFLAGS = $(all_libraries) -release $ __top_builddir__build_lib_libctf2c_la_SOURCES = $(cc_sources) $(h_sources) CLEANFILES = *.o + +# header file accumulation +all: + @echo copying headers $< + cp sysdep1.h0 sysdep1.h + cp $(h_sources) $(top_builddir)/build/include/ diff --git a/ext/f2c_libs/abort_.c b/Cantera/ext/f2c_libs/abort_.c similarity index 100% rename from ext/f2c_libs/abort_.c rename to Cantera/ext/f2c_libs/abort_.c diff --git a/Cantera/ext/f2c_libs/arith.h b/Cantera/ext/f2c_libs/arith.h new file mode 100644 index 000000000..32513b96e --- /dev/null +++ b/Cantera/ext/f2c_libs/arith.h @@ -0,0 +1,6 @@ +#define IEEE_8087 +#define Arith_Kind_ASL 1 +#define Long int +#define Intcast (int)(long) +#define Double_Align +#define X64_bit_pointers diff --git a/ext/f2c_libs/arith.hwin32 b/Cantera/ext/f2c_libs/arith.hwin32 similarity index 100% rename from ext/f2c_libs/arith.hwin32 rename to Cantera/ext/f2c_libs/arith.hwin32 diff --git a/ext/f2c_libs/arithchk.c b/Cantera/ext/f2c_libs/arithchk.c similarity index 100% rename from ext/f2c_libs/arithchk.c rename to Cantera/ext/f2c_libs/arithchk.c diff --git a/ext/f2c_libs/backspac.c b/Cantera/ext/f2c_libs/backspac.c similarity index 100% rename from ext/f2c_libs/backspac.c rename to Cantera/ext/f2c_libs/backspac.c diff --git a/ext/f2c_libs/c_abs.c b/Cantera/ext/f2c_libs/c_abs.c similarity index 100% rename from ext/f2c_libs/c_abs.c rename to Cantera/ext/f2c_libs/c_abs.c diff --git a/ext/f2c_libs/c_cos.c b/Cantera/ext/f2c_libs/c_cos.c similarity index 100% rename from ext/f2c_libs/c_cos.c rename to Cantera/ext/f2c_libs/c_cos.c diff --git a/ext/f2c_libs/c_div.c b/Cantera/ext/f2c_libs/c_div.c similarity index 100% rename from ext/f2c_libs/c_div.c rename to Cantera/ext/f2c_libs/c_div.c diff --git a/ext/f2c_libs/c_exp.c b/Cantera/ext/f2c_libs/c_exp.c similarity index 100% rename from ext/f2c_libs/c_exp.c rename to Cantera/ext/f2c_libs/c_exp.c diff --git a/ext/f2c_libs/c_log.c b/Cantera/ext/f2c_libs/c_log.c similarity index 100% rename from ext/f2c_libs/c_log.c rename to Cantera/ext/f2c_libs/c_log.c diff --git a/ext/f2c_libs/c_sin.c b/Cantera/ext/f2c_libs/c_sin.c similarity index 100% rename from ext/f2c_libs/c_sin.c rename to Cantera/ext/f2c_libs/c_sin.c diff --git a/ext/f2c_libs/c_sqrt.c b/Cantera/ext/f2c_libs/c_sqrt.c similarity index 100% rename from ext/f2c_libs/c_sqrt.c rename to Cantera/ext/f2c_libs/c_sqrt.c diff --git a/ext/f2c_libs/cabs.c b/Cantera/ext/f2c_libs/cabs.c similarity index 100% rename from ext/f2c_libs/cabs.c rename to Cantera/ext/f2c_libs/cabs.c diff --git a/ext/f2c_libs/close.c b/Cantera/ext/f2c_libs/close.c similarity index 100% rename from ext/f2c_libs/close.c rename to Cantera/ext/f2c_libs/close.c diff --git a/ext/f2c_libs/d_abs.c b/Cantera/ext/f2c_libs/d_abs.c similarity index 100% rename from ext/f2c_libs/d_abs.c rename to Cantera/ext/f2c_libs/d_abs.c diff --git a/ext/f2c_libs/d_acos.c b/Cantera/ext/f2c_libs/d_acos.c similarity index 100% rename from ext/f2c_libs/d_acos.c rename to Cantera/ext/f2c_libs/d_acos.c diff --git a/ext/f2c_libs/d_asin.c b/Cantera/ext/f2c_libs/d_asin.c similarity index 100% rename from ext/f2c_libs/d_asin.c rename to Cantera/ext/f2c_libs/d_asin.c diff --git a/ext/f2c_libs/d_atan.c b/Cantera/ext/f2c_libs/d_atan.c similarity index 100% rename from ext/f2c_libs/d_atan.c rename to Cantera/ext/f2c_libs/d_atan.c diff --git a/ext/f2c_libs/d_atn2.c b/Cantera/ext/f2c_libs/d_atn2.c similarity index 100% rename from ext/f2c_libs/d_atn2.c rename to Cantera/ext/f2c_libs/d_atn2.c diff --git a/ext/f2c_libs/d_cnjg.c b/Cantera/ext/f2c_libs/d_cnjg.c similarity index 100% rename from ext/f2c_libs/d_cnjg.c rename to Cantera/ext/f2c_libs/d_cnjg.c diff --git a/ext/f2c_libs/d_cos.c b/Cantera/ext/f2c_libs/d_cos.c similarity index 100% rename from ext/f2c_libs/d_cos.c rename to Cantera/ext/f2c_libs/d_cos.c diff --git a/ext/f2c_libs/d_cosh.c b/Cantera/ext/f2c_libs/d_cosh.c similarity index 100% rename from ext/f2c_libs/d_cosh.c rename to Cantera/ext/f2c_libs/d_cosh.c diff --git a/ext/f2c_libs/d_dim.c b/Cantera/ext/f2c_libs/d_dim.c similarity index 100% rename from ext/f2c_libs/d_dim.c rename to Cantera/ext/f2c_libs/d_dim.c diff --git a/ext/f2c_libs/d_exp.c b/Cantera/ext/f2c_libs/d_exp.c similarity index 100% rename from ext/f2c_libs/d_exp.c rename to Cantera/ext/f2c_libs/d_exp.c diff --git a/ext/f2c_libs/d_imag.c b/Cantera/ext/f2c_libs/d_imag.c similarity index 100% rename from ext/f2c_libs/d_imag.c rename to Cantera/ext/f2c_libs/d_imag.c diff --git a/ext/f2c_libs/d_int.c b/Cantera/ext/f2c_libs/d_int.c similarity index 100% rename from ext/f2c_libs/d_int.c rename to Cantera/ext/f2c_libs/d_int.c diff --git a/ext/f2c_libs/d_lg10.c b/Cantera/ext/f2c_libs/d_lg10.c similarity index 100% rename from ext/f2c_libs/d_lg10.c rename to Cantera/ext/f2c_libs/d_lg10.c diff --git a/ext/f2c_libs/d_log.c b/Cantera/ext/f2c_libs/d_log.c similarity index 100% rename from ext/f2c_libs/d_log.c rename to Cantera/ext/f2c_libs/d_log.c diff --git a/ext/f2c_libs/d_mod.c b/Cantera/ext/f2c_libs/d_mod.c similarity index 100% rename from ext/f2c_libs/d_mod.c rename to Cantera/ext/f2c_libs/d_mod.c diff --git a/ext/f2c_libs/d_nint.c b/Cantera/ext/f2c_libs/d_nint.c similarity index 100% rename from ext/f2c_libs/d_nint.c rename to Cantera/ext/f2c_libs/d_nint.c diff --git a/ext/f2c_libs/d_prod.c b/Cantera/ext/f2c_libs/d_prod.c similarity index 100% rename from ext/f2c_libs/d_prod.c rename to Cantera/ext/f2c_libs/d_prod.c diff --git a/ext/f2c_libs/d_sign.c b/Cantera/ext/f2c_libs/d_sign.c similarity index 100% rename from ext/f2c_libs/d_sign.c rename to Cantera/ext/f2c_libs/d_sign.c diff --git a/ext/f2c_libs/d_sin.c b/Cantera/ext/f2c_libs/d_sin.c similarity index 100% rename from ext/f2c_libs/d_sin.c rename to Cantera/ext/f2c_libs/d_sin.c diff --git a/ext/f2c_libs/d_sinh.c b/Cantera/ext/f2c_libs/d_sinh.c similarity index 100% rename from ext/f2c_libs/d_sinh.c rename to Cantera/ext/f2c_libs/d_sinh.c diff --git a/ext/f2c_libs/d_sqrt.c b/Cantera/ext/f2c_libs/d_sqrt.c similarity index 100% rename from ext/f2c_libs/d_sqrt.c rename to Cantera/ext/f2c_libs/d_sqrt.c diff --git a/ext/f2c_libs/d_tan.c b/Cantera/ext/f2c_libs/d_tan.c similarity index 100% rename from ext/f2c_libs/d_tan.c rename to Cantera/ext/f2c_libs/d_tan.c diff --git a/ext/f2c_libs/d_tanh.c b/Cantera/ext/f2c_libs/d_tanh.c similarity index 100% rename from ext/f2c_libs/d_tanh.c rename to Cantera/ext/f2c_libs/d_tanh.c diff --git a/ext/f2c_libs/derf_.c b/Cantera/ext/f2c_libs/derf_.c similarity index 100% rename from ext/f2c_libs/derf_.c rename to Cantera/ext/f2c_libs/derf_.c diff --git a/ext/f2c_libs/derfc_.c b/Cantera/ext/f2c_libs/derfc_.c similarity index 100% rename from ext/f2c_libs/derfc_.c rename to Cantera/ext/f2c_libs/derfc_.c diff --git a/ext/f2c_libs/dfe.c b/Cantera/ext/f2c_libs/dfe.c similarity index 100% rename from ext/f2c_libs/dfe.c rename to Cantera/ext/f2c_libs/dfe.c diff --git a/ext/f2c_libs/dolio.c b/Cantera/ext/f2c_libs/dolio.c similarity index 100% rename from ext/f2c_libs/dolio.c rename to Cantera/ext/f2c_libs/dolio.c diff --git a/ext/f2c_libs/dtime_.c b/Cantera/ext/f2c_libs/dtime_.c similarity index 100% rename from ext/f2c_libs/dtime_.c rename to Cantera/ext/f2c_libs/dtime_.c diff --git a/ext/f2c_libs/due.c b/Cantera/ext/f2c_libs/due.c similarity index 100% rename from ext/f2c_libs/due.c rename to Cantera/ext/f2c_libs/due.c diff --git a/ext/f2c_libs/ef1asc_.c b/Cantera/ext/f2c_libs/ef1asc_.c similarity index 100% rename from ext/f2c_libs/ef1asc_.c rename to Cantera/ext/f2c_libs/ef1asc_.c diff --git a/ext/f2c_libs/ef1cmc_.c b/Cantera/ext/f2c_libs/ef1cmc_.c similarity index 100% rename from ext/f2c_libs/ef1cmc_.c rename to Cantera/ext/f2c_libs/ef1cmc_.c diff --git a/ext/f2c_libs/endfile.c b/Cantera/ext/f2c_libs/endfile.c similarity index 100% rename from ext/f2c_libs/endfile.c rename to Cantera/ext/f2c_libs/endfile.c diff --git a/ext/f2c_libs/erf_.c b/Cantera/ext/f2c_libs/erf_.c similarity index 100% rename from ext/f2c_libs/erf_.c rename to Cantera/ext/f2c_libs/erf_.c diff --git a/ext/f2c_libs/erfc_.c b/Cantera/ext/f2c_libs/erfc_.c similarity index 100% rename from ext/f2c_libs/erfc_.c rename to Cantera/ext/f2c_libs/erfc_.c diff --git a/ext/f2c_libs/err.c b/Cantera/ext/f2c_libs/err.c similarity index 100% rename from ext/f2c_libs/err.c rename to Cantera/ext/f2c_libs/err.c diff --git a/ext/f2c_libs/etime_.c b/Cantera/ext/f2c_libs/etime_.c similarity index 100% rename from ext/f2c_libs/etime_.c rename to Cantera/ext/f2c_libs/etime_.c diff --git a/ext/f2c_libs/exit_.c b/Cantera/ext/f2c_libs/exit_.c similarity index 100% rename from ext/f2c_libs/exit_.c rename to Cantera/ext/f2c_libs/exit_.c diff --git a/ext/f2c_libs/f2c.h b/Cantera/ext/f2c_libs/f2c.h similarity index 100% rename from ext/f2c_libs/f2c.h rename to Cantera/ext/f2c_libs/f2c.h diff --git a/ext/f2c_libs/f2c.h0 b/Cantera/ext/f2c_libs/f2c.h0 similarity index 100% rename from ext/f2c_libs/f2c.h0 rename to Cantera/ext/f2c_libs/f2c.h0 diff --git a/ext/f2c_libs/f2ch.add b/Cantera/ext/f2c_libs/f2ch.add similarity index 100% rename from ext/f2c_libs/f2ch.add rename to Cantera/ext/f2c_libs/f2ch.add diff --git a/ext/f2c_libs/f77_aloc.c b/Cantera/ext/f2c_libs/f77_aloc.c similarity index 100% rename from ext/f2c_libs/f77_aloc.c rename to Cantera/ext/f2c_libs/f77_aloc.c diff --git a/ext/f2c_libs/f77vers.c b/Cantera/ext/f2c_libs/f77vers.c similarity index 100% rename from ext/f2c_libs/f77vers.c rename to Cantera/ext/f2c_libs/f77vers.c diff --git a/ext/f2c_libs/fio.h b/Cantera/ext/f2c_libs/fio.h similarity index 100% rename from ext/f2c_libs/fio.h rename to Cantera/ext/f2c_libs/fio.h diff --git a/ext/f2c_libs/fmt.c b/Cantera/ext/f2c_libs/fmt.c similarity index 100% rename from ext/f2c_libs/fmt.c rename to Cantera/ext/f2c_libs/fmt.c diff --git a/ext/f2c_libs/fmt.h b/Cantera/ext/f2c_libs/fmt.h similarity index 100% rename from ext/f2c_libs/fmt.h rename to Cantera/ext/f2c_libs/fmt.h diff --git a/ext/f2c_libs/fmtlib.c b/Cantera/ext/f2c_libs/fmtlib.c similarity index 100% rename from ext/f2c_libs/fmtlib.c rename to Cantera/ext/f2c_libs/fmtlib.c diff --git a/ext/f2c_libs/fp.h b/Cantera/ext/f2c_libs/fp.h similarity index 100% rename from ext/f2c_libs/fp.h rename to Cantera/ext/f2c_libs/fp.h diff --git a/ext/f2c_libs/ftell64_.c b/Cantera/ext/f2c_libs/ftell64_.c similarity index 100% rename from ext/f2c_libs/ftell64_.c rename to Cantera/ext/f2c_libs/ftell64_.c diff --git a/ext/f2c_libs/ftell_.c b/Cantera/ext/f2c_libs/ftell_.c similarity index 100% rename from ext/f2c_libs/ftell_.c rename to Cantera/ext/f2c_libs/ftell_.c diff --git a/ext/f2c_libs/getarg_.c b/Cantera/ext/f2c_libs/getarg_.c similarity index 100% rename from ext/f2c_libs/getarg_.c rename to Cantera/ext/f2c_libs/getarg_.c diff --git a/ext/f2c_libs/getenv_.c b/Cantera/ext/f2c_libs/getenv_.c similarity index 100% rename from ext/f2c_libs/getenv_.c rename to Cantera/ext/f2c_libs/getenv_.c diff --git a/ext/f2c_libs/h_abs.c b/Cantera/ext/f2c_libs/h_abs.c similarity index 100% rename from ext/f2c_libs/h_abs.c rename to Cantera/ext/f2c_libs/h_abs.c diff --git a/ext/f2c_libs/h_dim.c b/Cantera/ext/f2c_libs/h_dim.c similarity index 100% rename from ext/f2c_libs/h_dim.c rename to Cantera/ext/f2c_libs/h_dim.c diff --git a/ext/f2c_libs/h_dnnt.c b/Cantera/ext/f2c_libs/h_dnnt.c similarity index 100% rename from ext/f2c_libs/h_dnnt.c rename to Cantera/ext/f2c_libs/h_dnnt.c diff --git a/ext/f2c_libs/h_indx.c b/Cantera/ext/f2c_libs/h_indx.c similarity index 100% rename from ext/f2c_libs/h_indx.c rename to Cantera/ext/f2c_libs/h_indx.c diff --git a/ext/f2c_libs/h_len.c b/Cantera/ext/f2c_libs/h_len.c similarity index 100% rename from ext/f2c_libs/h_len.c rename to Cantera/ext/f2c_libs/h_len.c diff --git a/ext/f2c_libs/h_mod.c b/Cantera/ext/f2c_libs/h_mod.c similarity index 100% rename from ext/f2c_libs/h_mod.c rename to Cantera/ext/f2c_libs/h_mod.c diff --git a/ext/f2c_libs/h_nint.c b/Cantera/ext/f2c_libs/h_nint.c similarity index 100% rename from ext/f2c_libs/h_nint.c rename to Cantera/ext/f2c_libs/h_nint.c diff --git a/ext/f2c_libs/h_sign.c b/Cantera/ext/f2c_libs/h_sign.c similarity index 100% rename from ext/f2c_libs/h_sign.c rename to Cantera/ext/f2c_libs/h_sign.c diff --git a/ext/f2c_libs/hl_ge.c b/Cantera/ext/f2c_libs/hl_ge.c similarity index 100% rename from ext/f2c_libs/hl_ge.c rename to Cantera/ext/f2c_libs/hl_ge.c diff --git a/ext/f2c_libs/hl_gt.c b/Cantera/ext/f2c_libs/hl_gt.c similarity index 100% rename from ext/f2c_libs/hl_gt.c rename to Cantera/ext/f2c_libs/hl_gt.c diff --git a/ext/f2c_libs/hl_le.c b/Cantera/ext/f2c_libs/hl_le.c similarity index 100% rename from ext/f2c_libs/hl_le.c rename to Cantera/ext/f2c_libs/hl_le.c diff --git a/ext/f2c_libs/hl_lt.c b/Cantera/ext/f2c_libs/hl_lt.c similarity index 100% rename from ext/f2c_libs/hl_lt.c rename to Cantera/ext/f2c_libs/hl_lt.c diff --git a/ext/f2c_libs/i77vers.c b/Cantera/ext/f2c_libs/i77vers.c similarity index 100% rename from ext/f2c_libs/i77vers.c rename to Cantera/ext/f2c_libs/i77vers.c diff --git a/ext/f2c_libs/i_abs.c b/Cantera/ext/f2c_libs/i_abs.c similarity index 100% rename from ext/f2c_libs/i_abs.c rename to Cantera/ext/f2c_libs/i_abs.c diff --git a/ext/f2c_libs/i_dim.c b/Cantera/ext/f2c_libs/i_dim.c similarity index 100% rename from ext/f2c_libs/i_dim.c rename to Cantera/ext/f2c_libs/i_dim.c diff --git a/ext/f2c_libs/i_dnnt.c b/Cantera/ext/f2c_libs/i_dnnt.c similarity index 100% rename from ext/f2c_libs/i_dnnt.c rename to Cantera/ext/f2c_libs/i_dnnt.c diff --git a/ext/f2c_libs/i_indx.c b/Cantera/ext/f2c_libs/i_indx.c similarity index 100% rename from ext/f2c_libs/i_indx.c rename to Cantera/ext/f2c_libs/i_indx.c diff --git a/ext/f2c_libs/i_len.c b/Cantera/ext/f2c_libs/i_len.c similarity index 100% rename from ext/f2c_libs/i_len.c rename to Cantera/ext/f2c_libs/i_len.c diff --git a/ext/f2c_libs/i_mod.c b/Cantera/ext/f2c_libs/i_mod.c similarity index 100% rename from ext/f2c_libs/i_mod.c rename to Cantera/ext/f2c_libs/i_mod.c diff --git a/ext/f2c_libs/i_nint.c b/Cantera/ext/f2c_libs/i_nint.c similarity index 100% rename from ext/f2c_libs/i_nint.c rename to Cantera/ext/f2c_libs/i_nint.c diff --git a/ext/f2c_libs/i_sign.c b/Cantera/ext/f2c_libs/i_sign.c similarity index 100% rename from ext/f2c_libs/i_sign.c rename to Cantera/ext/f2c_libs/i_sign.c diff --git a/ext/f2c_libs/iargc_.c b/Cantera/ext/f2c_libs/iargc_.c similarity index 100% rename from ext/f2c_libs/iargc_.c rename to Cantera/ext/f2c_libs/iargc_.c diff --git a/ext/f2c_libs/iio.c b/Cantera/ext/f2c_libs/iio.c similarity index 100% rename from ext/f2c_libs/iio.c rename to Cantera/ext/f2c_libs/iio.c diff --git a/ext/f2c_libs/ilnw.c b/Cantera/ext/f2c_libs/ilnw.c similarity index 100% rename from ext/f2c_libs/ilnw.c rename to Cantera/ext/f2c_libs/ilnw.c diff --git a/ext/f2c_libs/inquire.c b/Cantera/ext/f2c_libs/inquire.c similarity index 100% rename from ext/f2c_libs/inquire.c rename to Cantera/ext/f2c_libs/inquire.c diff --git a/ext/f2c_libs/l_ge.c b/Cantera/ext/f2c_libs/l_ge.c similarity index 100% rename from ext/f2c_libs/l_ge.c rename to Cantera/ext/f2c_libs/l_ge.c diff --git a/ext/f2c_libs/l_gt.c b/Cantera/ext/f2c_libs/l_gt.c similarity index 100% rename from ext/f2c_libs/l_gt.c rename to Cantera/ext/f2c_libs/l_gt.c diff --git a/ext/f2c_libs/l_le.c b/Cantera/ext/f2c_libs/l_le.c similarity index 100% rename from ext/f2c_libs/l_le.c rename to Cantera/ext/f2c_libs/l_le.c diff --git a/ext/f2c_libs/l_lt.c b/Cantera/ext/f2c_libs/l_lt.c similarity index 100% rename from ext/f2c_libs/l_lt.c rename to Cantera/ext/f2c_libs/l_lt.c diff --git a/ext/f2c_libs/lbitbits.c b/Cantera/ext/f2c_libs/lbitbits.c similarity index 100% rename from ext/f2c_libs/lbitbits.c rename to Cantera/ext/f2c_libs/lbitbits.c diff --git a/ext/f2c_libs/lbitshft.c b/Cantera/ext/f2c_libs/lbitshft.c similarity index 100% rename from ext/f2c_libs/lbitshft.c rename to Cantera/ext/f2c_libs/lbitshft.c diff --git a/ext/f2c_libs/lio.h b/Cantera/ext/f2c_libs/lio.h similarity index 100% rename from ext/f2c_libs/lio.h rename to Cantera/ext/f2c_libs/lio.h diff --git a/ext/f2c_libs/lread.c b/Cantera/ext/f2c_libs/lread.c similarity index 100% rename from ext/f2c_libs/lread.c rename to Cantera/ext/f2c_libs/lread.c diff --git a/ext/f2c_libs/lwrite.c b/Cantera/ext/f2c_libs/lwrite.c similarity index 100% rename from ext/f2c_libs/lwrite.c rename to Cantera/ext/f2c_libs/lwrite.c diff --git a/ext/f2c_libs/main.c b/Cantera/ext/f2c_libs/main.c similarity index 100% rename from ext/f2c_libs/main.c rename to Cantera/ext/f2c_libs/main.c diff --git a/ext/f2c_libs/open.c b/Cantera/ext/f2c_libs/open.c similarity index 100% rename from ext/f2c_libs/open.c rename to Cantera/ext/f2c_libs/open.c diff --git a/ext/f2c_libs/pow_ci.c b/Cantera/ext/f2c_libs/pow_ci.c similarity index 100% rename from ext/f2c_libs/pow_ci.c rename to Cantera/ext/f2c_libs/pow_ci.c diff --git a/ext/f2c_libs/pow_dd.c b/Cantera/ext/f2c_libs/pow_dd.c similarity index 100% rename from ext/f2c_libs/pow_dd.c rename to Cantera/ext/f2c_libs/pow_dd.c diff --git a/ext/f2c_libs/pow_di.c b/Cantera/ext/f2c_libs/pow_di.c similarity index 100% rename from ext/f2c_libs/pow_di.c rename to Cantera/ext/f2c_libs/pow_di.c diff --git a/ext/f2c_libs/pow_hh.c b/Cantera/ext/f2c_libs/pow_hh.c similarity index 100% rename from ext/f2c_libs/pow_hh.c rename to Cantera/ext/f2c_libs/pow_hh.c diff --git a/ext/f2c_libs/pow_ii.c b/Cantera/ext/f2c_libs/pow_ii.c similarity index 100% rename from ext/f2c_libs/pow_ii.c rename to Cantera/ext/f2c_libs/pow_ii.c diff --git a/ext/f2c_libs/pow_qq.c b/Cantera/ext/f2c_libs/pow_qq.c similarity index 100% rename from ext/f2c_libs/pow_qq.c rename to Cantera/ext/f2c_libs/pow_qq.c diff --git a/ext/f2c_libs/pow_ri.c b/Cantera/ext/f2c_libs/pow_ri.c similarity index 100% rename from ext/f2c_libs/pow_ri.c rename to Cantera/ext/f2c_libs/pow_ri.c diff --git a/ext/f2c_libs/pow_zi.c b/Cantera/ext/f2c_libs/pow_zi.c similarity index 100% rename from ext/f2c_libs/pow_zi.c rename to Cantera/ext/f2c_libs/pow_zi.c diff --git a/ext/f2c_libs/pow_zz.c b/Cantera/ext/f2c_libs/pow_zz.c similarity index 100% rename from ext/f2c_libs/pow_zz.c rename to Cantera/ext/f2c_libs/pow_zz.c diff --git a/ext/f2c_libs/qbitbits.c b/Cantera/ext/f2c_libs/qbitbits.c similarity index 100% rename from ext/f2c_libs/qbitbits.c rename to Cantera/ext/f2c_libs/qbitbits.c diff --git a/ext/f2c_libs/qbitshft.c b/Cantera/ext/f2c_libs/qbitshft.c similarity index 100% rename from ext/f2c_libs/qbitshft.c rename to Cantera/ext/f2c_libs/qbitshft.c diff --git a/ext/f2c_libs/r_abs.c b/Cantera/ext/f2c_libs/r_abs.c similarity index 100% rename from ext/f2c_libs/r_abs.c rename to Cantera/ext/f2c_libs/r_abs.c diff --git a/ext/f2c_libs/r_acos.c b/Cantera/ext/f2c_libs/r_acos.c similarity index 100% rename from ext/f2c_libs/r_acos.c rename to Cantera/ext/f2c_libs/r_acos.c diff --git a/ext/f2c_libs/r_asin.c b/Cantera/ext/f2c_libs/r_asin.c similarity index 100% rename from ext/f2c_libs/r_asin.c rename to Cantera/ext/f2c_libs/r_asin.c diff --git a/ext/f2c_libs/r_atan.c b/Cantera/ext/f2c_libs/r_atan.c similarity index 100% rename from ext/f2c_libs/r_atan.c rename to Cantera/ext/f2c_libs/r_atan.c diff --git a/ext/f2c_libs/r_atn2.c b/Cantera/ext/f2c_libs/r_atn2.c similarity index 100% rename from ext/f2c_libs/r_atn2.c rename to Cantera/ext/f2c_libs/r_atn2.c diff --git a/ext/f2c_libs/r_cnjg.c b/Cantera/ext/f2c_libs/r_cnjg.c similarity index 100% rename from ext/f2c_libs/r_cnjg.c rename to Cantera/ext/f2c_libs/r_cnjg.c diff --git a/ext/f2c_libs/r_cos.c b/Cantera/ext/f2c_libs/r_cos.c similarity index 100% rename from ext/f2c_libs/r_cos.c rename to Cantera/ext/f2c_libs/r_cos.c diff --git a/ext/f2c_libs/r_cosh.c b/Cantera/ext/f2c_libs/r_cosh.c similarity index 100% rename from ext/f2c_libs/r_cosh.c rename to Cantera/ext/f2c_libs/r_cosh.c diff --git a/ext/f2c_libs/r_dim.c b/Cantera/ext/f2c_libs/r_dim.c similarity index 100% rename from ext/f2c_libs/r_dim.c rename to Cantera/ext/f2c_libs/r_dim.c diff --git a/ext/f2c_libs/r_exp.c b/Cantera/ext/f2c_libs/r_exp.c similarity index 100% rename from ext/f2c_libs/r_exp.c rename to Cantera/ext/f2c_libs/r_exp.c diff --git a/ext/f2c_libs/r_imag.c b/Cantera/ext/f2c_libs/r_imag.c similarity index 100% rename from ext/f2c_libs/r_imag.c rename to Cantera/ext/f2c_libs/r_imag.c diff --git a/ext/f2c_libs/r_int.c b/Cantera/ext/f2c_libs/r_int.c similarity index 100% rename from ext/f2c_libs/r_int.c rename to Cantera/ext/f2c_libs/r_int.c diff --git a/ext/f2c_libs/r_lg10.c b/Cantera/ext/f2c_libs/r_lg10.c similarity index 100% rename from ext/f2c_libs/r_lg10.c rename to Cantera/ext/f2c_libs/r_lg10.c diff --git a/ext/f2c_libs/r_log.c b/Cantera/ext/f2c_libs/r_log.c similarity index 100% rename from ext/f2c_libs/r_log.c rename to Cantera/ext/f2c_libs/r_log.c diff --git a/ext/f2c_libs/r_mod.c b/Cantera/ext/f2c_libs/r_mod.c similarity index 100% rename from ext/f2c_libs/r_mod.c rename to Cantera/ext/f2c_libs/r_mod.c diff --git a/ext/f2c_libs/r_nint.c b/Cantera/ext/f2c_libs/r_nint.c similarity index 100% rename from ext/f2c_libs/r_nint.c rename to Cantera/ext/f2c_libs/r_nint.c diff --git a/ext/f2c_libs/r_sign.c b/Cantera/ext/f2c_libs/r_sign.c similarity index 100% rename from ext/f2c_libs/r_sign.c rename to Cantera/ext/f2c_libs/r_sign.c diff --git a/ext/f2c_libs/r_sin.c b/Cantera/ext/f2c_libs/r_sin.c similarity index 100% rename from ext/f2c_libs/r_sin.c rename to Cantera/ext/f2c_libs/r_sin.c diff --git a/ext/f2c_libs/r_sinh.c b/Cantera/ext/f2c_libs/r_sinh.c similarity index 100% rename from ext/f2c_libs/r_sinh.c rename to Cantera/ext/f2c_libs/r_sinh.c diff --git a/ext/f2c_libs/r_sqrt.c b/Cantera/ext/f2c_libs/r_sqrt.c similarity index 100% rename from ext/f2c_libs/r_sqrt.c rename to Cantera/ext/f2c_libs/r_sqrt.c diff --git a/ext/f2c_libs/r_tan.c b/Cantera/ext/f2c_libs/r_tan.c similarity index 100% rename from ext/f2c_libs/r_tan.c rename to Cantera/ext/f2c_libs/r_tan.c diff --git a/ext/f2c_libs/r_tanh.c b/Cantera/ext/f2c_libs/r_tanh.c similarity index 100% rename from ext/f2c_libs/r_tanh.c rename to Cantera/ext/f2c_libs/r_tanh.c diff --git a/ext/f2c_libs/rawio.h b/Cantera/ext/f2c_libs/rawio.h similarity index 100% rename from ext/f2c_libs/rawio.h rename to Cantera/ext/f2c_libs/rawio.h diff --git a/ext/f2c_libs/rdfmt.c b/Cantera/ext/f2c_libs/rdfmt.c similarity index 100% rename from ext/f2c_libs/rdfmt.c rename to Cantera/ext/f2c_libs/rdfmt.c diff --git a/ext/f2c_libs/rewind.c b/Cantera/ext/f2c_libs/rewind.c similarity index 100% rename from ext/f2c_libs/rewind.c rename to Cantera/ext/f2c_libs/rewind.c diff --git a/ext/f2c_libs/rsfe.c b/Cantera/ext/f2c_libs/rsfe.c similarity index 100% rename from ext/f2c_libs/rsfe.c rename to Cantera/ext/f2c_libs/rsfe.c diff --git a/ext/f2c_libs/rsli.c b/Cantera/ext/f2c_libs/rsli.c similarity index 100% rename from ext/f2c_libs/rsli.c rename to Cantera/ext/f2c_libs/rsli.c diff --git a/ext/f2c_libs/rsne.c b/Cantera/ext/f2c_libs/rsne.c similarity index 100% rename from ext/f2c_libs/rsne.c rename to Cantera/ext/f2c_libs/rsne.c diff --git a/ext/f2c_libs/s_cat.c b/Cantera/ext/f2c_libs/s_cat.c similarity index 100% rename from ext/f2c_libs/s_cat.c rename to Cantera/ext/f2c_libs/s_cat.c diff --git a/ext/f2c_libs/s_cmp.c b/Cantera/ext/f2c_libs/s_cmp.c similarity index 100% rename from ext/f2c_libs/s_cmp.c rename to Cantera/ext/f2c_libs/s_cmp.c diff --git a/ext/f2c_libs/s_copy.c b/Cantera/ext/f2c_libs/s_copy.c similarity index 100% rename from ext/f2c_libs/s_copy.c rename to Cantera/ext/f2c_libs/s_copy.c diff --git a/ext/f2c_libs/s_paus.c b/Cantera/ext/f2c_libs/s_paus.c similarity index 100% rename from ext/f2c_libs/s_paus.c rename to Cantera/ext/f2c_libs/s_paus.c diff --git a/ext/f2c_libs/s_rnge.c b/Cantera/ext/f2c_libs/s_rnge.c similarity index 100% rename from ext/f2c_libs/s_rnge.c rename to Cantera/ext/f2c_libs/s_rnge.c diff --git a/ext/f2c_libs/s_stop.c b/Cantera/ext/f2c_libs/s_stop.c similarity index 100% rename from ext/f2c_libs/s_stop.c rename to Cantera/ext/f2c_libs/s_stop.c diff --git a/ext/f2c_libs/sfe.c b/Cantera/ext/f2c_libs/sfe.c similarity index 100% rename from ext/f2c_libs/sfe.c rename to Cantera/ext/f2c_libs/sfe.c diff --git a/ext/f2c_libs/sig_die.c b/Cantera/ext/f2c_libs/sig_die.c similarity index 100% rename from ext/f2c_libs/sig_die.c rename to Cantera/ext/f2c_libs/sig_die.c diff --git a/ext/f2c_libs/signal1.h0 b/Cantera/ext/f2c_libs/signal1.h0 similarity index 100% rename from ext/f2c_libs/signal1.h0 rename to Cantera/ext/f2c_libs/signal1.h0 diff --git a/ext/f2c_libs/signal_.c b/Cantera/ext/f2c_libs/signal_.c similarity index 100% rename from ext/f2c_libs/signal_.c rename to Cantera/ext/f2c_libs/signal_.c diff --git a/ext/f2c_libs/signbit.c b/Cantera/ext/f2c_libs/signbit.c similarity index 100% rename from ext/f2c_libs/signbit.c rename to Cantera/ext/f2c_libs/signbit.c diff --git a/ext/f2c_libs/sue.c b/Cantera/ext/f2c_libs/sue.c similarity index 100% rename from ext/f2c_libs/sue.c rename to Cantera/ext/f2c_libs/sue.c diff --git a/ext/f2c_libs/sysdep1.h0 b/Cantera/ext/f2c_libs/sysdep1.h0 similarity index 100% rename from ext/f2c_libs/sysdep1.h0 rename to Cantera/ext/f2c_libs/sysdep1.h0 diff --git a/ext/f2c_libs/system_.c b/Cantera/ext/f2c_libs/system_.c similarity index 100% rename from ext/f2c_libs/system_.c rename to Cantera/ext/f2c_libs/system_.c diff --git a/ext/f2c_libs/typesize.c b/Cantera/ext/f2c_libs/typesize.c similarity index 100% rename from ext/f2c_libs/typesize.c rename to Cantera/ext/f2c_libs/typesize.c diff --git a/ext/f2c_libs/uio.c b/Cantera/ext/f2c_libs/uio.c similarity index 100% rename from ext/f2c_libs/uio.c rename to Cantera/ext/f2c_libs/uio.c diff --git a/ext/f2c_libs/uninit.c b/Cantera/ext/f2c_libs/uninit.c similarity index 100% rename from ext/f2c_libs/uninit.c rename to Cantera/ext/f2c_libs/uninit.c diff --git a/ext/f2c_libs/util.c b/Cantera/ext/f2c_libs/util.c similarity index 100% rename from ext/f2c_libs/util.c rename to Cantera/ext/f2c_libs/util.c diff --git a/ext/f2c_libs/wref.c b/Cantera/ext/f2c_libs/wref.c similarity index 100% rename from ext/f2c_libs/wref.c rename to Cantera/ext/f2c_libs/wref.c diff --git a/ext/f2c_libs/wrtfmt.c b/Cantera/ext/f2c_libs/wrtfmt.c similarity index 100% rename from ext/f2c_libs/wrtfmt.c rename to Cantera/ext/f2c_libs/wrtfmt.c diff --git a/ext/f2c_libs/wsfe.c b/Cantera/ext/f2c_libs/wsfe.c similarity index 100% rename from ext/f2c_libs/wsfe.c rename to Cantera/ext/f2c_libs/wsfe.c diff --git a/ext/f2c_libs/wsle.c b/Cantera/ext/f2c_libs/wsle.c similarity index 100% rename from ext/f2c_libs/wsle.c rename to Cantera/ext/f2c_libs/wsle.c diff --git a/ext/f2c_libs/wsne.c b/Cantera/ext/f2c_libs/wsne.c similarity index 100% rename from ext/f2c_libs/wsne.c rename to Cantera/ext/f2c_libs/wsne.c diff --git a/ext/f2c_libs/xwsne.c b/Cantera/ext/f2c_libs/xwsne.c similarity index 100% rename from ext/f2c_libs/xwsne.c rename to Cantera/ext/f2c_libs/xwsne.c diff --git a/ext/f2c_libs/z_abs.c b/Cantera/ext/f2c_libs/z_abs.c similarity index 100% rename from ext/f2c_libs/z_abs.c rename to Cantera/ext/f2c_libs/z_abs.c diff --git a/ext/f2c_libs/z_cos.c b/Cantera/ext/f2c_libs/z_cos.c similarity index 100% rename from ext/f2c_libs/z_cos.c rename to Cantera/ext/f2c_libs/z_cos.c diff --git a/ext/f2c_libs/z_div.c b/Cantera/ext/f2c_libs/z_div.c similarity index 100% rename from ext/f2c_libs/z_div.c rename to Cantera/ext/f2c_libs/z_div.c diff --git a/ext/f2c_libs/z_exp.c b/Cantera/ext/f2c_libs/z_exp.c similarity index 100% rename from ext/f2c_libs/z_exp.c rename to Cantera/ext/f2c_libs/z_exp.c diff --git a/ext/f2c_libs/z_log.c b/Cantera/ext/f2c_libs/z_log.c similarity index 100% rename from ext/f2c_libs/z_log.c rename to Cantera/ext/f2c_libs/z_log.c diff --git a/ext/f2c_libs/z_sin.c b/Cantera/ext/f2c_libs/z_sin.c similarity index 100% rename from ext/f2c_libs/z_sin.c rename to Cantera/ext/f2c_libs/z_sin.c diff --git a/ext/f2c_libs/z_sqrt.c b/Cantera/ext/f2c_libs/z_sqrt.c similarity index 100% rename from ext/f2c_libs/z_sqrt.c rename to Cantera/ext/f2c_libs/z_sqrt.c diff --git a/ext/f2c_math/Makefile.am b/Cantera/ext/f2c_math/Makefile.am similarity index 100% rename from ext/f2c_math/Makefile.am rename to Cantera/ext/f2c_math/Makefile.am diff --git a/ext/f2c_math/cblas.h b/Cantera/ext/f2c_math/cblas.h similarity index 100% rename from ext/f2c_math/cblas.h rename to Cantera/ext/f2c_math/cblas.h diff --git a/ext/f2c_math/daux.c b/Cantera/ext/f2c_math/daux.c similarity index 100% rename from ext/f2c_math/daux.c rename to Cantera/ext/f2c_math/daux.c diff --git a/ext/f2c_math/ddaspk.c b/Cantera/ext/f2c_math/ddaspk.c similarity index 100% rename from ext/f2c_math/ddaspk.c rename to Cantera/ext/f2c_math/ddaspk.c diff --git a/ext/f2c_math/dgbefa.c b/Cantera/ext/f2c_math/dgbefa.c similarity index 100% rename from ext/f2c_math/dgbefa.c rename to Cantera/ext/f2c_math/dgbefa.c diff --git a/ext/f2c_math/dgbsl.c b/Cantera/ext/f2c_math/dgbsl.c similarity index 100% rename from ext/f2c_math/dgbsl.c rename to Cantera/ext/f2c_math/dgbsl.c diff --git a/ext/f2c_math/dgefa.c b/Cantera/ext/f2c_math/dgefa.c similarity index 100% rename from ext/f2c_math/dgefa.c rename to Cantera/ext/f2c_math/dgefa.c diff --git a/ext/f2c_math/dgesl.c b/Cantera/ext/f2c_math/dgesl.c similarity index 100% rename from ext/f2c_math/dgesl.c rename to Cantera/ext/f2c_math/dgesl.c diff --git a/ext/f2c_math/dp1vlu.c b/Cantera/ext/f2c_math/dp1vlu.c similarity index 100% rename from ext/f2c_math/dp1vlu.c rename to Cantera/ext/f2c_math/dp1vlu.c diff --git a/ext/f2c_math/dpcoef.c b/Cantera/ext/f2c_math/dpcoef.c similarity index 100% rename from ext/f2c_math/dpcoef.c rename to Cantera/ext/f2c_math/dpcoef.c diff --git a/ext/f2c_math/dpolft.c b/Cantera/ext/f2c_math/dpolft.c similarity index 100% rename from ext/f2c_math/dpolft.c rename to Cantera/ext/f2c_math/dpolft.c diff --git a/ext/f2c_math/fdump.c b/Cantera/ext/f2c_math/fdump.c similarity index 100% rename from ext/f2c_math/fdump.c rename to Cantera/ext/f2c_math/fdump.c diff --git a/ext/f2c_math/gmres.h b/Cantera/ext/f2c_math/gmres.h similarity index 100% rename from ext/f2c_math/gmres.h rename to Cantera/ext/f2c_math/gmres.h diff --git a/ext/f2c_math/idamax.c b/Cantera/ext/f2c_math/idamax.c similarity index 100% rename from ext/f2c_math/idamax.c rename to Cantera/ext/f2c_math/idamax.c diff --git a/ext/f2c_math/j4save.c b/Cantera/ext/f2c_math/j4save.c similarity index 100% rename from ext/f2c_math/j4save.c rename to Cantera/ext/f2c_math/j4save.c diff --git a/ext/f2c_math/mach.cpp b/Cantera/ext/f2c_math/mach.cpp similarity index 100% rename from ext/f2c_math/mach.cpp rename to Cantera/ext/f2c_math/mach.cpp diff --git a/ext/f2c_math/mkl_cblas.h b/Cantera/ext/f2c_math/mkl_cblas.h similarity index 100% rename from ext/f2c_math/mkl_cblas.h rename to Cantera/ext/f2c_math/mkl_cblas.h diff --git a/ext/f2c_math/pcoef.c b/Cantera/ext/f2c_math/pcoef.c similarity index 100% rename from ext/f2c_math/pcoef.c rename to Cantera/ext/f2c_math/pcoef.c diff --git a/ext/f2c_math/polfit.c b/Cantera/ext/f2c_math/polfit.c similarity index 100% rename from ext/f2c_math/polfit.c rename to Cantera/ext/f2c_math/polfit.c diff --git a/ext/f2c_math/printstring.c b/Cantera/ext/f2c_math/printstring.c similarity index 100% rename from ext/f2c_math/printstring.c rename to Cantera/ext/f2c_math/printstring.c diff --git a/ext/f2c_math/pvalue.c b/Cantera/ext/f2c_math/pvalue.c similarity index 100% rename from ext/f2c_math/pvalue.c rename to Cantera/ext/f2c_math/pvalue.c diff --git a/ext/f2c_math/xercnt.c b/Cantera/ext/f2c_math/xercnt.c similarity index 100% rename from ext/f2c_math/xercnt.c rename to Cantera/ext/f2c_math/xercnt.c diff --git a/ext/f2c_math/xerhlt.c b/Cantera/ext/f2c_math/xerhlt.c similarity index 100% rename from ext/f2c_math/xerhlt.c rename to Cantera/ext/f2c_math/xerhlt.c diff --git a/ext/f2c_math/xermsg.c b/Cantera/ext/f2c_math/xermsg.c similarity index 100% rename from ext/f2c_math/xermsg.c rename to Cantera/ext/f2c_math/xermsg.c diff --git a/ext/f2c_math/xerprn.c b/Cantera/ext/f2c_math/xerprn.c similarity index 100% rename from ext/f2c_math/xerprn.c rename to Cantera/ext/f2c_math/xerprn.c diff --git a/ext/f2c_math/xersve.c b/Cantera/ext/f2c_math/xersve.c similarity index 100% rename from ext/f2c_math/xersve.c rename to Cantera/ext/f2c_math/xersve.c diff --git a/ext/f2c_math/xgetua.c b/Cantera/ext/f2c_math/xgetua.c similarity index 100% rename from ext/f2c_math/xgetua.c rename to Cantera/ext/f2c_math/xgetua.c diff --git a/ext/f2c_recipes/Makefile.in b/Cantera/ext/f2c_recipes/Makefile.in similarity index 100% rename from ext/f2c_recipes/Makefile.in rename to Cantera/ext/f2c_recipes/Makefile.in diff --git a/ext/f2c_recipes/simp1.c b/Cantera/ext/f2c_recipes/simp1.c similarity index 100% rename from ext/f2c_recipes/simp1.c rename to Cantera/ext/f2c_recipes/simp1.c diff --git a/ext/f2c_recipes/simp2.c b/Cantera/ext/f2c_recipes/simp2.c similarity index 100% rename from ext/f2c_recipes/simp2.c rename to Cantera/ext/f2c_recipes/simp2.c diff --git a/ext/f2c_recipes/simp3.c b/Cantera/ext/f2c_recipes/simp3.c similarity index 100% rename from ext/f2c_recipes/simp3.c rename to Cantera/ext/f2c_recipes/simp3.c diff --git a/ext/f2c_recipes/simplx.c b/Cantera/ext/f2c_recipes/simplx.c similarity index 100% rename from ext/f2c_recipes/simplx.c rename to Cantera/ext/f2c_recipes/simplx.c diff --git a/ext/f2c_recipes/splie2.c b/Cantera/ext/f2c_recipes/splie2.c similarity index 100% rename from ext/f2c_recipes/splie2.c rename to Cantera/ext/f2c_recipes/splie2.c diff --git a/ext/f2c_recipes/splin2.c b/Cantera/ext/f2c_recipes/splin2.c similarity index 100% rename from ext/f2c_recipes/splin2.c rename to Cantera/ext/f2c_recipes/splin2.c diff --git a/ext/f2c_recipes/spline.c b/Cantera/ext/f2c_recipes/spline.c similarity index 100% rename from ext/f2c_recipes/spline.c rename to Cantera/ext/f2c_recipes/spline.c diff --git a/ext/f2c_recipes/splint.c b/Cantera/ext/f2c_recipes/splint.c similarity index 100% rename from ext/f2c_recipes/splint.c rename to Cantera/ext/f2c_recipes/splint.c diff --git a/ext/lapack/Makefile.am b/Cantera/ext/lapack/Makefile.am similarity index 100% rename from ext/lapack/Makefile.am rename to Cantera/ext/lapack/Makefile.am diff --git a/ext/lapack/dbdsqr.f b/Cantera/ext/lapack/dbdsqr.f similarity index 100% rename from ext/lapack/dbdsqr.f rename to Cantera/ext/lapack/dbdsqr.f diff --git a/ext/lapack/dgbsv.f b/Cantera/ext/lapack/dgbsv.f similarity index 100% rename from ext/lapack/dgbsv.f rename to Cantera/ext/lapack/dgbsv.f diff --git a/ext/lapack/dgbtf2.f b/Cantera/ext/lapack/dgbtf2.f similarity index 100% rename from ext/lapack/dgbtf2.f rename to Cantera/ext/lapack/dgbtf2.f diff --git a/ext/lapack/dgbtrf.f b/Cantera/ext/lapack/dgbtrf.f similarity index 100% rename from ext/lapack/dgbtrf.f rename to Cantera/ext/lapack/dgbtrf.f diff --git a/ext/lapack/dgbtrs.f b/Cantera/ext/lapack/dgbtrs.f similarity index 100% rename from ext/lapack/dgbtrs.f rename to Cantera/ext/lapack/dgbtrs.f diff --git a/ext/lapack/dgebd2.f b/Cantera/ext/lapack/dgebd2.f similarity index 100% rename from ext/lapack/dgebd2.f rename to Cantera/ext/lapack/dgebd2.f diff --git a/ext/lapack/dgebrd.f b/Cantera/ext/lapack/dgebrd.f similarity index 100% rename from ext/lapack/dgebrd.f rename to Cantera/ext/lapack/dgebrd.f diff --git a/ext/lapack/dgelq2.f b/Cantera/ext/lapack/dgelq2.f similarity index 100% rename from ext/lapack/dgelq2.f rename to Cantera/ext/lapack/dgelq2.f diff --git a/ext/lapack/dgelqf.f b/Cantera/ext/lapack/dgelqf.f similarity index 100% rename from ext/lapack/dgelqf.f rename to Cantera/ext/lapack/dgelqf.f diff --git a/ext/lapack/dgelss.f b/Cantera/ext/lapack/dgelss.f similarity index 100% rename from ext/lapack/dgelss.f rename to Cantera/ext/lapack/dgelss.f diff --git a/ext/lapack/dgeqr2.f b/Cantera/ext/lapack/dgeqr2.f similarity index 100% rename from ext/lapack/dgeqr2.f rename to Cantera/ext/lapack/dgeqr2.f diff --git a/ext/lapack/dgeqrf.f b/Cantera/ext/lapack/dgeqrf.f similarity index 100% rename from ext/lapack/dgeqrf.f rename to Cantera/ext/lapack/dgeqrf.f diff --git a/ext/lapack/dgetf2.f b/Cantera/ext/lapack/dgetf2.f similarity index 100% rename from ext/lapack/dgetf2.f rename to Cantera/ext/lapack/dgetf2.f diff --git a/ext/lapack/dgetrf.f b/Cantera/ext/lapack/dgetrf.f similarity index 100% rename from ext/lapack/dgetrf.f rename to Cantera/ext/lapack/dgetrf.f diff --git a/ext/lapack/dgetri.f b/Cantera/ext/lapack/dgetri.f similarity index 100% rename from ext/lapack/dgetri.f rename to Cantera/ext/lapack/dgetri.f diff --git a/ext/lapack/dgetrs.f b/Cantera/ext/lapack/dgetrs.f similarity index 100% rename from ext/lapack/dgetrs.f rename to Cantera/ext/lapack/dgetrs.f diff --git a/ext/lapack/dlabad.f b/Cantera/ext/lapack/dlabad.f similarity index 100% rename from ext/lapack/dlabad.f rename to Cantera/ext/lapack/dlabad.f diff --git a/ext/lapack/dlabrd.f b/Cantera/ext/lapack/dlabrd.f similarity index 100% rename from ext/lapack/dlabrd.f rename to Cantera/ext/lapack/dlabrd.f diff --git a/ext/lapack/dlacpy.f b/Cantera/ext/lapack/dlacpy.f similarity index 100% rename from ext/lapack/dlacpy.f rename to Cantera/ext/lapack/dlacpy.f diff --git a/ext/lapack/dlamch.f b/Cantera/ext/lapack/dlamch.f similarity index 100% rename from ext/lapack/dlamch.f rename to Cantera/ext/lapack/dlamch.f diff --git a/ext/lapack/dlange.f b/Cantera/ext/lapack/dlange.f similarity index 100% rename from ext/lapack/dlange.f rename to Cantera/ext/lapack/dlange.f diff --git a/ext/lapack/dlapy2.f b/Cantera/ext/lapack/dlapy2.f similarity index 100% rename from ext/lapack/dlapy2.f rename to Cantera/ext/lapack/dlapy2.f diff --git a/ext/lapack/dlarf.f b/Cantera/ext/lapack/dlarf.f similarity index 100% rename from ext/lapack/dlarf.f rename to Cantera/ext/lapack/dlarf.f diff --git a/ext/lapack/dlarfb.f b/Cantera/ext/lapack/dlarfb.f similarity index 100% rename from ext/lapack/dlarfb.f rename to Cantera/ext/lapack/dlarfb.f diff --git a/ext/lapack/dlarfg.f b/Cantera/ext/lapack/dlarfg.f similarity index 100% rename from ext/lapack/dlarfg.f rename to Cantera/ext/lapack/dlarfg.f diff --git a/ext/lapack/dlarft.f b/Cantera/ext/lapack/dlarft.f similarity index 100% rename from ext/lapack/dlarft.f rename to Cantera/ext/lapack/dlarft.f diff --git a/ext/lapack/dlartg.f b/Cantera/ext/lapack/dlartg.f similarity index 100% rename from ext/lapack/dlartg.f rename to Cantera/ext/lapack/dlartg.f diff --git a/ext/lapack/dlas2.f b/Cantera/ext/lapack/dlas2.f similarity index 100% rename from ext/lapack/dlas2.f rename to Cantera/ext/lapack/dlas2.f diff --git a/ext/lapack/dlascl.f b/Cantera/ext/lapack/dlascl.f similarity index 100% rename from ext/lapack/dlascl.f rename to Cantera/ext/lapack/dlascl.f diff --git a/ext/lapack/dlaset.f b/Cantera/ext/lapack/dlaset.f similarity index 100% rename from ext/lapack/dlaset.f rename to Cantera/ext/lapack/dlaset.f diff --git a/ext/lapack/dlasq1.f b/Cantera/ext/lapack/dlasq1.f similarity index 100% rename from ext/lapack/dlasq1.f rename to Cantera/ext/lapack/dlasq1.f diff --git a/ext/lapack/dlasq2.f b/Cantera/ext/lapack/dlasq2.f similarity index 100% rename from ext/lapack/dlasq2.f rename to Cantera/ext/lapack/dlasq2.f diff --git a/ext/lapack/dlasq3.f b/Cantera/ext/lapack/dlasq3.f similarity index 100% rename from ext/lapack/dlasq3.f rename to Cantera/ext/lapack/dlasq3.f diff --git a/ext/lapack/dlasq4.f b/Cantera/ext/lapack/dlasq4.f similarity index 100% rename from ext/lapack/dlasq4.f rename to Cantera/ext/lapack/dlasq4.f diff --git a/ext/lapack/dlasr.f b/Cantera/ext/lapack/dlasr.f similarity index 100% rename from ext/lapack/dlasr.f rename to Cantera/ext/lapack/dlasr.f diff --git a/ext/lapack/dlasrt.f b/Cantera/ext/lapack/dlasrt.f similarity index 100% rename from ext/lapack/dlasrt.f rename to Cantera/ext/lapack/dlasrt.f diff --git a/ext/lapack/dlassq.f b/Cantera/ext/lapack/dlassq.f similarity index 100% rename from ext/lapack/dlassq.f rename to Cantera/ext/lapack/dlassq.f diff --git a/ext/lapack/dlasv2.f b/Cantera/ext/lapack/dlasv2.f similarity index 100% rename from ext/lapack/dlasv2.f rename to Cantera/ext/lapack/dlasv2.f diff --git a/ext/lapack/dlaswp.f b/Cantera/ext/lapack/dlaswp.f similarity index 100% rename from ext/lapack/dlaswp.f rename to Cantera/ext/lapack/dlaswp.f diff --git a/ext/lapack/dorg2r.f b/Cantera/ext/lapack/dorg2r.f similarity index 100% rename from ext/lapack/dorg2r.f rename to Cantera/ext/lapack/dorg2r.f diff --git a/ext/lapack/dorgbr.f b/Cantera/ext/lapack/dorgbr.f similarity index 100% rename from ext/lapack/dorgbr.f rename to Cantera/ext/lapack/dorgbr.f diff --git a/ext/lapack/dorgl2.f b/Cantera/ext/lapack/dorgl2.f similarity index 100% rename from ext/lapack/dorgl2.f rename to Cantera/ext/lapack/dorgl2.f diff --git a/ext/lapack/dorglq.f b/Cantera/ext/lapack/dorglq.f similarity index 100% rename from ext/lapack/dorglq.f rename to Cantera/ext/lapack/dorglq.f diff --git a/ext/lapack/dorgqr.f b/Cantera/ext/lapack/dorgqr.f similarity index 100% rename from ext/lapack/dorgqr.f rename to Cantera/ext/lapack/dorgqr.f diff --git a/ext/lapack/dorm2r.f b/Cantera/ext/lapack/dorm2r.f similarity index 100% rename from ext/lapack/dorm2r.f rename to Cantera/ext/lapack/dorm2r.f diff --git a/ext/lapack/dormbr.f b/Cantera/ext/lapack/dormbr.f similarity index 100% rename from ext/lapack/dormbr.f rename to Cantera/ext/lapack/dormbr.f diff --git a/ext/lapack/dorml2.f b/Cantera/ext/lapack/dorml2.f similarity index 100% rename from ext/lapack/dorml2.f rename to Cantera/ext/lapack/dorml2.f diff --git a/ext/lapack/dormlq.f b/Cantera/ext/lapack/dormlq.f similarity index 100% rename from ext/lapack/dormlq.f rename to Cantera/ext/lapack/dormlq.f diff --git a/ext/lapack/dormqr.f b/Cantera/ext/lapack/dormqr.f similarity index 100% rename from ext/lapack/dormqr.f rename to Cantera/ext/lapack/dormqr.f diff --git a/ext/lapack/drscl.f b/Cantera/ext/lapack/drscl.f similarity index 100% rename from ext/lapack/drscl.f rename to Cantera/ext/lapack/drscl.f diff --git a/ext/lapack/ilaenv.f b/Cantera/ext/lapack/ilaenv.f similarity index 100% rename from ext/lapack/ilaenv.f rename to Cantera/ext/lapack/ilaenv.f diff --git a/ext/lapack/lsame.f b/Cantera/ext/lapack/lsame.f similarity index 100% rename from ext/lapack/lsame.f rename to Cantera/ext/lapack/lsame.f diff --git a/ext/lapack/xerbla.f b/Cantera/ext/lapack/xerbla.f similarity index 100% rename from ext/lapack/xerbla.f rename to Cantera/ext/lapack/xerbla.f diff --git a/ext/math/Makefile.am b/Cantera/ext/math/Makefile.am similarity index 100% rename from ext/math/Makefile.am rename to Cantera/ext/math/Makefile.am diff --git a/ext/math/cblas.h b/Cantera/ext/math/cblas.h similarity index 100% rename from ext/math/cblas.h rename to Cantera/ext/math/cblas.h diff --git a/ext/math/daux.f b/Cantera/ext/math/daux.f similarity index 100% rename from ext/math/daux.f rename to Cantera/ext/math/daux.f diff --git a/ext/math/ddaspk.f b/Cantera/ext/math/ddaspk.f similarity index 100% rename from ext/math/ddaspk.f rename to Cantera/ext/math/ddaspk.f diff --git a/ext/math/dgbefa.f b/Cantera/ext/math/dgbefa.f similarity index 100% rename from ext/math/dgbefa.f rename to Cantera/ext/math/dgbefa.f diff --git a/ext/math/dgbfa.f b/Cantera/ext/math/dgbfa.f similarity index 100% rename from ext/math/dgbfa.f rename to Cantera/ext/math/dgbfa.f diff --git a/ext/math/dgbsl.f b/Cantera/ext/math/dgbsl.f similarity index 100% rename from ext/math/dgbsl.f rename to Cantera/ext/math/dgbsl.f diff --git a/ext/math/dgefa.f b/Cantera/ext/math/dgefa.f similarity index 100% rename from ext/math/dgefa.f rename to Cantera/ext/math/dgefa.f diff --git a/ext/math/dgesl.f b/Cantera/ext/math/dgesl.f similarity index 100% rename from ext/math/dgesl.f rename to Cantera/ext/math/dgesl.f diff --git a/ext/math/dp1vlu.f b/Cantera/ext/math/dp1vlu.f similarity index 100% rename from ext/math/dp1vlu.f rename to Cantera/ext/math/dp1vlu.f diff --git a/ext/math/dpcoef.f b/Cantera/ext/math/dpcoef.f similarity index 100% rename from ext/math/dpcoef.f rename to Cantera/ext/math/dpcoef.f diff --git a/ext/math/dpolft.f b/Cantera/ext/math/dpolft.f similarity index 100% rename from ext/math/dpolft.f rename to Cantera/ext/math/dpolft.f diff --git a/ext/math/fdump.f b/Cantera/ext/math/fdump.f similarity index 100% rename from ext/math/fdump.f rename to Cantera/ext/math/fdump.f diff --git a/ext/math/gmres.h b/Cantera/ext/math/gmres.h similarity index 100% rename from ext/math/gmres.h rename to Cantera/ext/math/gmres.h diff --git a/ext/math/idamax.f b/Cantera/ext/math/idamax.f similarity index 100% rename from ext/math/idamax.f rename to Cantera/ext/math/idamax.f diff --git a/ext/math/j4save.f b/Cantera/ext/math/j4save.f similarity index 100% rename from ext/math/j4save.f rename to Cantera/ext/math/j4save.f diff --git a/ext/math/mach.cpp b/Cantera/ext/math/mach.cpp similarity index 100% rename from ext/math/mach.cpp rename to Cantera/ext/math/mach.cpp diff --git a/ext/math/mkl_cblas.h b/Cantera/ext/math/mkl_cblas.h similarity index 100% rename from ext/math/mkl_cblas.h rename to Cantera/ext/math/mkl_cblas.h diff --git a/ext/math/pcoef.f b/Cantera/ext/math/pcoef.f similarity index 100% rename from ext/math/pcoef.f rename to Cantera/ext/math/pcoef.f diff --git a/ext/math/polfit.f b/Cantera/ext/math/polfit.f similarity index 100% rename from ext/math/polfit.f rename to Cantera/ext/math/polfit.f diff --git a/ext/math/printstring.c b/Cantera/ext/math/printstring.c similarity index 100% rename from ext/math/printstring.c rename to Cantera/ext/math/printstring.c diff --git a/ext/math/pvalue.f b/Cantera/ext/math/pvalue.f similarity index 100% rename from ext/math/pvalue.f rename to Cantera/ext/math/pvalue.f diff --git a/ext/math/xercnt.f b/Cantera/ext/math/xercnt.f similarity index 100% rename from ext/math/xercnt.f rename to Cantera/ext/math/xercnt.f diff --git a/ext/math/xerhlt.f b/Cantera/ext/math/xerhlt.f similarity index 100% rename from ext/math/xerhlt.f rename to Cantera/ext/math/xerhlt.f diff --git a/ext/math/xermsg.f b/Cantera/ext/math/xermsg.f similarity index 100% rename from ext/math/xermsg.f rename to Cantera/ext/math/xermsg.f diff --git a/ext/math/xerprn.f b/Cantera/ext/math/xerprn.f similarity index 100% rename from ext/math/xerprn.f rename to Cantera/ext/math/xerprn.f diff --git a/ext/math/xersve.f b/Cantera/ext/math/xersve.f similarity index 100% rename from ext/math/xersve.f rename to Cantera/ext/math/xersve.f diff --git a/ext/math/xgetua.f b/Cantera/ext/math/xgetua.f similarity index 100% rename from ext/math/xgetua.f rename to Cantera/ext/math/xgetua.f diff --git a/ext/recipes/Makefile.in b/Cantera/ext/recipes/Makefile.in similarity index 100% rename from ext/recipes/Makefile.in rename to Cantera/ext/recipes/Makefile.in diff --git a/ext/recipes/simp1.f b/Cantera/ext/recipes/simp1.f similarity index 100% rename from ext/recipes/simp1.f rename to Cantera/ext/recipes/simp1.f diff --git a/ext/recipes/simp2.f b/Cantera/ext/recipes/simp2.f similarity index 100% rename from ext/recipes/simp2.f rename to Cantera/ext/recipes/simp2.f diff --git a/ext/recipes/simp3.f b/Cantera/ext/recipes/simp3.f similarity index 100% rename from ext/recipes/simp3.f rename to Cantera/ext/recipes/simp3.f diff --git a/ext/recipes/simplx.f b/Cantera/ext/recipes/simplx.f similarity index 100% rename from ext/recipes/simplx.f rename to Cantera/ext/recipes/simplx.f diff --git a/ext/recipes/splie2.f b/Cantera/ext/recipes/splie2.f similarity index 100% rename from ext/recipes/splie2.f rename to Cantera/ext/recipes/splie2.f diff --git a/ext/recipes/splin2.f b/Cantera/ext/recipes/splin2.f similarity index 100% rename from ext/recipes/splin2.f rename to Cantera/ext/recipes/splin2.f diff --git a/ext/recipes/spline.f b/Cantera/ext/recipes/spline.f similarity index 100% rename from ext/recipes/spline.f rename to Cantera/ext/recipes/spline.f diff --git a/ext/recipes/splint.f b/Cantera/ext/recipes/splint.f similarity index 100% rename from ext/recipes/splint.f rename to Cantera/ext/recipes/splint.f diff --git a/ext/tpx/CMakeLists.txt b/Cantera/ext/tpx/CMakeLists.txt similarity index 100% rename from ext/tpx/CMakeLists.txt rename to Cantera/ext/tpx/CMakeLists.txt diff --git a/ext/tpx/CarbonDioxide.cpp b/Cantera/ext/tpx/CarbonDioxide.cpp similarity index 100% rename from ext/tpx/CarbonDioxide.cpp rename to Cantera/ext/tpx/CarbonDioxide.cpp diff --git a/ext/tpx/CarbonDioxide.h b/Cantera/ext/tpx/CarbonDioxide.h similarity index 100% rename from ext/tpx/CarbonDioxide.h rename to Cantera/ext/tpx/CarbonDioxide.h diff --git a/ext/tpx/HFC134a.cpp b/Cantera/ext/tpx/HFC134a.cpp similarity index 100% rename from ext/tpx/HFC134a.cpp rename to Cantera/ext/tpx/HFC134a.cpp diff --git a/ext/tpx/HFC134a.h b/Cantera/ext/tpx/HFC134a.h similarity index 100% rename from ext/tpx/HFC134a.h rename to Cantera/ext/tpx/HFC134a.h diff --git a/ext/tpx/Heptane.cpp b/Cantera/ext/tpx/Heptane.cpp similarity index 100% rename from ext/tpx/Heptane.cpp rename to Cantera/ext/tpx/Heptane.cpp diff --git a/ext/tpx/Heptane.h b/Cantera/ext/tpx/Heptane.h similarity index 100% rename from ext/tpx/Heptane.h rename to Cantera/ext/tpx/Heptane.h diff --git a/ext/tpx/Hydrogen.cpp b/Cantera/ext/tpx/Hydrogen.cpp similarity index 100% rename from ext/tpx/Hydrogen.cpp rename to Cantera/ext/tpx/Hydrogen.cpp diff --git a/ext/tpx/Hydrogen.h b/Cantera/ext/tpx/Hydrogen.h similarity index 100% rename from ext/tpx/Hydrogen.h rename to Cantera/ext/tpx/Hydrogen.h diff --git a/ext/tpx/Makefile.am b/Cantera/ext/tpx/Makefile.am similarity index 100% rename from ext/tpx/Makefile.am rename to Cantera/ext/tpx/Makefile.am diff --git a/ext/tpx/Methane.cpp b/Cantera/ext/tpx/Methane.cpp similarity index 100% rename from ext/tpx/Methane.cpp rename to Cantera/ext/tpx/Methane.cpp diff --git a/ext/tpx/Methane.h b/Cantera/ext/tpx/Methane.h similarity index 100% rename from ext/tpx/Methane.h rename to Cantera/ext/tpx/Methane.h diff --git a/ext/tpx/Nitrogen.cpp b/Cantera/ext/tpx/Nitrogen.cpp similarity index 100% rename from ext/tpx/Nitrogen.cpp rename to Cantera/ext/tpx/Nitrogen.cpp diff --git a/ext/tpx/Nitrogen.h b/Cantera/ext/tpx/Nitrogen.h similarity index 100% rename from ext/tpx/Nitrogen.h rename to Cantera/ext/tpx/Nitrogen.h diff --git a/ext/tpx/Oxygen.cpp b/Cantera/ext/tpx/Oxygen.cpp similarity index 100% rename from ext/tpx/Oxygen.cpp rename to Cantera/ext/tpx/Oxygen.cpp diff --git a/ext/tpx/Oxygen.h b/Cantera/ext/tpx/Oxygen.h similarity index 100% rename from ext/tpx/Oxygen.h rename to Cantera/ext/tpx/Oxygen.h diff --git a/ext/tpx/RedlichKwong.cpp b/Cantera/ext/tpx/RedlichKwong.cpp similarity index 100% rename from ext/tpx/RedlichKwong.cpp rename to Cantera/ext/tpx/RedlichKwong.cpp diff --git a/ext/tpx/RedlichKwong.h b/Cantera/ext/tpx/RedlichKwong.h similarity index 100% rename from ext/tpx/RedlichKwong.h rename to Cantera/ext/tpx/RedlichKwong.h diff --git a/ext/tpx/Sub.cpp b/Cantera/ext/tpx/Sub.cpp similarity index 100% rename from ext/tpx/Sub.cpp rename to Cantera/ext/tpx/Sub.cpp diff --git a/ext/tpx/Sub.h b/Cantera/ext/tpx/Sub.h similarity index 100% rename from ext/tpx/Sub.h rename to Cantera/ext/tpx/Sub.h diff --git a/ext/tpx/Water.cpp b/Cantera/ext/tpx/Water.cpp similarity index 100% rename from ext/tpx/Water.cpp rename to Cantera/ext/tpx/Water.cpp diff --git a/ext/tpx/Water.h b/Cantera/ext/tpx/Water.h similarity index 100% rename from ext/tpx/Water.h rename to Cantera/ext/tpx/Water.h diff --git a/ext/tpx/ideal.cpp b/Cantera/ext/tpx/ideal.cpp similarity index 100% rename from ext/tpx/ideal.cpp rename to Cantera/ext/tpx/ideal.cpp diff --git a/ext/tpx/lk.cpp b/Cantera/ext/tpx/lk.cpp similarity index 100% rename from ext/tpx/lk.cpp rename to Cantera/ext/tpx/lk.cpp diff --git a/ext/tpx/lk.h b/Cantera/ext/tpx/lk.h similarity index 100% rename from ext/tpx/lk.h rename to Cantera/ext/tpx/lk.h diff --git a/ext/tpx/lkw.cpp b/Cantera/ext/tpx/lkw.cpp similarity index 100% rename from ext/tpx/lkw.cpp rename to Cantera/ext/tpx/lkw.cpp diff --git a/ext/tpx/lkw.h b/Cantera/ext/tpx/lkw.h similarity index 100% rename from ext/tpx/lkw.h rename to Cantera/ext/tpx/lkw.h diff --git a/ext/tpx/mix.h b/Cantera/ext/tpx/mix.h similarity index 100% rename from ext/tpx/mix.h rename to Cantera/ext/tpx/mix.h diff --git a/ext/tpx/subs.h b/Cantera/ext/tpx/subs.h similarity index 100% rename from ext/tpx/subs.h rename to Cantera/ext/tpx/subs.h diff --git a/ext/tpx/utils.cpp b/Cantera/ext/tpx/utils.cpp similarity index 100% rename from ext/tpx/utils.cpp rename to Cantera/ext/tpx/utils.cpp diff --git a/ext/tpx/utils.h b/Cantera/ext/tpx/utils.h similarity index 100% rename from ext/tpx/utils.h rename to Cantera/ext/tpx/utils.h diff --git a/Cantera/lib/README b/Cantera/lib/README deleted file mode 100755 index 0a45f28ba..000000000 --- a/Cantera/lib/README +++ /dev/null @@ -1,3 +0,0 @@ - -This directory is no longer used, and will be removed in a future release. - diff --git a/Cantera/src/base/Makefile.am b/Cantera/src/base/Makefile.am index 4a1345d1a..eac970188 100644 --- a/Cantera/src/base/Makefile.am +++ b/Cantera/src/base/Makefile.am @@ -2,7 +2,7 @@ h_sources = utilities.h ct_defs.h ctexceptions.h logger.h \ ctml.h plots.h stringUtils.h xml.h \ Array.h vec_functions.h global.h XML_Writer.h \ FactoryBase.h clockWC.h PrintCtrl.h \ - LogPrintCtrl.h mdp_allo.h config.h + LogPrintCtrl.h mdp_allo.h config.h cc_sources = ct2ctml.cpp ctml.cpp misc.cpp plots.cpp \ stringUtils.cpp xml.cpp clockWC.cpp \ @@ -26,4 +26,10 @@ otherinclude_HEADERS = $(h_sources) __top_builddir__build_lib_libctbase_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libctbase_la_SOURCES = $(cc_sources) $(h_sources) + +# header file accumulation +all: + @echo copying headers $< + cp *.h $(top_builddir)/build/include/ + CLEANFILES = *.o diff --git a/Cantera/src/converters/Makefile.am b/Cantera/src/converters/Makefile.am index eb268cf28..20cf4ad2a 100644 --- a/Cantera/src/converters/Makefile.am +++ b/Cantera/src/converters/Makefile.am @@ -1,6 +1,6 @@ h_sources = ck2ct.h CKParser.h CKReader.h Constituent.h Reaction.h \ Species.h writelog.h ck2ctml.h ckr_defs.h ckr_utils.h \ - Element.h RxnSpecies.h thermoFunctions.h + Element.h RxnSpecies.h thermoFunctions.h cc_sources = atomicWeightDB.cpp ck2ctml.cpp CKReader.cpp filter.cpp \ Reaction.cpp thermoFunctions.cpp ck2ct.cpp CKParser.cpp \ @@ -17,4 +17,9 @@ library_includedir = $(includedir) #----------------------- __top_builddir__build_lib_libconverters_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -__top_builddir__build_lib_libconverters_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_libconverters_la_SOURCES = $(cc_sources) $(h_sources) + +# header file accumulation +all: + @echo copying headers $< + cp $(h_sources) $(top_builddir)/build/include/ diff --git a/Cantera/src/equil/Makefile.am b/Cantera/src/equil/Makefile.am index 6abe34773..216349f2e 100644 --- a/Cantera/src/equil/Makefile.am +++ b/Cantera/src/equil/Makefile.am @@ -16,4 +16,9 @@ library_includedir = $(includedir) #----------------------- __top_builddir__build_lib_libequil_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -__top_builddir__build_lib_libequil_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_libequil_la_SOURCES = $(cc_sources) $(h_sources) + +# header file accumulation +all: + @echo copying headers $< + cp $(h_sources) $(top_builddir)/build/include/ diff --git a/Cantera/src/kinetics/Makefile.am b/Cantera/src/kinetics/Makefile.am index 10391752c..a3ecc389e 100644 --- a/Cantera/src/kinetics/Makefile.am +++ b/Cantera/src/kinetics/Makefile.am @@ -12,7 +12,7 @@ cc_sources = importKinetics.cpp GRI_30_Kinetics.cpp KineticsFactory.cpp \ ReactionPath.cpp InterfaceKinetics.cpp ImplicitSurfChem.cpp \ Group.cpp -AM_CPPFLAGS = -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = -I../numerics -I../thermo -I../base AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libkinetics.la @@ -23,4 +23,9 @@ library_includedir = $(includedir) #----------------------- __top_builddir__build_lib_libkinetics_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -__top_builddir__build_lib_libkinetics_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_libkinetics_la_SOURCES = $(cc_sources) $(h_sources) + +# header file accumulation +all: + @echo copying headers $< + cp $(h_sources) $(top_builddir)/build/include/ diff --git a/Cantera/src/numerics/CVodeInt.cpp b/Cantera/src/numerics/CVodeInt.cpp index ee95f575c..189381c16 100644 --- a/Cantera/src/numerics/CVodeInt.cpp +++ b/Cantera/src/numerics/CVodeInt.cpp @@ -12,14 +12,14 @@ using namespace std; // cvode includes -#include "../../../ext/cvode/llnltyps.h" -#include "../../../ext/cvode/llnlmath.h" -#include "../../../ext/cvode/cvode.h" -#include "../../../ext/cvode/cvdense.h" -#include "../../../ext/cvode/cvdiag.h" -#include "../../../ext/cvode/cvspgmr.h" -#include "../../../ext/cvode/nvector.h" -#include "../../../ext/cvode/cvode.h" +#include "llnltyps.h" +#include "llnlmath.h" +#include "cvode.h" +#include "cvdense.h" +#include "cvdiag.h" +#include "cvspgmr.h" +#include "nvector.h" +#include "cvode.h" inline static N_Vector nv(void* x) { return reinterpret_cast(x); diff --git a/Cantera/src/numerics/Makefile.am b/Cantera/src/numerics/Makefile.am index 3ff16d619..ea88c3e44 100644 --- a/Cantera/src/numerics/Makefile.am +++ b/Cantera/src/numerics/Makefile.am @@ -8,7 +8,7 @@ cc_sources = DenseMatrix.cpp funcs.cpp Func1.cpp ODE_integrators.cpp \ SquareMatrix.cpp ResidJacEval.cpp NonlinearSolver.cpp \ CVodeInt.cpp -AM_CPPFLAGS = -I../../../ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +AM_CPPFLAGS = -I$(top_builddir)/build/include/ -I$(top_builddir)/Cantera/ext/cvode AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctnumerics.la @@ -19,4 +19,10 @@ library_includedir = $(includedir) #----------------------- __top_builddir__build_lib_libctnumerics_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -__top_builddir__build_lib_libctnumerics_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_libctnumerics_la_SOURCES = $(cc_sources) $(h_sources) + + +# header file accumulation +all: + @echo copying headers $< + cp *.h $(top_builddir)/build/include/ diff --git a/Cantera/src/oneD/Makefile.am b/Cantera/src/oneD/Makefile.am index 28e2a5247..5605312be 100644 --- a/Cantera/src/oneD/Makefile.am +++ b/Cantera/src/oneD/Makefile.am @@ -3,7 +3,7 @@ cc_sources = MultiJac.cpp MultiNewton.cpp newton_utils.cpp OneDim.cpp \ h_sources = Inlet1D.h MultiJac.h Sim1D.h StFlow.h \ Surf1D.h Domain1D.h MultiNewton.h OneDim.h \ - Resid1D.h Solid1D.h efine.h + Resid1D.h Solid1D.h refine.h AM_CPPFLAGS = -I../base -I../thermo -I../kinetics -I../transport -I../numerics -I../../../ AM_CXXFLAGS = $(AM_CPPFLAGS) -fPIC @@ -16,4 +16,10 @@ library_includedir = $(includedir) #----------------------- __top_builddir__build_lib_liboneD_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -__top_builddir__build_lib_liboneD_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_liboneD_la_SOURCES = $(cc_sources) $(h_sources) + + +# header file accumulation +all: + @echo copying headers $< + cp $(h_sources) $(top_builddir)/build/include/ diff --git a/Cantera/src/spectra/Makefile.am b/Cantera/src/spectra/Makefile.am index 19b5168db..6e7d137e3 100644 --- a/Cantera/src/spectra/Makefile.am +++ b/Cantera/src/spectra/Makefile.am @@ -3,7 +3,7 @@ h_sources = DiatomicMolecule.h LineBroadener.h Nuclei.h \ cc_sources = LineBroadener.cpp rotor.cpp spectralUtilities.cpp -AM_CPPFLAGS = -I../base -I../../../ +AM_CPPFLAGS = -I../base AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctspectra.la @@ -14,4 +14,10 @@ library_includedir = $(includedir) #----------------------- __top_builddir__build_lib_libctspectra_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -__top_builddir__build_lib_libctspectra_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_libctspectra_la_SOURCES = $(cc_sources) $(h_sources) + + +# header file accumulation +all: + @echo copying headers $< + cp $(h_sources) $(top_builddir)/build/include/ diff --git a/Cantera/src/thermo/Makefile.am b/Cantera/src/thermo/Makefile.am index 5f37d2c58..13a5076dc 100644 --- a/Cantera/src/thermo/Makefile.am +++ b/Cantera/src/thermo/Makefile.am @@ -42,7 +42,7 @@ cc_sources = State.cpp Elements.cpp Constituents.cpp Phase.cpp \ PseudoBinaryVPSSTP.cpp MargulesVPSSTP.cpp \ StoichSubstanceSSTP.cpp -AM_CPPFLAGS = -I../base -I../../../ +AM_CPPFLAGS = -I../base AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libthermo.la @@ -54,3 +54,9 @@ library_includedir = $(includedir) __top_builddir__build_lib_libthermo_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libthermo_la_SOURCES = $(cc_sources) $(h_sources) + + +# header file accumulation +all: + @echo copying headers $< + cp $(h_sources) $(top_builddir)/build/include/ diff --git a/Cantera/src/transport/Makefile.am b/Cantera/src/transport/Makefile.am index 7595b76ad..8796fd9cf 100644 --- a/Cantera/src/transport/Makefile.am +++ b/Cantera/src/transport/Makefile.am @@ -10,7 +10,7 @@ cc_sources = AqueousTransport.cpp LiquidTransport.cpp MMCollisionInt.cpp \ DustyGasTransport.cpp MixTransport.cpp MultiTransport.cpp \ SolidTransport.cpp TransportFactory.cpp -AM_CPPFLAGS = -I../base -I../thermo -I../numerics -I../../../ +AM_CPPFLAGS = -I../base -I../thermo -I../numerics AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libtransport.la @@ -21,4 +21,10 @@ library_includedir = $(includedir) #----------------------- __top_builddir__build_lib_libtransport_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -__top_builddir__build_lib_libtransport_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_libtransport_la_SOURCES = $(cc_sources) $(h_sources) + + +# header file accumulation +all: + @echo copying headers $< + cp *.h $(top_builddir)/build/include/ diff --git a/Cantera/src/zeroD/Makefile.am b/Cantera/src/zeroD/Makefile.am index 7ce28e3fb..b7bc6d392 100644 --- a/Cantera/src/zeroD/Makefile.am +++ b/Cantera/src/zeroD/Makefile.am @@ -6,7 +6,7 @@ cc_sources = Reactor.cpp ReactorBase.cpp FlowDevice.cpp Wall.cpp \ ReactorNet.cpp FlowReactor.cpp ConstPressureReactor.cpp \ ReactorFactory.cpp -AM_CPPFLAGS = -I../base -I../thermo -I../kinetics -I../numerics -I../../../ +AM_CPPFLAGS = -I../base -I../thermo -I../kinetics -I../numerics AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libzeroD.la @@ -17,4 +17,9 @@ library_includedir = $(includedir) #----------------------- __top_builddir__build_lib_libzeroD_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -__top_builddir__build_lib_libzeroD_la_SOURCES = $(cc_sources) $(h_sources) \ No newline at end of file +__top_builddir__build_lib_libzeroD_la_SOURCES = $(cc_sources) $(h_sources) + +# header file accumulation +all: + @echo copying headers $< + cp $(h_sources) $(top_builddir)/build/include/ diff --git a/Makefile.am b/Makefile.am index 1097e3194..532af4e31 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,7 @@ include $(top_srcdir)/doxygen/aminclude.am # Build in these directories: -SUBDIRS = Cantera ext test_problems +SUBDIRS = Cantera test_problems SUBDIRS += doxygen #examples diff --git a/configure.ac b/configure.ac index 2124d3457..33a282ecc 100644 --- a/configure.ac +++ b/configure.ac @@ -87,13 +87,13 @@ AC_OUTPUT(Makefile \ test_problems/cathermo/VPissp/Makefile \ test_problems/cathermo/wtWater/Makefile \ doxygen/Makefile \ - ext/Makefile \ - ext/tpx/Makefile \ - ext/cvode/Makefile \ - ext/f2c_blas/Makefile \ - ext/f2c_lapack/Makefile \ - ext/f2c_libs/Makefile \ - ext/f2c_math/Makefile \ + Cantera/ext/Makefile \ + Cantera/ext/tpx/Makefile \ + Cantera/ext/cvode/Makefile \ + Cantera/ext/f2c_blas/Makefile \ + Cantera/ext/f2c_lapack/Makefile \ + Cantera/ext/f2c_libs/Makefile \ + Cantera/ext/f2c_math/Makefile \ Cantera/Makefile \ Cantera/user/Makefile \ Cantera/src/Makefile \ diff --git a/win32/README.vc7 b/win32/README.vc7 deleted file mode 100644 index 0166cf5f0..000000000 --- a/win32/README.vc7 +++ /dev/null @@ -1,97 +0,0 @@ - -Instructions for building under Visual C++ v.7 Without Fortran Support ----------------------------------------------------------------------------- - - -1) Checkout the regular Cantera distribution, and cd to the top directory. - cvs -d":ext:hkmoffa@cvs.sourceforge.net:/cvsroot/cantera" co Cantera - cd Cantera - - -2) Remove the regular win32 directory and everything under it: - /bin/rm -rf win32 - -3) Checkout out the new win32 module, from Cantera's sourceforge distribution: - cvs -d":ext:hkmoffa@cvs.sourceforge.net:/cvsroot/cantera" co win32 - - -4) Now, there should be a win32 directory located in the distribution's top - directory that has a different format than the previous one. - -5) Add support for command line execution of the VC++ compiler - a) Add the following lines to your .profile file: - # - VS_HOME='/cygdrive/c/Program Files/Microsoft Visual Studio .NET 2003' - export VS_HOME - # - PATH=$VS_HOME/Vc7/bin:$VS_HOME/Common7/IDE:$PATH - export PATH - # - - b) Make sure your windows user environmental variable, INCLUDE, contains - the default MSVC++7.0 include directories: - - Right-clicking "My Computer", selecting properties:advanced, - and open up Environmental Variables - The variable INCLUDE should contain these entries: - C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\include\;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\include\ - - - -6) Go to config directory and type autoconf. Return to top directory. - -7) Go to win32/vc7 directory. - Copy configure.vc++ to the top Cantera's directory, edit it, and execute it - (note, it must be a unix text file to execute) - - cd win32/vc7 - cp configure.vc++ ../.. - cd ../.. - vi configure.vc++ - configure.vc++ - -8) Open up a windows explorer window, go to the directory win32/vc7, and double - click on Cantera.sln. - -9) Build the solution cantera from within MS VC++ v7.0. - -10) An error exit is generated by python v. 2.3's distutuils module - whenever a user module is compiled with MS VC++ v7.0. Note, python was - compiled with MS VC++ v6.0. I have found that just disabling the error - exit leads to acceptable behavior with no problems. - - To disable the error exit, edit the file: - /cygdrive/c/python23/Lib/distutils/msvccompiler.py - Comment out lines 211 to 215 by prepending with a "#". - - Note, this module generates compiler command lines for python. During - Cantera's python build process, the distutils module actually takes over - the build process from Cantera's makefile, and carries out the build/install - operations. Therefore, there is no way around this step. - - Note, python 2.4 is in alpha testing as of 9/2004. It's being built with - MSVC++ v7.0. I'm not sure if this means similar problems for Cantera users - who want to use python 2.4 with MSVC++ v6.0 in the future or not. - - (HKM -> I'll try to find out more information about this whole issue in - the near future i.e., is there an upgraded distutils module?) - -11) Go to the top of the Cantera distribution, and type: - - make win - - -12) Go to win32/vc7 and double click on cantera_examples.sln. - Build the cantera_examples from within MS VC++ v7.0. - -13) Go to the top of the Cantera distribution, and type - make win-install - -14) To test the installation, go to the top of the Cantera intallation. - Go into the test_problems directory and run all of the problems: - - cd test_problems - make test - - - diff --git a/win32/README.vc8 b/win32/README.vc8 deleted file mode 100644 index 0166cf5f0..000000000 --- a/win32/README.vc8 +++ /dev/null @@ -1,97 +0,0 @@ - -Instructions for building under Visual C++ v.7 Without Fortran Support ----------------------------------------------------------------------------- - - -1) Checkout the regular Cantera distribution, and cd to the top directory. - cvs -d":ext:hkmoffa@cvs.sourceforge.net:/cvsroot/cantera" co Cantera - cd Cantera - - -2) Remove the regular win32 directory and everything under it: - /bin/rm -rf win32 - -3) Checkout out the new win32 module, from Cantera's sourceforge distribution: - cvs -d":ext:hkmoffa@cvs.sourceforge.net:/cvsroot/cantera" co win32 - - -4) Now, there should be a win32 directory located in the distribution's top - directory that has a different format than the previous one. - -5) Add support for command line execution of the VC++ compiler - a) Add the following lines to your .profile file: - # - VS_HOME='/cygdrive/c/Program Files/Microsoft Visual Studio .NET 2003' - export VS_HOME - # - PATH=$VS_HOME/Vc7/bin:$VS_HOME/Common7/IDE:$PATH - export PATH - # - - b) Make sure your windows user environmental variable, INCLUDE, contains - the default MSVC++7.0 include directories: - - Right-clicking "My Computer", selecting properties:advanced, - and open up Environmental Variables - The variable INCLUDE should contain these entries: - C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\include\;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\include\ - - - -6) Go to config directory and type autoconf. Return to top directory. - -7) Go to win32/vc7 directory. - Copy configure.vc++ to the top Cantera's directory, edit it, and execute it - (note, it must be a unix text file to execute) - - cd win32/vc7 - cp configure.vc++ ../.. - cd ../.. - vi configure.vc++ - configure.vc++ - -8) Open up a windows explorer window, go to the directory win32/vc7, and double - click on Cantera.sln. - -9) Build the solution cantera from within MS VC++ v7.0. - -10) An error exit is generated by python v. 2.3's distutuils module - whenever a user module is compiled with MS VC++ v7.0. Note, python was - compiled with MS VC++ v6.0. I have found that just disabling the error - exit leads to acceptable behavior with no problems. - - To disable the error exit, edit the file: - /cygdrive/c/python23/Lib/distutils/msvccompiler.py - Comment out lines 211 to 215 by prepending with a "#". - - Note, this module generates compiler command lines for python. During - Cantera's python build process, the distutils module actually takes over - the build process from Cantera's makefile, and carries out the build/install - operations. Therefore, there is no way around this step. - - Note, python 2.4 is in alpha testing as of 9/2004. It's being built with - MSVC++ v7.0. I'm not sure if this means similar problems for Cantera users - who want to use python 2.4 with MSVC++ v6.0 in the future or not. - - (HKM -> I'll try to find out more information about this whole issue in - the near future i.e., is there an upgraded distutils module?) - -11) Go to the top of the Cantera distribution, and type: - - make win - - -12) Go to win32/vc7 and double click on cantera_examples.sln. - Build the cantera_examples from within MS VC++ v7.0. - -13) Go to the top of the Cantera distribution, and type - make win-install - -14) To test the installation, go to the top of the Cantera intallation. - Go into the test_problems directory and run all of the problems: - - cd test_problems - make test - - - diff --git a/win32/vc6/all/all.dsp b/win32/vc6/all/all.dsp deleted file mode 100644 index 83d50f67a..000000000 --- a/win32/vc6/all/all.dsp +++ /dev/null @@ -1,63 +0,0 @@ -# Microsoft Developer Studio Project File - Name="all" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Generic Project" 0x010a - -CFG=all - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "all.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "all.mak" CFG="all - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "all - Win32 Release" (based on "Win32 (x86) Generic Project") -!MESSAGE "all - Win32 Debug" (based on "Win32 (x86) Generic Project") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -MTL=midl.exe - -!IF "$(CFG)" == "all - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" - -!ELSEIF "$(CFG)" == "all - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" - -!ENDIF - -# Begin Target - -# Name "all - Win32 Release" -# Name "all - Win32 Debug" -# End Target -# End Project diff --git a/win32/vc6/blas/blas.dsp b/win32/vc6/blas/blas.dsp deleted file mode 100755 index cc3fbfe4e..000000000 --- a/win32/vc6/blas/blas.dsp +++ /dev/null @@ -1,265 +0,0 @@ -# Microsoft Developer Studio Project File - Name="blas" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=blas - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "blas.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "blas.mak" CFG="blas - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "blas - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "blas - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "blas - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctblas.lib" - -!ELSEIF "$(CFG)" == "blas - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /dbglibs /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctblas_d.lib" - -!ENDIF - -# Begin Target - -# Name "blas - Win32 Release" -# Name "blas - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\ext\blas\dasum.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\daxpy.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dcabs1.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dcopy.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\ddot.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dgbmv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dgemm.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dgemv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dger.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dnrm2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\drot.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\drotg.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\drotm.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\drotmg.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dsbmv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dscal.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dsdot.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dspmv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dspr.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dspr2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dswap.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dsymm.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dsymv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dsyr.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dsyr2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dsyr2k.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dsyrk.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dtbmv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dtbsv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dtpmv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dtpsv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dtrmm.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dtrmv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dtrsm.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dtrsv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dzasum.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\dznrm2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\icamax.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\idamax.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\isamax.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\izamax.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\blas\xerbla.f -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# End Group -# End Target -# End Project diff --git a/win32/vc6/cantera.dsw b/win32/vc6/cantera.dsw deleted file mode 100755 index 3604eaeab..000000000 --- a/win32/vc6/cantera.dsw +++ /dev/null @@ -1,254 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "all"=.\all\all.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name blas - End Project Dependency - Begin Project Dependency - Project_Dep_Name cantera - End Project Dependency - Begin Project Dependency - Project_Dep_Name clib - End Project Dependency - Begin Project Dependency - Project_Dep_Name ctmath - End Project Dependency - Begin Project Dependency - Project_Dep_Name cvode - End Project Dependency - Begin Project Dependency - Project_Dep_Name cxxutils - End Project Dependency - Begin Project Dependency - Project_Dep_Name lapack - End Project Dependency - Begin Project Dependency - Project_Dep_Name oneD - End Project Dependency - Begin Project Dependency - Project_Dep_Name recipes - End Project Dependency - Begin Project Dependency - Project_Dep_Name transport - End Project Dependency - Begin Project Dependency - Project_Dep_Name zeroD - End Project Dependency - Begin Project Dependency - Project_Dep_Name tpx - End Project Dependency - Begin Project Dependency - Project_Dep_Name ck2cti - End Project Dependency - Begin Project Dependency - Project_Dep_Name converters - End Project Dependency -}}} - -############################################################################### - -Project: "blas"=.\blas\blas.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "cantera"=.\cantera\cantera.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "ck2cti"=.\ck2cti\ck2cti.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name cantera - End Project Dependency - Begin Project Dependency - Project_Dep_Name converters - End Project Dependency - Begin Project Dependency - Project_Dep_Name cxxutils - End Project Dependency - Begin Project Dependency - Project_Dep_Name tpx - End Project Dependency -}}} - -############################################################################### - -Project: "clib"=.\clib\clib.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "converters"=.\converters\converters.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "ctmath"=.\ctmath\ctmath.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "cvode"=.\cvode\cvode.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "cxxutils"=.\cxxutils\cxxutils.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "lapack"=.\lapack\lapack.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name blas - End Project Dependency -}}} - -############################################################################### - -Project: "oneD"=.\oneD\oneD.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "recipes"=.\recipes\recipes.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "tpx"=.\tpx\tpx.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "transport"=.\transport\transport.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "zeroD"=.\zeroD\zeroD.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/win32/vc6/cantera/cantera.dsp b/win32/vc6/cantera/cantera.dsp deleted file mode 100755 index 34f0879ca..000000000 --- a/win32/vc6/cantera/cantera.dsp +++ /dev/null @@ -1,673 +0,0 @@ -# Microsoft Developer Studio Project File - Name="cantera" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=cantera - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "cantera.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "cantera.mak" CFG="cantera - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "cantera - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "cantera - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "cantera - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /D "USE_MKL" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cantera.lib" - -!ELSEIF "$(CFG)" == "cantera - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /dbglibs /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cantera_d.lib" - -!ENDIF - -# Begin Target - -# Name "cantera - Win32 Release" -# Name "cantera - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\Cantera\src\BandMatrix.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ChemEquil.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ConstDensityThermo.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Constituents.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ct2ctml.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ctml.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ctvector.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\CVode.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\DenseMatrix.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\EdgeKinetics.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Elements.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\FalloffFactory.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\funcs.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\GasKinetics.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\GasKineticsWriter.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\GRI_30_Kinetics.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Group.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\IdealGasPhase.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ImplicitSurfChem.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\importCTML.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\InterfaceKinetics.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\KineticsFactory.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\misc.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Phase.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\phasereport.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\plots.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\PureFluidPhase.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ReactionPath.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ReactionStoichMgr.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\sort.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\SpeciesThermoFactory.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\State.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\StoichSubstance.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\stringUtils.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\SurfPhase.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ThermoFactory.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ThermoPhase.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\xml.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# Begin Source File - -SOURCE=..\..\Cantera\src\Array.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\BandMatrix.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ChemEquil.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ck2ctml.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\config.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ConstDensityThermo.h -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\Constituent.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Constituents.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ct_defs.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ctDebug.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ctexceptions.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ctlapack.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ctml.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ctvector.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvdense.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvdiag.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\CVode.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvode.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvspgmr.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\DASPK.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\dense.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\DenseMatrix.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\EdgeKinetics.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\EdgePhase.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Elements.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Enhanced3BConc.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\exceptions.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Falloff.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\FalloffFactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\FalloffMgr.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\FuncEval.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\GasKinetics.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\GasKineticsWriter.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\global.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\GRI_30_Kinetics.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Group.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\IdealGasPhase.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ImplicitSurfChem.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\importCK.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\importCTML.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\importXML.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Integrator.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\InterfaceKinetics.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\iterativ.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Jac.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Jac1D.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Jac2.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Kinetics.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\KineticsFactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\lapack.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\llnlmath.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\llnltyps.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\mix_defs.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\MixFactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\MixTransport.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\MMCollisionInt.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\MultiJac.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\MultiResid.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\MultiTransport.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\NasaPoly1.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\NasaThermo.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Newton.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Newton1D.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\nvector.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Phase.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\plots.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\polyfit.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\PropertyCalculator.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\PropertyUpdater.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\pureSubstances.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\RateCoeffMgr.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\reaction_defs.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ReactionData.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ReactionMechanism.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ReactionPath.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ReactionStoichMgr.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Reactor.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ReactorBase.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\recipes.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Resid1D.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\RxnRates.h -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\RxnSpecies.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\sort.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\SpeciesThermo.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\SpeciesThermoFactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\SpeciesThermoMgr.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\speciesThermoTypes.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\spgmr.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\State.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\StFlow.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\StoichManager.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\stringUtils.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\surfKinetics.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\SurfPhase.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\TempCacher.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\TempFuncMgr.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ThermoFactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ThermoPhase.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\ThirdBodyMgr.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\TigerPolynomial.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\TransportFactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\units.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\utilities.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\vec_functions.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\Wall.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\xml.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/cantera_examples/cantera_examples.dsw b/win32/vc6/cantera_examples/cantera_examples.dsw deleted file mode 100755 index 81b048bad..000000000 --- a/win32/vc6/cantera_examples/cantera_examples.dsw +++ /dev/null @@ -1,29 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "examples"="..\..\examples\cxx\examples.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/win32/vc6/ck2cti/ck2cti.dsp b/win32/vc6/ck2cti/ck2cti.dsp deleted file mode 100644 index 85bde3794..000000000 --- a/win32/vc6/ck2cti/ck2cti.dsp +++ /dev/null @@ -1,107 +0,0 @@ -# Microsoft Developer Studio Project File - Name="ck2cti" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=ck2cti - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ck2cti.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ck2cti.mak" CFG="ck2cti - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "ck2cti - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "ck2cti - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "ck2cti - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../bin" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 /out:"../../build/bin/i686-pc-win32/ck2cti.exe" - -!ELSEIF "$(CFG)" == "ck2cti - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../bin" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /out:"../../build/i686-pc-win32/bin/ck2cti_d.exe" /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "ck2cti - Win32 Release" -# Name "ck2cti - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\tools\src\ck2cti.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/win32/vc6/ckreader/ckreader.dsp b/win32/vc6/ckreader/ckreader.dsp deleted file mode 100755 index 94a71af59..000000000 --- a/win32/vc6/ckreader/ckreader.dsp +++ /dev/null @@ -1,213 +0,0 @@ -# Microsoft Developer Studio Project File - Name="ckreader" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=ckreader - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ckreader.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ckreader.mak" CFG="ckreader - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "ckreader - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "ckreader - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "ckreader - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD F90 /assume:underscore /iface:nomixed_str_len_arg /iface:cref /libs:static /math_library:fast /names:lowercase -# SUBTRACT F90 /threads -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /W3 /GX /I "../../include" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\lib\ckreader.lib" - -!ELSEIF "$(CFG)" == "ckreader - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "..\..\lib" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD F90 /assume:underscore /dbglibs /iface:nomixed_str_len_arg /iface:cref /names:lowercase -# SUBTRACT F90 /threads -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "../../include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\lib\ckreader_d.lib" - -!ENDIF - -# Begin Target - -# Name "ckreader - Win32 Release" -# Name "ckreader - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\CKReader\src\atomicWeightDB.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\CKParser.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\ckr_utils.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\CKReader.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\filter.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\Reaction.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\thermoFunctions.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\writelog.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\CKReader\src\CKParser.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\CKParser.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\ckr_defs.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\ckr_defs.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\ckr_utils.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\ckr_utils.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\CKReader.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\CKReader.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\config.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\config.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\Constituent.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\Constituent.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\Element.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\Element.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\Reaction.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\Reaction.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\Species.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\Species.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\thermoFunctions.h -# End Source File -# Begin Source File - -SOURCE="..\..\dv\cantera-1.1b\CKReader\src\thermoFunctions.h" -# End Source File -# Begin Source File - -SOURCE=..\..\CKReader\src\writelog.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/clib/clib.dsp b/win32/vc6/clib/clib.dsp deleted file mode 100644 index e8e00e5ba..000000000 --- a/win32/vc6/clib/clib.dsp +++ /dev/null @@ -1,161 +0,0 @@ -# Microsoft Developer Studio Project File - Name="clib" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=clib - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "clib.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "clib.mak" CFG="clib - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "clib - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "clib - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "clib - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /compile_only /libs:dll /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"../../build/lib/i686-pc-win32/clib.lib" - -!ELSEIF "$(CFG)" == "clib - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"../../build/lib/i686-pc-win32/clib_d.lib" - -!ENDIF - -# Begin Target - -# Name "clib - Win32 Release" -# Name "clib - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ct.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctbdry.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctfunc.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctonedim.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctreactor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctrpath.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctsurf.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctxml.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\Storage.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\Cabinet.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctbdry.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\matlab\cantera\src\ctmatutils.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctreactor.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctrpath.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\ctxml.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\clib\src\Storage.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/converters/converters.dsp b/win32/vc6/converters/converters.dsp deleted file mode 100644 index 022bbfb24..000000000 --- a/win32/vc6/converters/converters.dsp +++ /dev/null @@ -1,161 +0,0 @@ -# Microsoft Developer Studio Project File - Name="converters" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=converters - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "converters.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "converters.mak" CFG="converters - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "converters - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "converters - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "converters - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"../../build/lib/i686-pc-win32/converters.lib" - -!ELSEIF "$(CFG)" == "converters - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"../../build/lib/i686-pc-win32/converters_d.lib" - -!ENDIF - -# Begin Target - -# Name "converters - Win32 Release" -# Name "converters - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\atomicWeightDB.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\ck2ct.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\CKParser.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\ckr_utils.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\CKReader.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\Reaction.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\thermoFunctions.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\writelog.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\ck2ct.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\CKParser.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\ckr_defs.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\ckr_utils.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\CKReader.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\Reaction.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\thermoFunctions.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\converters\writelog.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/ct/ct.dsp b/win32/vc6/ct/ct.dsp deleted file mode 100755 index 085488451..000000000 --- a/win32/vc6/ct/ct.dsp +++ /dev/null @@ -1,109 +0,0 @@ -# Microsoft Developer Studio Project File - Name="ct" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=ct - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ct.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ct.mak" CFG="ct - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "ct - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "ct - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "ct - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\lib" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /dll /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /dll /libs:static /math_library:fast /names:lowercase /nologo /warn:nofileopt -# SUBTRACT F90 /threads -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CT_EXPORTS" /YX /FD /c -# ADD CPP /nologo /W3 /GX /O2 /Ob2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CT_EXPORTS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib dfor.lib /nologo /dll /machine:I386 /include:"__matherr" /out:"c:\winnt\system32\cantera14.dll" - -!ELSEIF "$(CFG)" == "ct - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "..\..\lib" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /dll /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /debug:full /iface:nomixed_str_len_arg /iface:cref /dll /libs:static /names:lowercase /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CT_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CT_EXPORTS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib dfor.lib /nologo /dll /debug /machine:I386 /include:"__matherr" /out:"c:\winnt\system32\cantera14.dll" /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "ct - Win32 Release" -# Name "ct - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/win32/vc6/ctmath/ctmath.dsp b/win32/vc6/ctmath/ctmath.dsp deleted file mode 100755 index 4279d776f..000000000 --- a/win32/vc6/ctmath/ctmath.dsp +++ /dev/null @@ -1,194 +0,0 @@ -# Microsoft Developer Studio Project File - Name="ctmath" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=ctmath - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ctmath.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ctmath.mak" CFG="ctmath - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "ctmath - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "ctmath - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "ctmath - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\lib" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctmath.lib" - -!ELSEIF "$(CFG)" == "ctmath - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../lib" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /dbglibs /debug:none /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /optimize:0 /threads /traceback /warn:argument_checking /warn:nofileopt -# SUBTRACT F90 /automatic /fast -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctmath_d.lib" - -!ENDIF - -# Begin Target - -# Name "ctmath - Win32 Release" -# Name "ctmath - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\ext\math\daux.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\ddaspk.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\dgbefa.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\dgbsl.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\dgefa.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\dgesl.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\dp1vlu.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\dpcoef.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\dpolft.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\fdump.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\idamax.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\j4save.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\mach.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\pcoef.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\polfit.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\pvalue.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\xercnt.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\xerhlt.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\xermsg.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\xerprn.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\xersve.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\xgetua.f -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# Begin Source File - -SOURCE=..\..\ext\math\cblas.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\math\gmres.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/ctsetup/ctsetup.dsp b/win32/vc6/ctsetup/ctsetup.dsp deleted file mode 100755 index 53f6f3f69..000000000 --- a/win32/vc6/ctsetup/ctsetup.dsp +++ /dev/null @@ -1,106 +0,0 @@ -# Microsoft Developer Studio Project File - Name="ctsetup" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=ctsetup - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ctsetup.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ctsetup.mak" CFG="ctsetup - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "ctsetup - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "ctsetup - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "ctsetup - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /compile_only /math_library:fast /nologo /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /W3 /GX /O2 /I "../../include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 /out:"../../bin/ctsetup.exe" - -!ELSEIF "$(CFG)" == "ctsetup - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "ctsetup - Win32 Release" -# Name "ctsetup - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\tools\src\ctsetup.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/win32/vc6/cvode/cvode.dsp b/win32/vc6/cvode/cvode.dsp deleted file mode 100755 index 164b71d3f..000000000 --- a/win32/vc6/cvode/cvode.dsp +++ /dev/null @@ -1,195 +0,0 @@ -# Microsoft Developer Studio Project File - Name="cvode" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=cvode - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "cvode.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "cvode.mak" CFG="cvode - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "cvode - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "cvode - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "cvode - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\lib" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD F90 /assume:underscore /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /threads -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /I "..\..\ext\cvode\include" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cvode.lib" - -!ELSEIF "$(CFG)" == "cvode - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../lib" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD F90 /assume:underscore /dbglibs /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /threads -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "..\..\ext\cvode\include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cvode_d.lib" - -!ENDIF - -# Begin Target - -# Name "cvode - Win32 Release" -# Name "cvode - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\ext\cvode\source\band.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\cvband.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\cvbandpre.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\cvdense.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\cvdiag.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\cvode.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\cvspgmr.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\dense.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\iterativ.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\llnlmath.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\nvector.c -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\source\spgmr.c -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\ext\cvode\include\band.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvband.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvbandpre.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvdense.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvdiag.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvode.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\cvspgmr.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\dense.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\iterativ.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\llnlmath.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\llnltyps.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\nvector.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\cvode\include\spgmr.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/cxxutils/cxxutils.dsp b/win32/vc6/cxxutils/cxxutils.dsp deleted file mode 100644 index 085a66992..000000000 --- a/win32/vc6/cxxutils/cxxutils.dsp +++ /dev/null @@ -1,105 +0,0 @@ -# Microsoft Developer Studio Project File - Name="cxxutils" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=cxxutils - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "cxxutils.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "cxxutils.mak" CFG="cxxutils - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "cxxutils - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "cxxutils - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "cxxutils - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /compile_only /libs:dll /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cxxutils.lib" - -!ELSEIF "$(CFG)" == "cxxutils - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\cxxutils_d.lib" - -!ENDIF - -# Begin Target - -# Name "cxxutils - Win32 Release" -# Name "cxxutils - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\Cantera\cxx\src\cxxutils.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\cxx\src\writelog.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# End Group -# End Target -# End Project diff --git a/win32/vc6/cxxutils/cxxutils.mak b/win32/vc6/cxxutils/cxxutils.mak deleted file mode 100644 index dd7b7327c..000000000 --- a/win32/vc6/cxxutils/cxxutils.mak +++ /dev/null @@ -1,174 +0,0 @@ -# Microsoft Developer Studio Generated NMAKE File, Based on cxxutils.dsp -!IF "$(CFG)" == "" -CFG=cxxutils - Win32 Debug -!MESSAGE No configuration specified. Defaulting to cxxutils - Win32 Debug. -!ENDIF - -!IF "$(CFG)" != "cxxutils - Win32 Release" && "$(CFG)" != "cxxutils - Win32 Debug" -!MESSAGE Invalid configuration "$(CFG)" specified. -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "cxxutils.mak" CFG="cxxutils - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "cxxutils - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "cxxutils - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE -!ERROR An invalid configuration is specified. -!ENDIF - -!IF "$(OS)" == "Windows_NT" -NULL= -!ELSE -NULL=nul -!ENDIF - -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "cxxutils - Win32 Release" - -OUTDIR=.\Release -INTDIR=.\Release - -ALL : "..\..\lib\cxxutils.lib" - - -CLEAN : - -@erase "$(INTDIR)\cxxutils.obj" - -@erase "$(INTDIR)\vc60.idb" - -@erase "$(INTDIR)\writelog.obj" - -@erase "..\..\lib\cxxutils.lib" - -"$(OUTDIR)" : - if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" - -F90_PROJ=/compile_only /libs:dll /nologo /threads /warn:nofileopt /module:"Release/" /object:"Release/" -F90_OBJS=.\Release/ -CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /Fp"$(INTDIR)\cxxutils.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c -BSC32=bscmake.exe -BSC32_FLAGS=/nologo /o"$(OUTDIR)\cxxutils.bsc" -BSC32_SBRS= \ - -LIB32=link.exe -lib -LIB32_FLAGS=/nologo /out:"..\..\lib\cxxutils.lib" -LIB32_OBJS= \ - "$(INTDIR)\cxxutils.obj" \ - "$(INTDIR)\writelog.obj" - -"..\..\lib\cxxutils.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS) - $(LIB32) @<< - $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS) -<< - -!ELSEIF "$(CFG)" == "cxxutils - Win32 Debug" - -OUTDIR=.\Debug -INTDIR=.\Debug - -ALL : "..\..\lib\cxxutils_d.lib" - - -CLEAN : - -@erase "$(INTDIR)\cxxutils.obj" - -@erase "$(INTDIR)\vc60.idb" - -@erase "$(INTDIR)\vc60.pdb" - -@erase "$(INTDIR)\writelog.obj" - -@erase "..\..\lib\cxxutils_d.lib" - -"$(OUTDIR)" : - if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" - -F90_PROJ=/check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt /module:"Debug/" /object:"Debug/" /pdbfile:"Debug/DF60.PDB" -F90_OBJS=.\Debug/ -CPP_PROJ=/nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /Fp"$(INTDIR)\cxxutils.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /GZ /c -BSC32=bscmake.exe -BSC32_FLAGS=/nologo /o"$(OUTDIR)\cxxutils.bsc" -BSC32_SBRS= \ - -LIB32=link.exe -lib -LIB32_FLAGS=/nologo /out:"..\..\lib\cxxutils_d.lib" -LIB32_OBJS= \ - "$(INTDIR)\cxxutils.obj" \ - "$(INTDIR)\writelog.obj" - -"..\..\lib\cxxutils_d.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS) - $(LIB32) @<< - $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS) -<< - -!ENDIF - -.c{$(INTDIR)}.obj:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.cpp{$(INTDIR)}.obj:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.cxx{$(INTDIR)}.obj:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.c{$(INTDIR)}.sbr:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.cpp{$(INTDIR)}.sbr:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.cxx{$(INTDIR)}.sbr:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.SUFFIXES: .fpp - -.for{$(F90_OBJS)}.obj: - $(F90) $(F90_PROJ) $< - -.f{$(F90_OBJS)}.obj: - $(F90) $(F90_PROJ) $< - -.f90{$(F90_OBJS)}.obj: - $(F90) $(F90_PROJ) $< - -.fpp{$(F90_OBJS)}.obj: - $(F90) $(F90_PROJ) $< - - -!IF "$(NO_EXTERNAL_DEPS)" != "1" -!IF EXISTS("cxxutils.dep") -!INCLUDE "cxxutils.dep" -!ELSE -!MESSAGE Warning: cannot find "cxxutils.dep" -!ENDIF -!ENDIF - - -!IF "$(CFG)" == "cxxutils - Win32 Release" || "$(CFG)" == "cxxutils - Win32 Debug" -SOURCE=..\..\Cantera\cxx\cxxutils.cpp - -"$(INTDIR)\cxxutils.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -SOURCE=..\..\Cantera\cxx\writelog.cpp - -"$(INTDIR)\writelog.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - - -!ENDIF - diff --git a/win32/vc6/lapack/lapack.dsp b/win32/vc6/lapack/lapack.dsp deleted file mode 100755 index 257a65694..000000000 --- a/win32/vc6/lapack/lapack.dsp +++ /dev/null @@ -1,305 +0,0 @@ -# Microsoft Developer Studio Project File - Name="lapack" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=lapack - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "lapack.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "lapack.mak" CFG="lapack - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "lapack - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "lapack - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "lapack - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctlapack.lib" - -!ELSEIF "$(CFG)" == "lapack - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "..\..\lib" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /dbglibs /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\ctlapack_d.lib" - -!ENDIF - -# Begin Target - -# Name "lapack - Win32 Release" -# Name "lapack - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\ext\lapack\dbdsqr.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgbsv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgbtf2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgbtrf.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgbtrs.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgebd2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgebrd.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgelq2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgelqf.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgelss.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgeqr2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgeqrf.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgetf2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgetrf.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgetri.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dgetrs.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlabad.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlabrd.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlacpy.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlamch.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlange.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlapy2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlarf.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlarfb.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlarfg.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlarft.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlartg.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlas2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlascl.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlaset.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlasq1.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlasq2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlasq3.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlasq4.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlasr.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlasrt.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlassq.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlasv2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dlaswp.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dorg2r.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dorgbr.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dorgl2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dorglq.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dorgqr.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dorm2r.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dormbr.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dorml2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dormlq.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\dormqr.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\drscl.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\ilaenv.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\lapack\lsame.f -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# End Group -# End Target -# End Project diff --git a/win32/vc6/oneD/oneD.dsp b/win32/vc6/oneD/oneD.dsp deleted file mode 100644 index 541c6675c..000000000 --- a/win32/vc6/oneD/oneD.dsp +++ /dev/null @@ -1,161 +0,0 @@ -# Microsoft Developer Studio Project File - Name="oneD" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=oneD - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "oneD.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "oneD.mak" CFG="oneD - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "oneD - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "oneD - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "oneD - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\oneD.lib" - -!ELSEIF "$(CFG)" == "oneD - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\oneD_d.lib" - -!ENDIF - -# Begin Target - -# Name "oneD - Win32 Release" -# Name "oneD - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\boundaries1D.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\MultiJac.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\MultiNewton.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\newton_utils.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\OneDim.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\refine.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\Sim1D.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\StFlow.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\Inlet1D.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\Jac1D.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\MultiJac.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\MultiNewton.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\Newton1D.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\OneDim.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\Resid1D.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\oneD\StFlow.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/recipes/recipes.dsp b/win32/vc6/recipes/recipes.dsp deleted file mode 100755 index 5d00a6ae5..000000000 --- a/win32/vc6/recipes/recipes.dsp +++ /dev/null @@ -1,129 +0,0 @@ -# Microsoft Developer Studio Project File - Name="recipes" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=recipes - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "recipes.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "recipes.mak" CFG="recipes - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "recipes - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "recipes - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "recipes - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /math_library:fast /names:lowercase /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\recipes.lib" - -!ELSEIF "$(CFG)" == "recipes - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /dbglibs /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\recipes_d.lib" - -!ENDIF - -# Begin Target - -# Name "recipes - Win32 Release" -# Name "recipes - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\ext\recipes\simp1.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\recipes\simp2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\recipes\simp3.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\recipes\simplx.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\recipes\splie2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\recipes\splin2.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\recipes\spline.f -# End Source File -# Begin Source File - -SOURCE=..\..\ext\recipes\splint.f -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# End Group -# End Target -# End Project diff --git a/win32/vc6/tpx/tpx.dsp b/win32/vc6/tpx/tpx.dsp deleted file mode 100644 index 3b20a86f8..000000000 --- a/win32/vc6/tpx/tpx.dsp +++ /dev/null @@ -1,157 +0,0 @@ -# Microsoft Developer Studio Project File - Name="tpx" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=tpx - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "tpx.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "tpx.mak" CFG="tpx - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "tpx - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "tpx - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "tpx - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\tpx.lib" - -!ELSEIF "$(CFG)" == "tpx - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /assume:underscore /check:bounds /compile_only /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\tpx_d.lib" - -!ENDIF - -# Begin Target - -# Name "tpx - Win32 Release" -# Name "tpx - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\ext\tpx\Hydrogen.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Methane.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Nitrogen.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Oxygen.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Sub.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\utils.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Water.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# Begin Source File - -SOURCE=..\..\ext\tpx\Hydrogen.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Methane.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Nitrogen.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Oxygen.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Sub.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\subs.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\utils.h -# End Source File -# Begin Source File - -SOURCE=..\..\ext\tpx\Water.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/tpx/tpx.mak b/win32/vc6/tpx/tpx.mak deleted file mode 100644 index 24981837d..000000000 --- a/win32/vc6/tpx/tpx.mak +++ /dev/null @@ -1,224 +0,0 @@ -# Microsoft Developer Studio Generated NMAKE File, Based on tpx.dsp -!IF "$(CFG)" == "" -CFG=tpx - Win32 Debug -!MESSAGE No configuration specified. Defaulting to tpx - Win32 Debug. -!ENDIF - -!IF "$(CFG)" != "tpx - Win32 Release" && "$(CFG)" != "tpx - Win32 Debug" -!MESSAGE Invalid configuration "$(CFG)" specified. -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "tpx.mak" CFG="tpx - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "tpx - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "tpx - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE -!ERROR An invalid configuration is specified. -!ENDIF - -!IF "$(OS)" == "Windows_NT" -NULL= -!ELSE -NULL=nul -!ENDIF - -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "tpx - Win32 Release" - -OUTDIR=.\Release -INTDIR=.\Release - -ALL : "..\..\lib\tpx.lib" - - -CLEAN : - -@erase "$(INTDIR)\Hydrogen.obj" - -@erase "$(INTDIR)\Methane.obj" - -@erase "$(INTDIR)\Nitrogen.obj" - -@erase "$(INTDIR)\Oxygen.obj" - -@erase "$(INTDIR)\Sub.obj" - -@erase "$(INTDIR)\utils.obj" - -@erase "$(INTDIR)\vc60.idb" - -@erase "$(INTDIR)\Water.obj" - -@erase "..\..\lib\tpx.lib" - -"$(OUTDIR)" : - if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" - -F90_PROJ=/assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /warn:nofileopt /module:"Release/" /object:"Release/" -F90_OBJS=.\Release/ -CPP_PROJ=/nologo /MD /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /Fp"$(INTDIR)\tpx.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c -BSC32=bscmake.exe -BSC32_FLAGS=/nologo /o"$(OUTDIR)\tpx.bsc" -BSC32_SBRS= \ - -LIB32=link.exe -lib -LIB32_FLAGS=/nologo /out:"..\..\lib\tpx.lib" -LIB32_OBJS= \ - "$(INTDIR)\Methane.obj" \ - "$(INTDIR)\Nitrogen.obj" \ - "$(INTDIR)\Oxygen.obj" \ - "$(INTDIR)\Sub.obj" \ - "$(INTDIR)\utils.obj" \ - "$(INTDIR)\Water.obj" \ - "$(INTDIR)\Hydrogen.obj" - -"..\..\lib\tpx.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS) - $(LIB32) @<< - $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS) -<< - -!ELSEIF "$(CFG)" == "tpx - Win32 Debug" - -OUTDIR=.\Debug -INTDIR=.\Debug - -ALL : "..\..\lib\tpx_d.lib" - - -CLEAN : - -@erase "$(INTDIR)\Hydrogen.obj" - -@erase "$(INTDIR)\Methane.obj" - -@erase "$(INTDIR)\Nitrogen.obj" - -@erase "$(INTDIR)\Oxygen.obj" - -@erase "$(INTDIR)\Sub.obj" - -@erase "$(INTDIR)\utils.obj" - -@erase "$(INTDIR)\vc60.idb" - -@erase "$(INTDIR)\vc60.pdb" - -@erase "$(INTDIR)\Water.obj" - -@erase "..\..\lib\tpx_d.lib" - -"$(OUTDIR)" : - if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" - -F90_PROJ=/assume:underscore /check:bounds /compile_only /debug:full /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /reentrancy:threaded /traceback /warn:argument_checking /warn:nofileopt /module:"Debug/" /object:"Debug/" /pdbfile:"Debug/DF60.PDB" -F90_OBJS=.\Debug/ -CPP_PROJ=/nologo /MD /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /Fp"$(INTDIR)\tpx.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /GZ /c -BSC32=bscmake.exe -BSC32_FLAGS=/nologo /o"$(OUTDIR)\tpx.bsc" -BSC32_SBRS= \ - -LIB32=link.exe -lib -LIB32_FLAGS=/nologo /out:"..\..\lib\tpx_d.lib" -LIB32_OBJS= \ - "$(INTDIR)\Methane.obj" \ - "$(INTDIR)\Nitrogen.obj" \ - "$(INTDIR)\Oxygen.obj" \ - "$(INTDIR)\Sub.obj" \ - "$(INTDIR)\utils.obj" \ - "$(INTDIR)\Water.obj" \ - "$(INTDIR)\Hydrogen.obj" - -"..\..\lib\tpx_d.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS) - $(LIB32) @<< - $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS) -<< - -!ENDIF - -.c{$(INTDIR)}.obj:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.cpp{$(INTDIR)}.obj:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.cxx{$(INTDIR)}.obj:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.c{$(INTDIR)}.sbr:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.cpp{$(INTDIR)}.sbr:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.cxx{$(INTDIR)}.sbr:: - $(CPP) @<< - $(CPP_PROJ) $< -<< - -.SUFFIXES: .fpp - -.for{$(F90_OBJS)}.obj: - $(F90) $(F90_PROJ) $< - -.f{$(F90_OBJS)}.obj: - $(F90) $(F90_PROJ) $< - -.f90{$(F90_OBJS)}.obj: - $(F90) $(F90_PROJ) $< - -.fpp{$(F90_OBJS)}.obj: - $(F90) $(F90_PROJ) $< - - -!IF "$(NO_EXTERNAL_DEPS)" != "1" -!IF EXISTS("tpx.dep") -!INCLUDE "tpx.dep" -!ELSE -!MESSAGE Warning: cannot find "tpx.dep" -!ENDIF -!ENDIF - - -!IF "$(CFG)" == "tpx - Win32 Release" || "$(CFG)" == "tpx - Win32 Debug" -SOURCE=..\..\ext\tpx\Hydrogen.cpp - -"$(INTDIR)\Hydrogen.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -SOURCE=..\..\ext\tpx\Methane.cpp - -"$(INTDIR)\Methane.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -SOURCE=..\..\ext\tpx\Nitrogen.cpp - -"$(INTDIR)\Nitrogen.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -SOURCE=..\..\ext\tpx\Oxygen.cpp - -"$(INTDIR)\Oxygen.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -SOURCE=..\..\ext\tpx\Sub.cpp - -"$(INTDIR)\Sub.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -SOURCE=..\..\ext\tpx\utils.cpp - -"$(INTDIR)\utils.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -SOURCE=..\..\ext\tpx\Water.cpp - -"$(INTDIR)\Water.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - - -!ENDIF - diff --git a/win32/vc6/transport/transport.dsp b/win32/vc6/transport/transport.dsp deleted file mode 100644 index 2461bb4cb..000000000 --- a/win32/vc6/transport/transport.dsp +++ /dev/null @@ -1,153 +0,0 @@ -# Microsoft Developer Studio Project File - Name="transport" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=transport - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "transport.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "transport.mak" CFG="transport - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "transport - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "transport - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "transport - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /compile_only /libs:dll /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\transport.lib" - -!ELSEIF "$(CFG)" == "transport - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\transport_d.lib" - -!ENDIF - -# Begin Target - -# Name "transport - Win32 Release" -# Name "transport - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;f90;for;f;fpp" -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\DustyGasTransport.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\MixTransport.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\MMCollisionInt.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\MultiTransport.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\SolidTransport.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\TransportFactory.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd" -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\DustyGasTransport.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\FtnTransport.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\MixTransport.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\MMCollisionInt.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\MultiTransport.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\TransportBase.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\TransportFactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\transport\TransportParams.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc6/zeroD/zeroD.dsp b/win32/vc6/zeroD/zeroD.dsp deleted file mode 100644 index 03f414c63..000000000 --- a/win32/vc6/zeroD/zeroD.dsp +++ /dev/null @@ -1,149 +0,0 @@ -# Microsoft Developer Studio Project File - Name="zeroD" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=zeroD - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "zeroD.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "zeroD.mak" CFG="zeroD - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "zeroD - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "zeroD - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -F90=df.exe -RSC=rc.exe - -!IF "$(CFG)" == "zeroD - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE F90 /compile_only /nologo /warn:nofileopt -# ADD F90 /assume:underscore /compile_only /iface:nomixed_str_len_arg /iface:cref /libs:dll /names:lowercase /nologo /threads /warn:nofileopt -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /Ob2 /I "../../Cantera/src" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\zeroD.lib" - -!ELSEIF "$(CFG)" == "zeroD - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE F90 /check:bounds /compile_only /debug:full /nologo /traceback /warn:argument_checking /warn:nofileopt -# ADD F90 /check:bounds /compile_only /debug:full /libs:dll /nologo /threads /traceback /warn:argument_checking /warn:nofileopt -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Gm /GX /ZI /Od /I "../../Cantera/src" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\build\lib\i686-pc-win32\zeroD_d.lib" - -!ENDIF - -# Begin Target - -# Name "zeroD - Win32 Release" -# Name "zeroD - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\FlowDevice.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\Reactor.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\ReactorBase.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\ReactorNet.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\Wall.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\flowControllers.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\FlowDevice.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\PID_Controller.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\Reactor.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\ReactorBase.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\ReactorNet.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\Reservoir.h -# End Source File -# Begin Source File - -SOURCE=..\..\Cantera\src\zeroD\Wall.h -# End Source File -# End Group -# End Target -# End Project diff --git a/win32/vc7/SetupCantera/SetupCantera.vdproj b/win32/vc7/SetupCantera/SetupCantera.vdproj deleted file mode 100755 index 569e37eb6..000000000 --- a/win32/vc7/SetupCantera/SetupCantera.vdproj +++ /dev/null @@ -1,16924 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:701" -"ProjectType" = "8:{2C2AF0D9-9B47-4FE5-BEF2-169778172667}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupCantera" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_0067AAD709D94D2693870A06ECD55183" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0170832FE2DB4AE0BF9768C53BE03A84" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_022EDF1564FF4680B6AA609CE897983A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0286644D808546E59C95FE7B9B7A232F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0288F5F0AEF2495BA53D3C165E79D0AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04510DC7456C459E895E2178EF955D78" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_048942F8191B44939038E07F3C41D94D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04C83EB86A3C45AB93638133493E5923" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_051107F9F8CE4364AC76D00D23F8B7C5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05690F470DFA457FBF7C925A8420EE5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_059198FAFB464F61988E32C60E43919C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05BC27CACC7F45BD9EFDB6490C3EC5DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05EE24E611E74A1C88CE22420CA5500D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05FE255C00F74DAEB6BFC00A32066DFA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0700963A1F1B41FFABC3911498DB18B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08587955063141779B605860D7FF04D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0936663A9C31411CA21989F4FA39A5F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_09812E60422340BF9B92C7BF4CDE6FC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_099E198F6C01436DB271857F1309977D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A01A5CC173A4619BBAE80DFCE7B23B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2F83F932A74CAABB87DEEAC1B9536C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0ACC7910CC8A46E38521F8A78AF253D2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B0170BC983349DD945697DB4576507A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B09C9A0BF24498399548814F95D1EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C5AD82FE10848BA967AF0050B6BCD08" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C8BFBA19BE949699F417570F8C69B5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C9010E357C748BEB820CF0E830F09DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0CF3A0C352FA4A0FB705041957C9EE00" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D0FFCC38C4645D997283F1C5CED5E06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D47388E1B474AF08F6DA0FE72025C42" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DDF1766C6A04C76AE6AF7FBC35E471B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1049E82786DB4EB2BDEFF972136B0F19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_105638BB017C47DA814720D4C027908E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11553AE6EA7A424D9621E724DFECC70F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1176331BD6324C92BACD1F0805ABFA46" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11AF9ACB25D6477DAE6906C2F6F688CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11E4F38118B54DC680D5CB741B29BE8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11EE4F61EA0740F1BE63419C7A48F185" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12349022365F4DF1A533277C07DDBA73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_125E1AC217CC40BD8F4534E875CB9D0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12BF22BA87424178B29DB07E669C3501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_135CC30D556E468298A4E1646E4B0135" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_13B59406C1A74D4CA358FDF48F349761" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1420A489C89E4859ACE78FD5DD27C00A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14580E5B948E47509A941AA338014D25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_159658AD53204EF58715D06753DE0026" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15D3C38D37A94D67B313EC3B57DA2AC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1603140AC6F7489CA14D3F41F58E9379" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16126DCF89E8430A8B24ECCEE00D00DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_164F9AE8646F49A28EDD39E09AC0B23E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_165E0EA08F1B4F398EE7496331A1A51B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C0D130AB2748E6890B937071A27A0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C40536EB0A45658DF4EC29D7CBBFF9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16DD6B492C274AC6BA6ED913C513A10B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_172771DB7EE34270A0D796311102BE33" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_17873678EB8F4A3AB2296EB4E4483220" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_17EFE54ABDB6418D84E64FF18DB0FE02" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1861CF609E4C4EE2B209A26A6705ACD5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_18712B731C5F4CED9DD70EC680C9BE15" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_187CA9DA142B443496BC31D559FF6D97" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1889FAD37671415E95CCA5B1BCAC9E32" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_188F8F797CE24E7C9FC6BD62D2B5D37F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A3D179D05C74A909F2B5B6E254459BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A66CE0396934BBDBA728386725B2310" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A758A2D9CC24D13A732C1F61D692657" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1AA05F39A2464BDD922D26B58FE78BC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1AB392F5A076480D97046D01A587A4B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B053CD5461740CB891855B80F250AED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1BCF13AA12F344EAA567AE54F11CB0AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D0B3F7CDFF14AD2A879AF1565D65509" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D7106B99F8D451CA0562A6C57C2CC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DF1B93159BE475CA0438F31722F856B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1EC0682BF67E48639869FD490FC06F86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F6340B91C654BDAB4FDCA7B545A9ADD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_218EB718190641D592079146D7F47C17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_219FDC3ACB2A4C81935851A9CAA7E1EF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21EB392DF37A421CABBDA197A9226C0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2278673C1CB94B89B0F33D7D7588F290" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2284F25E41194D2895B06C3FA1BC96DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_232F4C7716264866BDEA07B97B583460" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_23CE4DDD38054CA49B17BEEF4D728230" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254CA5A242F04444AB0F18F9ECDD091B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254F288B4BAC4BDFB4B21E76747FF336" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_262DC17B610648E5A48002B469EC6A57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2656FD40F3784C588D4004D409B0F80E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26A7FE2928CE45CDB52C4B3326A33951" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26E683AE357D4F70A3DC3C57295541D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26F0BA63411646978592D51F26AEA36D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27549892F823435798B476FC52F3F012" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27DE8E5E29574E81B2D3ACC4E87B9637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_290E7C7E5DF64841B1F913EEFE006069" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29200BDEF8B44EC69E128788F4E09B16" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_299CD5580EB645D191532FE4F24EC6CF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29CA5AAAF8D342359823BB1B4CC30E95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A1589369A874D0EBFFE3F6D98426A49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A92BFBE1A3F4CC6AAF1EED621155E95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A9396D26DA740BB831E923D14573BC0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A962975342142978B3DE11A20C9AA52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2AA7C0041FC74F718A561EF0696DCB45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D09076E55604C73A82892D474E11779" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2DEE49E2A7B4424E824CE5D0FB2846A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EC7B0A350C34DF0B88C45A54FBFCC99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2FDECE537DED425EBD73BE8C715FFAE6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_30A47D7D93D84874A41E1782FDBCEAAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31A618C156154A138E899086B9A8AC54" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31AD332AA56C4DF190FE6D941FAAFBFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31B41886AF9A41B8AAA9C3624E7FD48C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31E9E8DFB7144795A05AEEE66B279AB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32A08E26D90A41869BE37A47450DADCC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32EAE5622F7540E4AC357D8D1CE10D8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33DBCAB550F1494AA40EFC4ABEFBADC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34722C3A5A5F4217AD66444E408BD476" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3494F58B264F4001B9AEEEBD33A0843F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_35BB68CEE7844BC0BC845BEEE3A800D8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_362E5E6B9766498182C5008280A41BD2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36C2D841FA684319BDF30F2B68589637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_372176D2A2AF406DBD625F54972DD57C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3778A89EFC6C475E8AFE84940043B8DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37B9F5E138A645AAA6CE6C3A36E5361F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37DD28283FAE43A78586C3D99D999022" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_385C8980D3A44A2093CD638714277678" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3877AF8B51904A3BBC4727D4CAC03D90" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_389AC795E7E842888394BE52A051FA12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_38B1A8CD480B4DBE9ABEA7D51A48769B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39593F8016464F6383246F854982073F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39905D4925564C469DE3CBE980978999" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_399AD2EA4A9E495B953EBC279475E4A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39B2C611CD84448489F8AAFF5BD8AB28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3A49848C6AC948D8A7CB60B10FE0D83A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3AC42291E06E4768B0D87839DC9B9E77" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3AD5931AA5BC4F4981CDE7B72643E7CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3B00646190674532ABC512E89130A0D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3BED1ACF1B8543C7AF5040D332A1E599" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CCADD10D5934D599E6AAFF04D6353B2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CFA6387302F446AB7938595154FF208" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D56811387944E55AD39C984228C4EAB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3DCD90FBD1DF4FA588238C70E0BADBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E35E9D3EC6141BBA820F7D01B815B64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E89277358E2422686E4ADF9C0FCCA25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F2025A866C24187833376E3E60EC4A2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F96D57E8F9E461F8C90E0ACB1C937D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FDE004992FC47238D3E9C37E49C2579" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FE261F2E167434D804087B6019EB309" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FE8476E84424F12B0A26E454203FAD5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF4115C0C3E4C1686E79FBDDD2387B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_406AF99237D3409BB85917A5A60F74ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_40E56E51E02745B4AEBA40660CEC686A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4112A1F6C299475E8562339C3C38AA30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_411BB46D848848E492899FDC17C2D1CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41BB99990E1246928D44C3F17942116E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_426E85F25D874E3F8F14D31E41AACF51" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42A0DE2343CF4D5FB768588C28368E2F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43113139A9474DD883EF5305014F1568" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_436F32BB3B714A24A6B5FD1BC342A9D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43B63451B43146E08FD01ABAA5B61A0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43C69E8F23BD4919BB63BD40909B3759" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4401025D0D424A86B6C25A9B34792A95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44512354EA8C4577A9085C81B028A63A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4479546E1AAE44FFAEFC0A710BA2E8FA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44DD06CC20DF420A998E2F1D0B980A99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_451FADB3D70145F9BF8D235E092B637A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4555B1D563634B6AAE88E0051E34DCE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_46756B27C91E4C17A9F3C06BCC6D9011" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_471DA45E05AD445EB7B143657DB4688C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_47F3CF4BEA29482B95C1AFFF8F6C8145" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_480527309EA14538802C74D4B190DBBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4887AB1DD1874B449335FF13EE210FE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A677774412940DEAF6AF1EDC27A3C58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B3F9D28B70C4E339662B2029BC4027B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B9C0B2304BF45D3B6A94AB1ABEF6910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BB20697D6B74F4C8917A9D04AA4A240" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C18112956A24BF6A1BF387E433469DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C432477911B4A8596B03914FF5916C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D71E06EFE884CABA33151E1C5263C86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DCD79F33434471C82E0AF768F55ABDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EEA2D8311E542998617CB07AF269FD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4F7168452B334356BB62A52AEE0201A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5095A6E6BF554FEDBAEF263F05DDD77B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51DD3AC0619046728F688D9306D31844" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51E2B9E78A964BD383DD8FD460AA4BEF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52519B41A4064DEEB452445FD3550B6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52C2FDDE33D146F7B4A53E45929E39B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52F132AB35554839AB7EB037617DB96B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_533E20A890AF4129A378968FF67AF0A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5348624853F34BCE9FCDEB2C053C1540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53EA1C41778744F09879AEAE0BAA0233" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53F7FA910CDC4CDEBD4257B5798B1B68" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54A0EE28997D4BAFA2E782BD6448A658" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_550E0C20B3DD45E38E11C9AB4CA6B544" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_562372D5415546AD844E25834E0DECD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_57B5E8440B4D4CB2A04A543D12B02DC5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_589104AC830A4577B736D1106E7955A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_58EB415F05014A608F1D6B281082D92F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59166DBD45564A4195E8A079862D7DF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59245571144542D38FEC0EC1F00503B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59AA52C5E25745589B34218C6B13216B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59C5E6BB66254AE1A6943516F13B4FDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A494D5F32BD411D861645EF9D5CDB73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AE86752EC8A4B54BA6494A9F33FFC71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5CF936560FF2465682DB2D4643C37441" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5D50FACA9AE548919661678B7562D727" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6006C6D0EC294FC39274776F6EA12BCD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_60D94AAFB6AA45F89A490D537326B0A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_61151103C608408DB35D78567822421D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_611E4F1900564CD88F755749C3B89219" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6221061E3BD647AF89BF4AD1785DC9EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_627849EB38DD4A1D9DFE2E6E7DFFE041" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6349662626C947BC91332BE085230672" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_655DC211FDA743B8AAE2A254B8D24127" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_655F0B213A054795ACD83B755944E151" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_65A52D659E1642F8A7567FA7CC9B9189" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6693B16E7E2A4AE3ADC494334E18058F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6725A6F15136415BB26BADDD3CF96F66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6759CBA1D81D4C59A902AE29534B6255" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_675DF947A58B4BAB9DCCF837D18044E9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67B4668A9613497EAD89E4D9D5CDA7B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A0835716DBD4D95BFAF15AAB6BBC2B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A9E2F67751E4036B32A3F73F389F4B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AAD2BE4779D4141B7F3175116575B70" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AEC5D1E91784853A899657570B75158" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B3FE5F1CCAF42F99BDF0DBA4A5E7AD2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B4133DAEDD847D9ADB436F3A9E515BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B62C2B086DE4A74ABFDB909919F3B1B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BB63A2172964772A16E8C5DC8FCB473" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6CC5AB88FEE24B269BFAE0EB2130B7E3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6CF85F10BFE140FDA7DFDB6FBDAAEAA7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D020030302F41549FD1141A91CA6BA2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D7DFA49CD7F422597521F6BC18DBEAA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E40F711DE6E4C15977B10FEBD1145B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6F1E0DC55B9845DAB4FE758F0B54914C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FF6BF505F0442DF81B97A7B0DACFF53" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7086E515306342B7A4A3EB7E47148FEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_713B640959AC45A78E7B9AE581F86E14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7170E7A643DA42188C7FC5398E2CC974" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7189BBF81A8B46F596C2D94D52CA15DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73514E9BC5F44C509C562E01E8A958C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_738E966D4DA74FCE8C40B58983F4DBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73BDDE5CAC1142768E793BC00B124032" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73DF85D78FB147FEBCDD6232AD5C85A8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76175107E4CC4459ABF6F887224C85F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_764D7127961644B186D3F90292091805" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76E915885B634DC6B57F89520C4788A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77A9AA9EC6624BD592C9D29EC6F94989" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77C0B7A9B02F4EDFA6786BD64727556E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77EAFF9FBF464DF08EFF37113E7DFC96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78809E65EB414C2C85CFBE961F4B6D8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78BA658B942543D689698300AB69FEFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78CC1BF50A534D2DBB2B6196AC20A461" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78CF2DC24832474C9EC5304ABA596D6E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_792574400ACB4125BBD9B4A006D4399E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_795887D785084824B7284296DC74B527" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79674E6058F048B1B7D3CFFBCBC41561" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A639317418840CC95575AFDA89539F7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A85089C17D248A7A8A12641C4F86125" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A85252DC549484891071BF330043EA4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A858331BD01492FB20FD23DB170F745" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A92B5B83A7347D1BFFD0CF1D104ABB2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A9AF6339376421580BF6E8028871929" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7AE8B40AFA7241769B5BE31427ED582B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B504B0354024FE1A61951F08701559B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B7753AD699149308A9D8CED65455D7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B8DFC2B32884190B8B0EA34E86527C1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7BE4FD7D976D4900BD24BD9AB7501E99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7BEA3E9A57AA4F0796638074A3D5ECD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CC6FCB9F695423782EC53DADE5D585A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D3DAEB7E7C647309752BD3A02876B72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7DAE868E207745638026B6656BF95857" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7DD2BAB195754859931B7B5AE308FAFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E05717504C340B8B9D2D8F634AAA31C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E12BAE0A2924E5B83533AABB0BAC4DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E5A64372F454B1D9BBD3B22AAAEBFFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F2A82BE842E42219D6520BB60A87F2B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F3AB5A8BAE44BCD84802649D2AEBF83" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F82322C27494517A818285E796783B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7FC1EE2D828D4E0C9A209479895AE0D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8106318CEF394350AED3B89BE5973CD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_811F3F47C3D94B628C68557B0EB6B36B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_81812B7D110C414C960813023A134932" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_81DA296ED6984B1EBE8917275886C78D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_820901EF2B7645DA9A49A95F3E9DE675" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_82CA2F512C5343BDAB3341734D58FBFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_830D679F865D4CE288583F122140C202" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8354660D2436459FBA8CB92DB7B6E337" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_83F9E2F2692A4018967CB9E659E6841F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_84CDFA9E0AB74435A0D7B55A48424D36" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8549950E280A4786AA6D4BDC9AF44DFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_854DF9ED3FF741069B2D162A049D5E64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85CCBC878A10483FB6D3D2E534E7248B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87132C070E1540D8A4B033B0E98880B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87199ECD95B94DDD883BEC7ADC66AE63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87CEEEEB6DBF409FACD5794BCBD35B3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8801CCC3E95F4B098645DB0BF445E0F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8804860E9572497A8F08D2719B044B55" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_883D69622DD84D3A8A0D79D522CDA96B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89B32FBB4FF441CFBCF0F830E202A7A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89F1C726748E4E57ACFDFC467114BD09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A432F8B24A842C0A70A2D8FD906E798" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A5883FE50804063BBC8EE8DA9BE78DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B0D72F9F1AE422C81E4923414EB4C13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B6199C9EA65475D9FC6C0CE792EA501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C095A81A32D48C6B28D0092BDDB6046" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C1EF93477A54EA39CFAE51E80858A96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7D8CEB11024B759FC6F809723ADF7A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7FD926CFA648FB9CE0ED24957F591B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C9645906D2B4435BF0DDC85F14F5CF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CB8ABF1BC42493F8C6451072245546C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CCF6467ECF34EE59611670E3645C719" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D346FD7000B4F0AAF57691DB6BD9CDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D3C554266D94991816CFFDB66F29AAE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D419E40A1674FC9A198BCD3410D643D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8EF2E69F033240369A701C148ADBDB51" - "OwnerKey" = "8:_0288F5F0AEF2495BA53D3C165E79D0AF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8EF2E69F033240369A701C148ADBDB51" - "OwnerKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8EF2E69F033240369A701C148ADBDB51" - "OwnerKey" = "8:_08587955063141779B605860D7FF04D3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9038E6B538DE4653AF9E77498DC5C9ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_907955714C5E41C3A0C82F4633DEBAC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9084333D5B164E6FBDFA7096FCC75845" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9266F7C8C9F04682AA878E3A5B9BD5C7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_92A6D3125FA44E7B8795DE4EE0D738BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_93900A98FABF44F5BE2F6F23E3EDA13A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_94C0079A642D4D829C612D5537F2BE96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95AD84099D86441F9B0C251039B1A63F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_966477D37CF5451993EFF07CFB2EE25B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_96CCEAC6BE924D6AB858949535654A72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97529CA3195C44A3A6E57668BFF16B96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_979C4C61FFCC47BF9DD9142A747D70F3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97AB3E7B353E4703B550348C63AEFC2D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97B185B78C154874B77D2049B3300B41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E71EC4B7404230AA4186AE74AE88F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E864DEE6A144A78B68D9A3BE9A0413" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_988AFC4E6A904FB582DBBF0DE7C251AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_98C25E56E88B4569BB453DA1FCC0A406" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_997EF831DA8A4F9C99259C70FFD9E6C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99BD8AC4084D439CA80816A89387CF06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F4B3534D1A4C88BFE4FB5D2F216E23" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9AC9ABAE8E744589A8EABDBC4C1B063F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9B44971E00A5481BBA5AFD0A2166D16F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9BC3C81461D04065B1ADF2C07FFF293D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C0C04F635C34CAAB690617751FEF9A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D045060258445C7988DB84395305E71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D6C72386A0B4D3489A13633E229F95D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E7A52340F9643268D1F2F8864729809" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9EEBD642B960482EAD0FB73F1BCB91C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F0C5F7640E84C648A16A5663DC11CF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A00E186E9C8E4BCD92EEF18A7870AB64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0858150B00A472BA6EAE71AEBABDE58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A10BC29DF66D4988A3DADBBF21E5DA4E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A11208A3D61940228E848C672615C531" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1555851966F4CBDB4BE3837641C843A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1A7D85419B04E1892896FD2723CBE05" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B810BE7C004166A16F019DFEBC09A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2ED793453A54C92AD356FF69DBFAFF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A386FFD174A848B8A6383A013CA12077" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A3D6752BC31B442CA999E19F8AA5B2E5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A44EA116D8BD401B9F5CB43FD0A516EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A4C093C7C647401E895109DA2F564C52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A513873E6AEC441CB417942FBA4FE3A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A571DB581B7B4085B6EE29881A27A2D8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6399AF77EE147919D73E720D70C79FF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A694168142B64AB28E79B5E6E5357979" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7C06AF14B3343C09C52E321CD45D0A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7F216F3691F4406AD4BF685C2009EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A88814C184944C9FA3E00A2DE301BB17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A98B9A585D4F41858169AD80172314EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A9ADC45313704C27B5C74CAEEDB877A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA7D54EA12024486AA1ACD45D323E74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA8F667920ED49919F2E5BD8D992450A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AC3CDAB9FDBF4EB79B35F1BEEA5DC02E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ACD48EEEC90A44B2B29B443AB7732B81" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AD48B1B285214A3087453E547D606A85" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AD5F1A421BBC46ACA15AEF28551896B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AD850F3126CA46F9AEB85D4851B8149F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ADC23A23C6B24601989EAE9B94655BB3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE01A18492C447D89BA1FE02869A18DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE0F2B65F5C74B9F9E401125ECABDD41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE235390D3E7456BBC816F28EF0EDE5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AEF2EA186F5D4A0486766CEC08F7A180" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AF09E476CC624AE5AEFCFA41EB35F77E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B0990FEE057B4CEB8E819D4F36FC023E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B137545CCE204222B6876022AB4E6EAD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B25E14F3380641BFA793B8AC5538DE69" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2C4715A10D6448C8785A77EC8E23AFB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B310C19F9C7F4CE6891A34139EB0D630" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3217183190C4EF5AA058E2F2DD49E5B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B34D82DAE3934AE8B7A86ADC89132428" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B37B9EC7F5E24483ABF63844CB762A5D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B383C9B0D56149A18C3933E52A659729" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4FB5F4843A24E41B7FADE7050CD9910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B56AA2981640451A85D5AC8EFFE1D420" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B700B3135C044AE1A0E11F64951C15B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7ADCE96BBE64258BC9786A36007F18B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B813F357BF6E4672A6C5C6420233E416" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B84D58C4160F48F987154A69BA00AA00" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8531EBC9C4146A18DBDEE03537C7895" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B85407140BD04A45836DB232DCF3D374" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B903D3A5E3B84DF2A2022876EB2B2A7A" - "OwnerKey" = "8:_0288F5F0AEF2495BA53D3C165E79D0AF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B903D3A5E3B84DF2A2022876EB2B2A7A" - "OwnerKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B903D3A5E3B84DF2A2022876EB2B2A7A" - "OwnerKey" = "8:_08587955063141779B605860D7FF04D3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B90B2A45F38546C7B27A422537B6A0D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B980912F97654A708BB58521244643F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9AE5A1FF5C2466684573FE2ED6EC0BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA1757667DBF4ECE82D987268736B4D7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA56A809F849463387B0C35C554D3FDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA805C53980C41769659D085C5C8E0B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BB31E6359D3947BBA82A82468DDDA9DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BBA24149F4C04977B6A07924A49D7352" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC01A169AEE24DEDB532037D3A25C69E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC7DFDE6592D463B95C307DBE7305593" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD197F0310024D04B386D3ED22B580F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD35BC44FB8F441B8E358D9D364CA587" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD51D17637B84DF3BF949073F10AABFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDB11450018647D880BBB295E0BBF169" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BF2D5197C57A4E03833752A2F4532AA8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BF63955CB2CD4A96BD347F8EDA960614" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BFE5589963E74E2E9883E4AE5826D851" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C03B6B3C637C45749F3ACF29F4FCEDF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C04EEE51536C4B64BB1758CBB7873B34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C065BAA069514382B51E468B5A1978A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C094488877694ABCA56EEADA30F0C108" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C0D8D2C4874C4694895DE76AF8ED8E8D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C0DEC2397FFE41CBB0E44D70AA977F41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C1510D42AA964597A8CB449C6B94E86B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C16D5B4AE2264855879001D44A80A573" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C21C0E1658844265AABB721C6F59AB24" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C24D1FF0D3AD482B8431D83957472356" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C269F9491DE449A1A5E37AA06459403F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C27D9E8782CE4CF79DF530130AE12A5A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C2ED89B3F43C45139AB75E0455F9B99C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C3750F20EDFA48D78E02F27034D02209" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C38225F7A000426CB7E955945C9466E0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C4E58CE5DB3F4304B465A828D1060AD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C54B99BA758A4FB3B844DE919B277DDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C649E5027371431DB5A5440812C57540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6896DE4391E40FF980A950DDE8B43D1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6B45FFC93CC4A3F864E363E7B18206D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6F4B29F1A3B4B59A21287716572E0B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C71939C1027C4474B690DDDF4B0E8FB7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7406B26D83F4CF48E24ED78245654ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7D02D2B4C444A0C90BD6F8C6B232C91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8198F923CDB401EAF223744653A6806" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C9AC5BC6DB9742B79D0BFF153CA39421" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C9DA0D05D08A45289D0F4BB5BC06C183" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB2FCC33698242D0BFDAA47D5C4B0F63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB3A0AE176934F52AE20A613C2070534" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB46B6FEE22A4C689CB244EF428600BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC3803859B7F43B18EBE799C9C56933F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC3B6BCC088B4734BEC63727D2F020C0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC71BE47DD434D7CA2713A9087A88C14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC933C89F0964841BECCF5EC39B34E8B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC9CBF448698418B83091250EA8BD78C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCDF5C1EFB75477BB295929481C75CC7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCE9C76D878344F4BF560E0136E1BCF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCF420B39E734D4384125DFE122E8F6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD3DBDD9333C4033AE1B724282BBBFBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD777AD5FF1D420DB9723E6EEC27D521" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CDBE3C6855AE4501803B9EDA7BFEA691" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEC3CD033FB94DFA8810C8142FED85B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CECCCB3C56494F61A90C39EE70F3DFC9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF28519F63C34802AB33F9342405FD3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF7BF165F4004E0DBBFF446A66A985DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF97D7FBA79945A39E7B09721E7A2955" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFA9B0302ABC430A9DBA2BC2132B6B73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE3C277A2DF41018E63BE547F53452D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE69F411CF84BE7ABCD4B895EF13C62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D128F9F54CA949C09B3FA61A199B060F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D151A04263364A9B8005377D79AEC239" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D200B29D2F7E429AB771E6E92961E4C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2176F7DD848403DBC973A3676B579CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D247511BB8FF4C1C83D7D1635C6FE9B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3284BDBAC7847909EAF138FCCDD512F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D355259E0F5648D282E00FC99F109E5B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D383DFA2A9ED4C7EB07E1FEBF9B44DA3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3EDAA4023284820AFC142093DE1AAE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D49889111E484F5090ED91A8EFF57DD0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D523D656E59A4F36A5799882AD52FE63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6635B71ADB94BA0AC25AF10E53EAA56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D68C5368AA4548E2B31B6E44C6CF18CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6F8538106594E289818596061BE2EA6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D71476F12B73490A8B05B4EADA0EFE14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D75087C07C804BA994309398BC48603F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA6641D60355480A978E4B4464AA5DF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA790596462048CFAECE85420D41D74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA9C782985C041509BE9C4A7CB68A4A8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DAC38C10430147CDB4A4DC9E5C3F3D18" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB1A6975F18441ED82BDF90E6D84EA3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB5649A025C244CCAD4CFC7607B09A28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB6C4271795545FA80082707D6121026" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBC0EC09DC684F47B0DC34BF7958EA66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBECDA96409E46C5A16D99CCCFC2E0DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC32635C462B40BEBEEC9176E79A9BB8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC87F8DA14754002A1931C3C5DC89AD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DD3B996C17714923935F9497EC38D611" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DDCBFEDCC6144933941BE8B0EEBB9614" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE2D53C1D99340B28D76F985871A1D04" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE5BB9FAA411472B8901537165DFD827" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE63219243264692A661312B00054503" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DEE4FC947E1543ECA3C5D0A1B5D82606" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF6E93BE4C85423FBB21EA3F783E0724" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF7C83B26513481DA856DE8F3DAEF744" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E07080A8272044BDAD3242DFA62A3AD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0D128147681418496692C77F4B1BECB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E148F8C2F82A48D3A68E9E2C2CDAD846" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1570450F26743789099E1D664EA2930" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E18D9C95AB9747609535A99DD2D81155" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1D86563B904400180823C0486CD55B2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1E6F5ED150E4549979E0E3F9E6D2F67" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1FAFCCB6A854D248F54F164889FAB3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2073E8B81F74741B1D1EA05FBDD0F79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2652D81AA404DA6956411A406CA467C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2B4EF18B90E479E8D1311CBCE13431E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2D41C457EA34B59A9124357F2777DAD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E31FFA0A95B14807BA4DA5176F48A0AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E37ED89108944B31B7B46A2F9EE37D3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3B3CBF11A49408DA2A465DD552AE300" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3D9492FF8AB48679A4B287D1CE30AD6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3DDA7E632494939B2882BD6741CFD9D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3F58F53501F4CAA92527C64B08D9EBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E427788001C549E18618B82C7E6C867C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4A964C652EF407CA753B3CA1219015B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E54668B3A3FB42CF85A71689A715F19B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E5C9596A592F453AA67CDC4AF6A18477" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E646FA76573448CAA4749B18614EF782" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E716C1A77B764B6697138BC0DAE3E30C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E732EE7790B34E41B578A9388594D778" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E855F8CECB234B9291EC3600C31564E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E885D5C620AE4F7B824607C2AE4001AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8AFB1C8F7A342D5A03F305B3E0230C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E0F24BF6014C208A93130FC1761DE6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E78948E8974A1DB4C3D6E63AF58602" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8FE474C601D4386BBB0CA9599FF45BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA8E4A02700F48B3A6136CD0055D6CFD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB1CB1838E7449B4B3F05EF3BA026DC8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB82DBEEDAE14B51840A9D7153E52BBB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB89828AF09E40FFA26D353F1088C41B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC2FDC1A744E4A1AA4793CB10F18D176" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC476B2533A1437FA80321BB3090234E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC9C8B8C68CC4B6FBF2202B0935A6396" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECE66A49B6414A0A92B3FB111288D7B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED90DA83729C417BBEAA629FC6CE1095" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDC27F3DB4874D0B80C408E935F92FD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7C6EE3A3154788B22D1EF05798FD2E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF07839F9BC941BA9127CF08C90303D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF429C97CFE74E0E82042FE4C0B15F13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF86BEE203814AFB81EFC961B7A3E77E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F002FBC310564DAAB051DE2CC004A129" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F15D7C13B4D94173A06FC05BFE08B4A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1C2DC4D3F4541478F3128EC742FC67D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F21DEB7BE0A943B5B4775AA069401FFF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F325A9398503407384F1B46B1B65BE34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3A73DE374274D23B5B71D3950610F46" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F40D33926EF24D48B642AFADF0905175" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F42D9F9BF66C46B3A5C9271FA5F371BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4E64CA79CC5489294D5EB5751985163" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6A52BC1EC8D44989142E90DB7AAD1D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F70CE7A5A1844D3A99121A7A41ACAAF7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F7465E4F2E894759A7C68D5C9B4C9733" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8688399972140A18AEE3821A3076DA9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8CAB1B1AAE143949246B033BF6572AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F91C5DD635704BBC8D09E808908B4859" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9E5B7A73F134E42B0EE70B7A917FFE1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FA43C5DB9C7546E7BB93ED688744AC52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBB083851DA2463CA4F1366F4904110A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FE3C8C6147AF406EB2F110453C3464EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FF5DBBEF8B6B4C82A8B3FB62CE081988" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\SetupCantera.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\Cantera.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "Feature" - { - } - "File" - { - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0067AAD709D94D2693870A06ECD55183" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_condensed.cti" - "TargetName" = "8:nasa_condensed.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0170832FE2DB4AE0BF9768C53BE03A84" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\setMultiplier.m" - "TargetName" = "8:setMultiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_022EDF1564FF4680B6AA609CE897983A" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\h2o2.cti" - "TargetName" = "8:h2o2.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0286644D808546E59C95FE7B9B7A232F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\speciesThermoTypes.h" - "TargetName" = "8:speciesThermoTypes.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_04510DC7456C459E895E2178EF955D78" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ctml.h" - "TargetName" = "8:ctml.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_048942F8191B44939038E07F3C41D94D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Element.h" - "TargetName" = "8:Element.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_04C83EB86A3C45AB93638133493E5923" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\argon.cti" - "TargetName" = "8:argon.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_051107F9F8CE4364AC76D00D23F8B7C5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite2.m" - "TargetName" = "8:ignite2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_05690F470DFA457FBF7C925A8420EE5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\mix_hndl.m" - "TargetName" = "8:mix_hndl.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_059198FAFB464F61988E32C60E43919C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\State.h" - "TargetName" = "8:State.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_05BC27CACC7F45BD9EFDB6490C3EC5DB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\PureFluidPhase.h" - "TargetName" = "8:PureFluidPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_05EE24E611E74A1C88CE22420CA5500D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\equil.m" - "TargetName" = "8:equil.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_05FE255C00F74DAEB6BFC00A32066DFA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Edge.h" - "TargetName" = "8:Edge.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0700963A1F1B41FFABC3911498DB18B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich.py" - "TargetName" = "8:stoich.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0936663A9C31411CA21989F4FA39A5F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond.py" - "TargetName" = "8:diamond.py" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_09812E60422340BF9B92C7BF4CDE6FC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston.py" - "TargetName" = "8:piston.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_099E198F6C01436DB271857F1309977D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_get.m" - "TargetName" = "8:phase_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0A01A5CC173A4619BBAE80DFCE7B23B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolarMass.m" - "TargetName" = "8:meanMolarMass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Hydrogen.m" - "TargetName" = "8:Hydrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0A2F83F932A74CAABB87DEEAC1B9536C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0ACC7910CC8A46E38521F8A78AF253D2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ThermoPhase.m" - "TargetName" = "8:ThermoPhase.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0B0170BC983349DD945697DB4576507A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\atol.m" - "TargetName" = "8:atol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0B09C9A0BF24498399548814F95D1EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setThermalConductivity.m" - "TargetName" = "8:setThermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0C5AD82FE10848BA967AF0050B6BCD08" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MultiTransport.h" - "TargetName" = "8:MultiTransport.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0C8BFBA19BE949699F417570F8C69B5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SV.m" - "TargetName" = "8:setState_SV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0C9010E357C748BEB820CF0E830F09DF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setDensity.m" - "TargetName" = "8:setDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0CF3A0C352FA4A0FB705041957C9EE00" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\L_matrix.h" - "TargetName" = "8:L_matrix.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0D0FFCC38C4645D997283F1C5CED5E06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setMaxTimeStep.m" - "TargetName" = "8:setMaxTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0D47388E1B474AF08F6DA0FE72025C42" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\rankine.py" - "TargetName" = "8:rankine.py" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0DDF1766C6A04C76AE6AF7FBC35E471B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\netProdRates.m" - "TargetName" = "8:netProdRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1049E82786DB4EB2BDEFF972136B0F19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satPressure.m" - "TargetName" = "8:satPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_105638BB017C47DA814720D4C027908E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\private\\surfmethods.m" - "TargetName" = "8:surfmethods.m" - "Tag" = "8:" - "Folder" = "8:_653D9B351BDC4DD6B1AC64034FB114A1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_11553AE6EA7A424D9621E724DFECC70F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarDensity.m" - "TargetName" = "8:molarDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1176331BD6324C92BACD1F0805ABFA46" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MMCollisionInt.h" - "TargetName" = "8:MMCollisionInt.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_11AF9ACB25D6477DAE6906C2F6F688CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_11E4F38118B54DC680D5CB741B29BE8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\volume.m" - "TargetName" = "8:volume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_11EE4F61EA0740F1BE63419C7A48F185" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_HP.m" - "TargetName" = "8:setState_HP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_12349022365F4DF1A533277C07DDBA73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ConstDensityThermo.h" - "TargetName" = "8:ConstDensityThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_125E1AC217CC40BD8F4534E875CB9D0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_12BF22BA87424178B29DB07E669C3501" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_135CC30D556E468298A4E1646E4B0135" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\MultiPhase.h" - "TargetName" = "8:MultiPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_13B59406C1A74D4CA358FDF48F349761" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Constituents.h" - "TargetName" = "8:Constituents.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1420A489C89E4859ACE78FD5DD27C00A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\Transport.m" - "TargetName" = "8:Transport.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_14580E5B948E47509A941AA338014D25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_159658AD53204EF58715D06753DE0026" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Constituent.h" - "TargetName" = "8:Constituent.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_15D3C38D37A94D67B313EC3B57DA2AC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\private\\flowdevicemethods.m" - "TargetName" = "8:flowdevicemethods.m" - "Tag" = "8:" - "Folder" = "8:_A0CD6A9C146B405D99355A87F6B7C47D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1603140AC6F7489CA14D3F41F58E9379" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\buildwin.m" - "TargetName" = "8:buildwin.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_16126DCF89E8430A8B24ECCEE00D00DF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ThermoFactory.h" - "TargetName" = "8:ThermoFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_164F9AE8646F49A28EDD39E09AC0B23E" - { - "SourcePath" = "8:..\\demos\\ReadMe.txt" - "TargetName" = "8:ReadMe.txt" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_165E0EA08F1B4F398EE7496331A1A51B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ckr_utils.h" - "TargetName" = "8:ckr_utils.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_16C0D130AB2748E6890B937071A27A0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\ydot.m" - "TargetName" = "8:ydot.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_16C40536EB0A45658DF4EC29D7CBBFF9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByID.m" - "TargetName" = "8:findByID.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_16DD6B492C274AC6BA6ED913C513A10B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\thermomethods.cpp" - "TargetName" = "8:thermomethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_172771DB7EE34270A0D796311102BE33" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\DASPK.h" - "TargetName" = "8:DASPK.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_17873678EB8F4A3AB2296EB4E4483220" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isInlet.m" - "TargetName" = "8:isInlet.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_17EFE54ABDB6418D84E64FF18DB0FE02" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor.cpp" - "TargetName" = "8:combustor.cpp" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_18712B731C5F4CED9DD70EC680C9BE15" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_187CA9DA142B443496BC31D559FF6D97" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Elements.h" - "TargetName" = "8:Elements.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1889FAD37671415E95CCA5B1BCAC9E32" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_r.m" - "TargetName" = "8:rop_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_188F8F797CE24E7C9FC6BD62D2B5D37F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic.py" - "TargetName" = "8:isentropic.py" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1A3D179D05C74A909F2B5B6E254459BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Inlet.m" - "TargetName" = "8:Inlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1A66CE0396934BBDBA728386725B2310" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\KOH.cti" - "TargetName" = "8:KOH.cti" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1A758A2D9CC24D13A732C1F61D692657" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1AA05F39A2464BDD922D26B58FE78BC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2.py" - "TargetName" = "8:flame2.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1AB392F5A076480D97046D01A587A4B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\FtnTransport.h" - "TargetName" = "8:FtnTransport.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1B053CD5461740CB891855B80F250AED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl2.m" - "TargetName" = "8:prandtl2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1BCF13AA12F344EAA567AE54F11CB0AE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\CKReader.h" - "TargetName" = "8:CKReader.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\GRI30.m" - "TargetName" = "8:GRI30.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1D0B3F7CDFF14AD2A879AF1565D65509" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mole.m" - "TargetName" = "8:entropy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1D7106B99F8D451CA0562A6C57C2CC3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importInterface.m" - "TargetName" = "8:importInterface.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1DF1B93159BE475CA0438F31722F856B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1.py" - "TargetName" = "8:reactor1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1EC0682BF67E48639869FD490FC06F86" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine.cpp" - "TargetName" = "8:rankine.cpp" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1F6340B91C654BDAB4FDCA7B545A9ADD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainType.m" - "TargetName" = "8:domainType.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_219FDC3ACB2A4C81935851A9CAA7E1EF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_R.m" - "TargetName" = "8:cp_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_21EB392DF37A421CABBDA197A9226C0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\diffflame.m" - "TargetName" = "8:diffflame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2278673C1CB94B89B0F33D7D7588F290" - { - "SourcePath" = "8:..\\demos\\flamespeed.vcproj" - "TargetName" = "8:flamespeed.vcproj" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2284F25E41194D2895B06C3FA1BC96DC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\CKParser.h" - "TargetName" = "8:CKParser.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_232F4C7716264866BDEA07B97B583460" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_UV.m" - "TargetName" = "8:setState_UV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_23CE4DDD38054CA49B17BEEF4D728230" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\ready.m" - "TargetName" = "8:ready.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_254CA5A242F04444AB0F18F9ECDD091B" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\ptcombust.cti" - "TargetName" = "8:ptcombust.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_254F288B4BAC4BDFB4B21E76747FF336" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\attrib.m" - "TargetName" = "8:attrib.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2656FD40F3784C588D4004D409B0F80E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Outlet.m" - "TargetName" = "8:Outlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_26A7FE2928CE45CDB52C4B3326A33951" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setHeatTransferCoeff.m" - "TargetName" = "8:setHeatTransferCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_26E683AE357D4F70A3DC3C57295541D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conuv.m" - "TargetName" = "8:conuv.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_26F0BA63411646978592D51F26AEA36D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rxnEqs.m" - "TargetName" = "8:rxnEqs.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_27549892F823435798B476FC52F3F012" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarMasses.m" - "TargetName" = "8:molarMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_27DE8E5E29574E81B2D3ACC4E87B9637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\addChild.m" - "TargetName" = "8:addChild.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_290E7C7E5DF64841B1F913EEFE006069" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_29200BDEF8B44EC69E128788F4E09B16" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_299CD5580EB645D191532FE4F24EC6CF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Interface.h" - "TargetName" = "8:Interface.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_29CA5AAAF8D342359823BB1B4CC30E95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\numerics.h" - "TargetName" = "8:numerics.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2A1589369A874D0EBFFE3F6D98426A49" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2A92BFBE1A3F4CC6AAF1EED621155E95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\example_utils.h" - "TargetName" = "8:example_utils.h" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2A9396D26DA740BB831E923D14573BC0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Kinetics.h" - "TargetName" = "8:Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2A962975342142978B3DE11A20C9AA52" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\elements.xml" - "TargetName" = "8:elements.xml" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2AA7C0041FC74F718A561EF0696DCB45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2D09076E55604C73A82892D474E11779" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\restore.m" - "TargetName" = "8:restore.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2DEE49E2A7B4424E824CE5D0FB2846A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setKineticsMgr.m" - "TargetName" = "8:setKineticsMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2EC7B0A350C34DF0B88C45A54FBFCC99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut7.m" - "TargetName" = "8:tut7.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2FDECE537DED425EBD73BE8C715FFAE6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Func1.h" - "TargetName" = "8:Func1.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_30A47D7D93D84874A41E1782FDBCEAAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\creationRates.m" - "TargetName" = "8:creationRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_31A618C156154A138E899086B9A8AC54" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ck2ctml.h" - "TargetName" = "8:ck2ctml.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_31AD332AA56C4DF190FE6D941FAAFBFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\vaporFraction.m" - "TargetName" = "8:vaporFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_31B41886AF9A41B8AAA9C3624E7FD48C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Domain1D.h" - "TargetName" = "8:Domain1D.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_31E9E8DFB7144795A05AEEE66B279AB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\viscosity.m" - "TargetName" = "8:viscosity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_32A08E26D90A41869BE37A47450DADCC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\binDiffCoeffs.m" - "TargetName" = "8:binDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_32EAE5622F7540E4AC357D8D1CE10D8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\isIdealGas.m" - "TargetName" = "8:isIdealGas.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_33DBCAB550F1494AA40EFC4ABEFBADC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Psat.m" - "TargetName" = "8:setState_Psat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_34722C3A5A5F4217AD66444E408BD476" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Surface.m" - "TargetName" = "8:Surface.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3494F58B264F4001B9AEEEBD33A0843F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\IdealGasPhase.h" - "TargetName" = "8:IdealGasPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_35BB68CEE7844BC0BC845BEEE3A800D8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\DAE_Solver.h" - "TargetName" = "8:DAE_Solver.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_362E5E6B9766498182C5008280A41BD2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\Solution.m" - "TargetName" = "8:Solution.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_36C2D841FA684319BDF30F2B68589637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\FlowDevice.m" - "TargetName" = "8:FlowDevice.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_372176D2A2AF406DBD625F54972DD57C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nTotalSpecies.m" - "TargetName" = "8:nTotalSpecies.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3778A89EFC6C475E8AFE84940043B8DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setSpeciesMoles.m" - "TargetName" = "8:setSpeciesMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_37B9F5E138A645AAA6CE6C3A36E5361F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_37DD28283FAE43A78586C3D99D999022" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon_carbide.cti" - "TargetName" = "8:silicon_carbide.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_385C8980D3A44A2093CD638714277678" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3877AF8B51904A3BBC4727D4CAC03D90" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\LatticeSolidPhase.h" - "TargetName" = "8:LatticeSolidPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_389AC795E7E842888394BE52A051FA12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\wall_hndl.m" - "TargetName" = "8:wall_hndl.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_38B1A8CD480B4DBE9ABEA7D51A48769B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\polyfit.h" - "TargetName" = "8:polyfit.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_39593F8016464F6383246F854982073F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\refine.h" - "TargetName" = "8:refine.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_39905D4925564C469DE3CBE980978999" - { - "SourcePath" = "8:..\\demos\\demo.vcproj" - "TargetName" = "8:demo.vcproj" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_399AD2EA4A9E495B953EBC279475E4A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\DenseMatrix.h" - "TargetName" = "8:DenseMatrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_39B2C611CD84448489F8AAFF5BD8AB28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nReactions.m" - "TargetName" = "8:nReactions.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3A49848C6AC948D8A7CB60B10FE0D83A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\disableEnergy.m" - "TargetName" = "8:disableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3AC42291E06E4768B0D87839DC9B9E77" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut2.m" - "TargetName" = "8:tut2.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3AD5931AA5BC4F4981CDE7B72643E7CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\RxnSpecies.h" - "TargetName" = "8:RxnSpecies.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3B00646190674532ABC512E89130A0D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut4.m" - "TargetName" = "8:tut4.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3BED1ACF1B8543C7AF5040D332A1E599" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Solid1D.h" - "TargetName" = "8:Solid1D.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setBounds.m" - "TargetName" = "8:setBounds.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3CFA6387302F446AB7938595154FF208" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.xml" - "TargetName" = "8:gri30.xml" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3D56811387944E55AD39C984228C4EAB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\insert.m" - "TargetName" = "8:insert.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3DCD90FBD1DF4FA588238C70E0BADBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\function1.py" - "TargetName" = "8:function1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3E35E9D3EC6141BBA820F7D01B815B64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.py" - "TargetName" = "8:sofc.py" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3E89277358E2422686E4ADF9C0FCCA25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\SpeciesThermoInterpType.h" - "TargetName" = "8:SpeciesThermoInterpType.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3F2025A866C24187833376E3E60EC4A2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\StoichSubstance.h" - "TargetName" = "8:StoichSubstance.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3F96D57E8F9E461F8C90E0ACB1C937D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setMassFlowRate.m" - "TargetName" = "8:setMassFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\dustygas.py" - "TargetName" = "8:dustygas.py" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3FDE004992FC47238D3E9C37E49C2579" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\vec_functions.h" - "TargetName" = "8:vec_functions.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3FE261F2E167434D804087B6019EB309" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silane.cti" - "TargetName" = "8:silane.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3FE8476E84424F12B0A26E454203FAD5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\IncompressibleThermo.h" - "TargetName" = "8:IncompressibleThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3FF4115C0C3E4C1686E79FBDDD2387B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\private\\reactornetmethods.m" - "TargetName" = "8:reactornetmethods.m" - "Tag" = "8:" - "Folder" = "8:_EF7FFF45863048E0BAC8024E5E97D77C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_406AF99237D3409BB85917A5A60F74ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_40E56E51E02745B4AEBA40660CEC686A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\Stack.m" - "TargetName" = "8:Stack.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4112A1F6C299475E8562339C3C38AA30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite3.m" - "TargetName" = "8:ignite3.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_411BB46D848848E492899FDC17C2D1CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\flowdevicemethods.cpp" - "TargetName" = "8:flowdevicemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_41BB99990E1246928D44C3F17942116E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setID.m" - "TargetName" = "8:setID.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_426E85F25D874E3F8F14D31E41AACF51" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_42A0DE2343CF4D5FB768588C28368E2F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByName.m" - "TargetName" = "8:findByName.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_43113139A9474DD883EF5305014F1568" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Sim1D.h" - "TargetName" = "8:Sim1D.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_436F32BB3B714A24A6B5FD1BC342A9D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_43B63451B43146E08FD01ABAA5B61A0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Mu0Poly.h" - "TargetName" = "8:Mu0Poly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_43C69E8F23BD4919BB63BD40909B3759" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut2.py" - "TargetName" = "8:tut2.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4401025D0D424A86B6C25A9B34792A95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Valve.m" - "TargetName" = "8:Valve.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_44512354EA8C4577A9085C81B028A63A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Tsat.m" - "TargetName" = "8:setState_Tsat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4479546E1AAE44FFAEFC0A710BA2E8FA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\resid.m" - "TargetName" = "8:resid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_44DD06CC20DF420A998E2F1D0B980A99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_f.m" - "TargetName" = "8:rop_f.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_451FADB3D70145F9BF8D235E092B637A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\transportmethods.cpp" - "TargetName" = "8:transportmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4555B1D563634B6AAE88E0051E34DCE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_46756B27C91E4C17A9F3C06BCC6D9011" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeeds.py" - "TargetName" = "8:soundSpeeds.py" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_471DA45E05AD445EB7B143657DB4688C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\transport.h" - "TargetName" = "8:transport.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_47F3CF4BEA29482B95C1AFFF8F6C8145" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\private\\reactormethods.m" - "TargetName" = "8:reactormethods.m" - "Tag" = "8:" - "Folder" = "8:_D663477510C5436ABAF316F6D1E24D8B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_480527309EA14538802C74D4B190DBBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4887AB1DD1874B449335FF13EE210FE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil.h" - "TargetName" = "8:equil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4A677774412940DEAF6AF1EDC27A3C58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\cleanup.m" - "TargetName" = "8:cleanup.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4B3F9D28B70C4E339662B2029BC4027B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4B9C0B2304BF45D3B6A94AB1ABEF6910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\zerodim.h" - "TargetName" = "8:zerodim.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4BB20697D6B74F4C8917A9D04AA4A240" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\mixDiffCoeffs.m" - "TargetName" = "8:mixDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4C18112956A24BF6A1BF387E433469DC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\write.m" - "TargetName" = "8:write.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4C432477911B4A8596B03914FF5916C4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\reactornet_hndl.m" - "TargetName" = "8:reactornet_hndl.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4D71E06EFE884CABA33151E1C5263C86" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_get.m" - "TargetName" = "8:thermo_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4DCD79F33434471C82E0AF768F55ABDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\importFromFile.m" - "TargetName" = "8:importFromFile.m" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4EEA2D8311E542998617CB07AF269FD1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critTemperature.m" - "TargetName" = "8:critTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4F7168452B334356BB62A52AEE0201A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\SimpleThermo.h" - "TargetName" = "8:SimpleThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5095A6E6BF554FEDBAEF263F05DDD77B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Cantera.h" - "TargetName" = "8:Cantera.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_51DD3AC0619046728F688D9306D31844" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\CVode.h" - "TargetName" = "8:CVode.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_51E2B9E78A964BD383DD8FD460AA4BEF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_52519B41A4064DEEB452445FD3550B6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame.m" - "TargetName" = "8:flame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_52C2FDDE33D146F7B4A53E45929E39B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ckr_defs.h" - "TargetName" = "8:ckr_defs.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_52F132AB35554839AB7EB037617DB96B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportBase.h" - "TargetName" = "8:TransportBase.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_533E20A890AF4129A378968FF67AF0A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\reactionEqn.m" - "TargetName" = "8:reactionEqn.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5348624853F34BCE9FCDEB2C053C1540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MixTransport.h" - "TargetName" = "8:MixTransport.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_53EA1C41778744F09879AEAE0BAA0233" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satLiquid.m" - "TargetName" = "8:setState_satLiquid.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_53F7FA910CDC4CDEBD4257B5798B1B68" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFraction.m" - "TargetName" = "8:moleFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_54A0EE28997D4BAFA2E782BD6448A658" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importPhase.m" - "TargetName" = "8:importPhase.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_550E0C20B3DD45E38E11C9AB4CA6B544" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\OneDim.h" - "TargetName" = "8:OneDim.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_562372D5415546AD844E25834E0DECD4" - { - "SourcePath" = "8:..\\demos\\combustor.vcproj" - "TargetName" = "8:combustor.vcproj" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_57B5E8440B4D4CB2A04A543D12B02DC5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\importCTML.h" - "TargetName" = "8:importCTML.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_589104AC830A4577B736D1106E7955A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\eosType.m" - "TargetName" = "8:eosType.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_58EB415F05014A608F1D6B281082D92F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\grid.m" - "TargetName" = "8:grid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_59166DBD45564A4195E8A079862D7DF4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_59245571144542D38FEC0EC1F00503B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor2.m" - "TargetName" = "8:reactor2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_59AA52C5E25745589B34218C6B13216B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\XML_Node.m" - "TargetName" = "8:XML_Node.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_59C5E6BB66254AE1A6943516F13B4FDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\CVodesIntegrator.h" - "TargetName" = "8:CVodesIntegrator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\Kinetics.m" - "TargetName" = "8:Kinetics.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5A494D5F32BD411D861645EF9D5CDB73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5AE86752EC8A4B54BA6494A9F33FFC71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\ReactorNet.m" - "TargetName" = "8:ReactorNet.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5CF936560FF2465682DB2D4643C37441" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mole.m" - "TargetName" = "8:cv_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5D50FACA9AE548919661678B7562D727" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\polynom.m" - "TargetName" = "8:polynom.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6006C6D0EC294FC39274776F6EA12BCD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nAtoms.m" - "TargetName" = "8:nAtoms.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_60D94AAFB6AA45F89A490D537326B0A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\refPressure.m" - "TargetName" = "8:refPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_61151103C608408DB35D78567822421D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setValue.m" - "TargetName" = "8:setValue.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_611E4F1900564CD88F755749C3B89219" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalConductivity.m" - "TargetName" = "8:thermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6221061E3BD647AF89BF4AD1785DC9EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satVapor.m" - "TargetName" = "8:setState_satVapor.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_627849EB38DD4A1D9DFE2E6E7DFFE041" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\FuncEval.h" - "TargetName" = "8:FuncEval.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6349662626C947BC91332BE085230672" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domain_hndl.m" - "TargetName" = "8:domain_hndl.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_655DC211FDA743B8AAE2A254B8D24127" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\rxnpath1.py" - "TargetName" = "8:rxnpath1.py" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_655F0B213A054795ACD83B755944E151" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\PropertyCalculator.h" - "TargetName" = "8:PropertyCalculator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_65A52D659E1642F8A7567FA7CC9B9189" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\FlowDevice.h" - "TargetName" = "8:FlowDevice.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6693B16E7E2A4AE3ADC494334E18058F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\importPhase.h" - "TargetName" = "8:importPhase.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6725A6F15136415BB26BADDD3CF96F66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\GRI30.h" - "TargetName" = "8:GRI30.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6759CBA1D81D4C59A902AE29534B6255" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ShomateThermo.h" - "TargetName" = "8:ShomateThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_675DF947A58B4BAB9DCCF837D18044E9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\setCoverages.m" - "TargetName" = "8:setCoverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_67B4668A9613497EAD89E4D9D5CDA7B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMdot.m" - "TargetName" = "8:setMdot.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6A0835716DBD4D95BFAF15AAB6BBC2B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\units.h" - "TargetName" = "8:units.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6A93CB70A0AC47D28DF27073F49C6A76" - { - "SourcePath" = "8:..\\..\\..\\License.rtf" - "TargetName" = "8:License.rtf" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6A9E2F67751E4036B32A3F73F389F4B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6AAD2BE4779D4141B7F3175116575B70" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molecularWeights.m" - "TargetName" = "8:molecularWeights.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6AEC5D1E91784853A899657570B75158" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6B3FE5F1CCAF42F99BDF0DBA4A5E7AD2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\SolidTransport.h" - "TargetName" = "8:SolidTransport.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6B4133DAEDD847D9ADB436F3A9E515BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\private\\funcmethods.m" - "TargetName" = "8:funcmethods.m" - "Tag" = "8:" - "Folder" = "8:_208069FD964F475CAB363ACBD7A943C9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6B62C2B086DE4A74ABFDB909919F3B1B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\reactionpaths.h" - "TargetName" = "8:reactionpaths.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6BB63A2172964772A16E8C5DC8FCB473" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementName.m" - "TargetName" = "8:elementName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6CC5AB88FEE24B269BFAE0EB2130B7E3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\NasaThermo.h" - "TargetName" = "8:NasaThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6CF85F10BFE140FDA7DFDB6FBDAAEAA7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Array.h" - "TargetName" = "8:Array.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6D020030302F41549FD1141A91CA6BA2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_uv.m" - "TargetName" = "8:ignite_uv.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6D7DFA49CD7F422597521F6BC18DBEAA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6E40F711DE6E4C15977B10FEBD1145B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\addPhase.m" - "TargetName" = "8:addPhase.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6F1E0DC55B9845DAB4FE758F0B54914C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\adddir.m" - "TargetName" = "8:adddir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6FF6BF505F0442DF81B97A7B0DACFF53" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\gridPoints.m" - "TargetName" = "8:gridPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7086E515306342B7A4A3EB7E47148FEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_713B640959AC45A78E7B9AE581F86E14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropies_R.m" - "TargetName" = "8:entropies_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7170E7A643DA42188C7FC5398E2CC974" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\diagnostics.h" - "TargetName" = "8:diagnostics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7189BBF81A8B46F596C2D94D52CA15DC" - { - "SourcePath" = "8:..\\demos\\NASA_coeffs.vcproj" - "TargetName" = "8:NASA_coeffs.vcproj" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesName.m" - "TargetName" = "8:speciesName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_73514E9BC5F44C509C562E01E8A958C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\nChildren.m" - "TargetName" = "8:nChildren.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_738E966D4DA74FCE8C40B58983F4DBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\Interface.m" - "TargetName" = "8:Interface.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_73BDDE5CAC1142768E793BC00B124032" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ArrayViewer.h" - "TargetName" = "8:ArrayViewer.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_73DF85D78FB147FEBCDD6232AD5C85A8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\writelog.h" - "TargetName" = "8:writelog.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_76175107E4CC4459ABF6F887224C85F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactormethods.cpp" - "TargetName" = "8:reactormethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_764D7127961644B186D3F90292091805" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setTimeStep.m" - "TargetName" = "8:setTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_76E915885B634DC6B57F89520C4788A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic.py" - "TargetName" = "8:adiabatic.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_77A9AA9EC6624BD592C9D29EC6F94989" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setParameters.m" - "TargetName" = "8:setParameters.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_77C0B7A9B02F4EDFA6786BD64727556E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\MultiNewton.h" - "TargetName" = "8:MultiNewton.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_77EAFF9FBF464DF08EFF37113E7DFC96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conhp.m" - "TargetName" = "8:conhp.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_78809E65EB414C2C85CFBE961F4B6D8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\XML_Writer.h" - "TargetName" = "8:XML_Writer.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_78BA658B942543D689698300AB69FEFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ThermoPhase.h" - "TargetName" = "8:ThermoPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_78CC1BF50A534D2DBB2B6196AC20A461" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Group.h" - "TargetName" = "8:Group.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_78CF2DC24832474C9EC5304ABA596D6E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\char.m" - "TargetName" = "8:char.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\xmlmethods.cpp" - "TargetName" = "8:xmlmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_792574400ACB4125BBD9B4A006D4399E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ReactionPath.h" - "TargetName" = "8:ReactionPath.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_795887D785084824B7284296DC74B527" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_79674E6058F048B1B7D3CFFBCBC41561" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setValveCoeff.m" - "TargetName" = "8:setValveCoeff.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A639317418840CC95575AFDA89539F7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\times.m" - "TargetName" = "8:times.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A85089C17D248A7A8A12641C4F86125" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple.py" - "TargetName" = "8:simple.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A85252DC549484891071BF330043EA4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Resid1D.h" - "TargetName" = "8:Resid1D.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A858331BD01492FB20FD23DB170F745" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\GeneralSpeciesThermo.h" - "TargetName" = "8:GeneralSpeciesThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A92B5B83A7347D1BFFD0CF1D104ABB2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ShomatePoly.h" - "TargetName" = "8:ShomatePoly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A9AF6339376421580BF6E8028871929" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7AE8B40AFA7241769B5BE31427ED582B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Contents.m" - "TargetName" = "8:Contents.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7B504B0354024FE1A61951F08701559B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\mix_defs.h" - "TargetName" = "8:mix_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7B7753AD699149308A9D8CED65455D7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentIndex.m" - "TargetName" = "8:componentIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7B8DFC2B32884190B8B0EA34E86527C1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\FlowReactor.h" - "TargetName" = "8:FlowReactor.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7BE4FD7D976D4900BD24BD9AB7501E99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7BEA3E9A57AA4F0796638074A3D5ECD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Integrator.h" - "TargetName" = "8:Integrator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7CC6FCB9F695423782EC53DADE5D585A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7D3DAEB7E7C647309752BD3A02876B72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\coverages.m" - "TargetName" = "8:coverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7DAE868E207745638026B6656BF95857" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\MetalPhase.h" - "TargetName" = "8:MetalPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7DD2BAB195754859931B7B5AE308FAFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7E05717504C340B8B9D2D8F634AAA31C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\InterfaceKinetics.h" - "TargetName" = "8:InterfaceKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7E12BAE0A2924E5B83533AABB0BAC4DB" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\liquidvapor.cti" - "TargetName" = "8:liquidvapor.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7E5A64372F454B1D9BBD3B22AAAEBFFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1.cpp" - "TargetName" = "8:kinetics1.cpp" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7F2A82BE842E42219D6520BB60A87F2B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\utilities.h" - "TargetName" = "8:utilities.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7F3AB5A8BAE44BCD84802649D2AEBF83" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\DustyGasTransport.h" - "TargetName" = "8:DustyGasTransport.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7F82322C27494517A818285E796783B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7FC1EE2D828D4E0C9A209479895AE0D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\private\\domain_methods.m" - "TargetName" = "8:domain_methods.m" - "Tag" = "8:" - "Folder" = "8:_D75DB80C0EC34E90A1753028F279B4CE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8106318CEF394350AED3B89BE5973CD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\SymmPlane.m" - "TargetName" = "8:SymmPlane.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_811F3F47C3D94B628C68557B0EB6B36B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor.py" - "TargetName" = "8:combustor.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_81812B7D110C414C960813023A134932" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\multiplier.m" - "TargetName" = "8:multiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_81DA296ED6984B1EBE8917275886C78D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\GRI_30_Kinetics.h" - "TargetName" = "8:GRI_30_Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_820901EF2B7645DA9A49A95F3E9DE675" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ctmethods.mexw32" - "TargetName" = "8:ctmethods.mexw32" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_82CA2F512C5343BDAB3341734D58FBFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_830D679F865D4CE288583F122140C202" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed.cpp" - "TargetName" = "8:flamespeed.cpp" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8354660D2436459FBA8CB92DB7B6E337" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\concentrations.m" - "TargetName" = "8:concentrations.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_83F9E2F2692A4018967CB9E659E6841F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\RateCoeffMgr.h" - "TargetName" = "8:RateCoeffMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_84CDFA9E0AB74435A0D7B55A48424D36" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ReactionData.h" - "TargetName" = "8:ReactionData.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8549950E280A4786AA6D4BDC9AF44DFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_net.m" - "TargetName" = "8:stoich_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_854DF9ED3FF741069B2D162A049D5E64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_85CCBC878A10483FB6D3D2E534E7248B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\LatticePhase.h" - "TargetName" = "8:LatticePhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_87132C070E1540D8A4B033B0E98880B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\private\\mixturemethods.m" - "TargetName" = "8:mixturemethods.m" - "Tag" = "8:" - "Folder" = "8:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_87199ECD95B94DDD883BEC7ADC66AE63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\StoichManager.h" - "TargetName" = "8:StoichManager.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_87CEEEEB6DBF409FACD5794BCBD35B3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setupGrid.m" - "TargetName" = "8:setupGrid.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8801CCC3E95F4B098645DB0BF445E0F1" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_gas.cti" - "TargetName" = "8:nasa_gas.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8804860E9572497A8F08D2719B044B55" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Surf1D.h" - "TargetName" = "8:Surf1D.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_883D69622DD84D3A8A0D79D522CDA96B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mole.m" - "TargetName" = "8:gibbs_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_89B32FBB4FF441CFBCF0F830E202A7A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\surfmethods.cpp" - "TargetName" = "8:surfmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_89F1C726748E4E57ACFDFC467114BD09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mass.m" - "TargetName" = "8:entropy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8A432F8B24A842C0A70A2D8FD906E798" - { - "SourcePath" = "8:..\\demos\\kinetics1.vcproj" - "TargetName" = "8:kinetics1.vcproj" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8A5883FE50804063BBC8EE8DA9BE78DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\saveSoln.m" - "TargetName" = "8:saveSoln.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8B0D72F9F1AE422C81E4923414EB4C13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8B6199C9EA65475D9FC6C0CE792EA501" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon.cti" - "TargetName" = "8:silicon.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8C095A81A32D48C6B28D0092BDDB6046" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\funcs.h" - "TargetName" = "8:funcs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8C1EF93477A54EA39CFAE51E80858A96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\BandMatrix.h" - "TargetName" = "8:BandMatrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8C7D8CEB11024B759FC6F809723ADF7A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxisymmetricFlow.m" - "TargetName" = "8:AxisymmetricFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8C7FD926CFA648FB9CE0ED24957F591B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8C9645906D2B4435BF0DDC85F14F5CF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentName.m" - "TargetName" = "8:componentName.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8CB8ABF1BC42493F8C6451072245546C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8CCF6467ECF34EE59611670E3645C719" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\Domain1D.m" - "TargetName" = "8:Domain1D.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8D346FD7000B4F0AAF57691DB6BD9CDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFractions.m" - "TargetName" = "8:moleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8D3C554266D94991816CFFDB66F29AAE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite.m" - "TargetName" = "8:ignite.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8D419E40A1674FC9A198BCD3410D643D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Reservoir.m" - "TargetName" = "8:Reservoir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9038E6B538DE4653AF9E77498DC5C9ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setMaxJacAge.m" - "TargetName" = "8:setMaxJacAge.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_907955714C5E41C3A0C82F4633DEBAC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\constants.m" - "TargetName" = "8:constants.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9084333D5B164E6FBDFA7096FCC75845" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\air.cti" - "TargetName" = "8:air.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_92A6D3125FA44E7B8795DE4EE0D738BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\save.m" - "TargetName" = "8:save.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_93900A98FABF44F5BE2F6F23E3EDA13A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_set.m" - "TargetName" = "8:kinetics_set.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_94C0079A642D4D829C612D5537F2BE96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\SpeciesThermo.h" - "TargetName" = "8:SpeciesThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_95AD84099D86441F9B0C251039B1A63F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\IdealGasMix.h" - "TargetName" = "8:IdealGasMix.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_966477D37CF5451993EFF07CFB2EE25B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\isReversible.m" - "TargetName" = "8:isReversible.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_96CCEAC6BE924D6AB858949535654A72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctfunctions.cpp" - "TargetName" = "8:ctfunctions.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97529CA3195C44A3A6E57668BFF16B96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\IDA_Solver.h" - "TargetName" = "8:IDA_Solver.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_979C4C61FFCC47BF9DD9142A747D70F3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\dist\\Cantera-1.7.0.win32-py2.5.exe" - "TargetName" = "8:Cantera-1.7.0.win32-py2.5.exe" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97AB3E7B353E4703B550348C63AEFC2D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97B185B78C154874B77D2049B3300B41" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Oxygen.m" - "TargetName" = "8:Oxygen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97E71EC4B7404230AA4186AE74AE88F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\tdata.dat" - "TargetName" = "8:tdata.dat" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97E864DEE6A144A78B68D9A3BE9A0413" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\geterr.m" - "TargetName" = "8:geterr.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_988AFC4E6A904FB582DBBF0DE7C251AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\logger.h" - "TargetName" = "8:logger.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_98C25E56E88B4569BB453DA1FCC0A406" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Reactor.h" - "TargetName" = "8:Reactor.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_997EF831DA8A4F9C99259C70FFD9E6C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\fixed_T_flame.py" - "TargetName" = "8:fixed_T_flame.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_99BD8AC4084D439CA80816A89387CF06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\phaseMoles.m" - "TargetName" = "8:phaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_99F4B3534D1A4C88BFE4FB5D2F216E23" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\plotSolution.m" - "TargetName" = "8:plotSolution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9B44971E00A5481BBA5AFD0A2166D16F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\ratecoeffs.py" - "TargetName" = "8:ratecoeffs.py" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9BC3C81461D04065B1ADF2C07FFF293D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\SurfPhase.h" - "TargetName" = "8:SurfPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9C0C04F635C34CAAB690617751FEF9A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9D045060258445C7988DB84395305E71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9D6C72386A0B4D3489A13633E229F95D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setArea.m" - "TargetName" = "8:setArea.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9E7A52340F9643268D1F2F8864729809" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\run_examples.m" - "TargetName" = "8:run_examples.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9EEBD642B960482EAD0FB73F1BCB91C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Enhanced3BConc.h" - "TargetName" = "8:Enhanced3BConc.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9F0C5F7640E84C648A16A5663DC11CF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\write.cpp" - "TargetName" = "8:write.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A00E186E9C8E4BCD92EEF18A7870AB64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\wallmethods.cpp" - "TargetName" = "8:wallmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A0858150B00A472BA6EAE71AEBABDE58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setEnergy.m" - "TargetName" = "8:setEnergy.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A10BC29DF66D4988A3DADBBF21E5DA4E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorFactory.h" - "TargetName" = "8:ReactorFactory.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A11208A3D61940228E848C672615C531" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut5.m" - "TargetName" = "8:tut5.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A1555851966F4CBDB4BE3837641C843A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2.py" - "TargetName" = "8:reactor2.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A1A7D85419B04E1892896FD2723CBE05" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\minTemp.m" - "TargetName" = "8:minTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\.cvsignore" - "TargetName" = "8:.cvsignore" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A2B810BE7C004166A16F019DFEBC09A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setKinetics.m" - "TargetName" = "8:setKinetics.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A2ED793453A54C92AD356FF69DBFAFF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2ctml.m" - "TargetName" = "8:ck2ctml.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A386FFD174A848B8A6383A013CA12077" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPhaseMoles.m" - "TargetName" = "8:setPhaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A3D6752BC31B442CA999E19F8AA5B2E5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2cti.m" - "TargetName" = "8:ck2cti.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A44EA116D8BD401B9F5CB43FD0A516EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1.py" - "TargetName" = "8:npflame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A4C093C7C647401E895109DA2F564C52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\child.m" - "TargetName" = "8:child.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A513873E6AEC441CB417942FBA4FE3A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmethods.cpp" - "TargetName" = "8:ctmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A571DB581B7B4085B6EE29881A27A2D8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\free_h2_air.py" - "TargetName" = "8:free_h2_air.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A6399AF77EE147919D73E720D70C79FF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\gasconstant.m" - "TargetName" = "8:gasconstant.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A694168142B64AB28E79B5E6E5357979" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mole.m" - "TargetName" = "8:cp_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A7C06AF14B3343C09C52E321CD45D0A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor1.m" - "TargetName" = "8:reactor1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A7F216F3691F4406AD4BF685C2009EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut3.py" - "TargetName" = "8:tut3.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A88814C184944C9FA3E00A2DE301BB17" - { - "SourcePath" = "8:..\\demos\\Rankine.vcproj" - "TargetName" = "8:Rankine.vcproj" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A98B9A585D4F41858169AD80172314EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\onedimmethods.cpp" - "TargetName" = "8:onedimmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A9ADC45313704C27B5C74CAEEDB877A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\MultiPhaseEquil.h" - "TargetName" = "8:MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AA7D54EA12024486AA1ACD45D323E74F" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.cti" - "TargetName" = "8:gri30.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AA8F667920ED49919F2E5BD8D992450A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ctvector.h" - "TargetName" = "8:ctvector.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AC3CDAB9FDBF4EB79B35F1BEEA5DC02E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ct_defs.h" - "TargetName" = "8:ct_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_ACD48EEEC90A44B2B29B443AB7732B81" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\FalloffFactory.h" - "TargetName" = "8:FalloffFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AD48B1B285214A3087453E547D606A85" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\flowControllers.h" - "TargetName" = "8:flowControllers.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AD5F1A421BBC46ACA15AEF28551896B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Phase.h" - "TargetName" = "8:Phase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AD850F3126CA46F9AEB85D4851B8149F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1.py" - "TargetName" = "8:mix1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_ADC23A23C6B24601989EAE9B94655BB3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\xml.h" - "TargetName" = "8:xml.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AE01A18492C447D89BA1FE02869A18DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\equil_Kc.m" - "TargetName" = "8:equil_Kc.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AE0F2B65F5C74B9F9E401125ECABDD41" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ImplicitSurfChem.h" - "TargetName" = "8:ImplicitSurfChem.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AE235390D3E7456BBC816F28EF0EDE5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satTemperature.m" - "TargetName" = "8:satTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AEF2EA186F5D4A0486766CEC08F7A180" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AF09E476CC624AE5AEFCFA41EB35F77E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\KineticsFactory.h" - "TargetName" = "8:KineticsFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B0990FEE057B4CEB8E819D4F36FC023E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFlux.m" - "TargetName" = "8:massFlux.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B25E14F3380641BFA793B8AC5538DE69" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B2C4715A10D6448C8785A77EC8E23AFB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\plus.m" - "TargetName" = "8:plus.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalDiffCoeffs.m" - "TargetName" = "8:thermalDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B310C19F9C7F4CE6891A34139EB0D630" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut1.m" - "TargetName" = "8:tut1.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B3217183190C4EF5AA058E2F2DD49E5B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B34D82DAE3934AE8B7A86ADC89132428" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_set.m" - "TargetName" = "8:phase_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B37B9EC7F5E24483ABF63844CB762A5D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solve.m" - "TargetName" = "8:solve.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B383C9B0D56149A18C3933E52A659729" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\private\\trans_get.m" - "TargetName" = "8:trans_get.m" - "Tag" = "8:" - "Folder" = "8:_3FCDEC5F15154A079645D0817951A946" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut1.py" - "TargetName" = "8:tut1.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B4FB5F4843A24E41B7FADE7050CD9910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mass.m" - "TargetName" = "8:gibbs_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B56AA2981640451A85D5AC8EFFE1D420" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\StFlow.h" - "TargetName" = "8:StFlow.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B700B3135C044AE1A0E11F64951C15B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\funcmethods.cpp" - "TargetName" = "8:funcmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B7ADCE96BBE64258BC9786A36007F18B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame.py" - "TargetName" = "8:adiabatic_flame.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B813F357BF6E4672A6C5C6420233E416" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\npflame_init.m" - "TargetName" = "8:npflame_init.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\private\\stack_methods.m" - "TargetName" = "8:stack_methods.m" - "Tag" = "8:" - "Folder" = "8:_57614C30E82048A8B1CDA4FC95D7707F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B84D58C4160F48F987154A69BA00AA00" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\PID_Controller.h" - "TargetName" = "8:PID_Controller.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B8531EBC9C4146A18DBDEE03537C7895" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\water.cti" - "TargetName" = "8:water.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B85407140BD04A45836DB232DCF3D374" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\GasKineticsWriter.h" - "TargetName" = "8:GasKineticsWriter.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B90B2A45F38546C7B27A422537B6A0D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\thermo_hndl.m" - "TargetName" = "8:thermo_hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B980912F97654A708BB58521244643F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\maxTemp.m" - "TargetName" = "8:maxTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B9AE5A1FF5C2466684573FE2ED6EC0BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\sort.h" - "TargetName" = "8:sort.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BA1757667DBF4ECE82D987268736B4D7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesNames.m" - "TargetName" = "8:speciesNames.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BA56A809F849463387B0C35C554D3FDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destructionRates.m" - "TargetName" = "8:destructionRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BA805C53980C41769659D085C5C8E0B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\PureFluid.h" - "TargetName" = "8:PureFluid.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\multiDiffCoeffs.m" - "TargetName" = "8:multiDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BB31E6359D3947BBA82A82468DDDA9DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\Crystal.h" - "TargetName" = "8:Crystal.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BBA24149F4C04977B6A07924A49D7352" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destruction_rates.m" - "TargetName" = "8:destruction_rates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BC01A169AEE24DEDB532037D3A25C69E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\value.m" - "TargetName" = "8:value.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BC7DFDE6592D463B95C307DBE7305593" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\integrators.h" - "TargetName" = "8:integrators.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BD197F0310024D04B386D3ED22B580F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_get.m" - "TargetName" = "8:kinetics_get.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BD35BC44FB8F441B8E358D9D364CA587" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Water.m" - "TargetName" = "8:Water.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BD51D17637B84DF3BF949073F10AABFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Wall.h" - "TargetName" = "8:Wall.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BDB11450018647D880BBB295E0BBF169" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut6.m" - "TargetName" = "8:tut6.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BF2D5197C57A4E03833752A2F4532AA8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mass.m" - "TargetName" = "8:cv_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BF63955CB2CD4A96BD347F8EDA960614" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ctlapack.h" - "TargetName" = "8:ctlapack.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BFE5589963E74E2E9883E4AE5826D851" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solution.m" - "TargetName" = "8:solution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C03B6B3C637C45749F3ACF29F4FCEDF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Methane.m" - "TargetName" = "8:Methane.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C04EEE51536C4B64BB1758CBB7873B34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\private\\wallmethods.m" - "TargetName" = "8:wallmethods.m" - "Tag" = "8:" - "Folder" = "8:_978963BB80B74B24B2062E400EF7C9EC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C065BAA069514382B51E468B5A1978A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactornetmethods.cpp" - "TargetName" = "8:reactornetmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C094488877694ABCA56EEADA30F0C108" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C0D8D2C4874C4694895DE76AF8ED8E8D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\kinetics.h" - "TargetName" = "8:kinetics.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C0DEC2397FFE41CBB0E44D70AA977F41" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\config.h" - "TargetName" = "8:config.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C1510D42AA964597A8CB449C6B94E86B" - { - "SourcePath" = "8:..\\demos\\CanteraDemos.sln" - "TargetName" = "8:CanteraDemos.sln" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C16D5B4AE2264855879001D44A80A573" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\thermoFunctions.h" - "TargetName" = "8:thermoFunctions.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C21C0E1658844265AABB721C6F59AB24" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1.py" - "TargetName" = "8:stflame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C24D1FF0D3AD482B8431D83957472356" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ThirdBodyMgr.h" - "TargetName" = "8:ThirdBodyMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C269F9491DE449A1A5E37AA06459403F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs.cpp" - "TargetName" = "8:NASA_coeffs.cpp" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C27D9E8782CE4CF79DF530130AE12A5A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\EdgePhase.h" - "TargetName" = "8:EdgePhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C2ED89B3F43C45139AB75E0455F9B99C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\global.h" - "TargetName" = "8:global.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C3750F20EDFA48D78E02F27034D02209" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_set.m" - "TargetName" = "8:thermo_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C38225F7A000426CB7E955945C9466E0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\MassFlowController.m" - "TargetName" = "8:MassFlowController.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C4E58CE5DB3F4304B465A828D1060AD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\MultiJac.h" - "TargetName" = "8:MultiJac.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C54B99BA758A4FB3B844DE919B277DDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C649E5027371431DB5A5440812C57540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut4.py" - "TargetName" = "8:tut4.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C6896DE4391E40FF980A950DDE8B43D1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\surface.h" - "TargetName" = "8:surface.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C6B45FFC93CC4A3F864E363E7B18206D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\reactor_hndl.m" - "TargetName" = "8:reactor_hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C6F4B29F1A3B4B59A21287716572E0B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\massFlowRate.m" - "TargetName" = "8:massFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C71939C1027C4474B690DDDF4B0E8FB7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmatutils.h" - "TargetName" = "8:ctmatutils.h" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C7406B26D83F4CF48E24ED78245654ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C7D02D2B4C444A0C90BD6F8C6B232C91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\trans_hndl.m" - "TargetName" = "8:trans_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C8198F923CDB401EAF223744653A6806" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\equilibrium.h" - "TargetName" = "8:equilibrium.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C9AC5BC6DB9742B79D0BFF153CA39421" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SP.m" - "TargetName" = "8:setState_SP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C9DA0D05D08A45289D0F4BB5BC06C183" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\SpeciesThermoFactory.h" - "TargetName" = "8:SpeciesThermoFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CB2FCC33698242D0BFDAA47D5C4B0F63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb.py" - "TargetName" = "8:catcomb.py" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CB3A0AE176934F52AE20A613C2070534" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\area.m" - "TargetName" = "8:area.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CB46B6FEE22A4C689CB244EF428600BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut3.m" - "TargetName" = "8:tut3.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CC3803859B7F43B18EBE799C9C56933F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\periodic_cstr.m" - "TargetName" = "8:periodic_cstr.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CC3B6BCC088B4734BEC63727D2F020C0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ConstPressureReactor.h" - "TargetName" = "8:ConstPressureReactor.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CC71BE47DD434D7CA2713A9087A88C14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CC933C89F0964841BECCF5EC39B34E8B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportParams.h" - "TargetName" = "8:TransportParams.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CCDF5C1EFB75477BB295929481C75CC7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\IncompressibleSolid.h" - "TargetName" = "8:IncompressibleSolid.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CCE9C76D878344F4BF560E0136E1BCF3" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\graphite.cti" - "TargetName" = "8:graphite.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CCF420B39E734D4384125DFE122E8F6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ph.m" - "TargetName" = "8:ph.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CD3DBDD9333C4033AE1B724282BBBFBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\kineticsmethods.cpp" - "TargetName" = "8:kineticsmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CD777AD5FF1D420DB9723E6EEC27D521" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\rankine.m" - "TargetName" = "8:rankine.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CDBE3C6855AE4501803B9EDA7BFEA691" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_net.m" - "TargetName" = "8:rop_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CEC3CD033FB94DFA8810C8142FED85B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CECCCB3C56494F61A90C39EE70F3DFC9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CF28519F63C34802AB33F9342405FD3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CF7BF165F4004E0DBBFF446A66A985DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\soundspeed.m" - "TargetName" = "8:soundspeed.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CF97D7FBA79945A39E7B09721E7A2955" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\lapack.h" - "TargetName" = "8:lapack.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CFA9B0302ABC430A9DBA2BC2132B6B73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nPhases.m" - "TargetName" = "8:nPhases.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CFE3C277A2DF41018E63BE547F53452D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CFE69F411CF84BE7ABCD4B895EF13C62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setThermalResistance.m" - "TargetName" = "8:setThermalResistance.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D128F9F54CA949C09B3FA61A199B060F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMassFractions.m" - "TargetName" = "8:setMassFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D151A04263364A9B8005377D79AEC239" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setFixedTempProfile.m" - "TargetName" = "8:setFixedTempProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D200B29D2F7E429AB771E6E92961E4C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_hp.m" - "TargetName" = "8:ignite_hp.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D2176F7DD848403DBC973A3676B579CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\advanceCoverages.m" - "TargetName" = "8:advanceCoverages.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D247511BB8FF4C1C83D7D1635C6FE9B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\GasKinetics.h" - "TargetName" = "8:GasKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D3284BDBAC7847909EAF138FCCDD512F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2.py" - "TargetName" = "8:mix2.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D355259E0F5648D282E00FC99F109E5B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ck2ct.h" - "TargetName" = "8:ck2ct.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D383DFA2A9ED4C7EB07E1FEBF9B44DA3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportFactory.h" - "TargetName" = "8:TransportFactory.h" - "Tag" = "8:" - "Folder" = "8:_ED0B99EFCC2A42169D36F95C4BAEDF32" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D3EDAA4023284820AFC142093DE1AAE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Nitrogen.m" - "TargetName" = "8:Nitrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D49889111E484F5090ED91A8EFF57DD0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\mass.m" - "TargetName" = "8:mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D523D656E59A4F36A5799882AD52FE63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D6635B71ADB94BA0AC25AF10E53EAA56" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\diamond.cti" - "TargetName" = "8:diamond.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D68C5368AA4548E2B31B6E44C6CF18CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D6F8538106594E289818596061BE2EA6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\kinetics_hndl.m" - "TargetName" = "8:kinetics_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D71476F12B73490A8B05B4EADA0EFE14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorNet.h" - "TargetName" = "8:ReactorNet.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D75087C07C804BA994309398BC48603F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\addReactor.m" - "TargetName" = "8:addReactor.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DA790596462048CFAECE85420D41D74F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialVolume.m" - "TargetName" = "8:setInitialVolume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DA9C782985C041509BE9C4A7CB68A4A8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1.py" - "TargetName" = "8:flame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DAC38C10430147CDB4A4DC9E5C3F3D18" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Species.h" - "TargetName" = "8:Species.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DB1A6975F18441ED82BDF90E6D84EA3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\FalloffMgr.h" - "TargetName" = "8:FalloffMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DB5649A025C244CCAD4CFC7607B09A28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_p.m" - "TargetName" = "8:stoich_p.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DB6C4271795545FA80082707D6121026" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpies_RT.m" - "TargetName" = "8:enthalpies_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DBC0EC09DC684F47B0DC34BF7958EA66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\isentropic.m" - "TargetName" = "8:isentropic.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DBECDA96409E46C5A16D99CCCFC2E0DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mole.m" - "TargetName" = "8:intEnergy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DC32635C462B40BEBEEC9176E79A9BB8" - { - "SourcePath" = "8:..\\..\\..\\winconfig.h" - "TargetName" = "8:winconfig.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DC87F8DA14754002A1931C3C5DC89AD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DDCBFEDCC6144933941BE8B0EEBB9614" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DE2D53C1D99340B28D76F985871A1D04" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxiStagnFlow.m" - "TargetName" = "8:AxiStagnFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DE5BB9FAA411472B8901537165DFD827" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame1.m" - "TargetName" = "8:flame1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DE63219243264692A661312B00054503" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ConstCpPoly.h" - "TargetName" = "8:ConstCpPoly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DEE4FC947E1543ECA3C5D0A1B5D82606" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isFlow.m" - "TargetName" = "8:isFlow.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DF6E93BE4C85423FBB21EA3F783E0724" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DF7C83B26513481DA856DE8F3DAEF744" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E07080A8272044BDAD3242DFA62A3AD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E0D128147681418496692C77F4B1BECB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\Reactor.m" - "TargetName" = "8:Reactor.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E148F8C2F82A48D3A68E9E2C2CDAD846" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E1570450F26743789099E1D664EA2930" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.cti" - "TargetName" = "8:sofc.cti" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E18D9C95AB9747609535A99DD2D81155" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\catcomb.m" - "TargetName" = "8:catcomb.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\reactor_ode.m" - "TargetName" = "8:reactor_ode.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E1D86563B904400180823C0486CD55B2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\stringUtils.h" - "TargetName" = "8:stringUtils.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E1E6F5ED150E4549979E0E3F9E6D2F67" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\onedim.h" - "TargetName" = "8:onedim.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E1FAFCCB6A854D248F54F164889FAB3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setRefineCriteria.m" - "TargetName" = "8:setRefineCriteria.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E2073E8B81F74741B1D1EA05FBDD0F79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mole.m" - "TargetName" = "8:enthalpy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E2652D81AA404DA6956411A406CA467C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\NasaPoly1.h" - "TargetName" = "8:NasaPoly1.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E2B4EF18B90E479E8D1311CBCE13431E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E2D41C457EA34B59A9124357F2777DAD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\plots.h" - "TargetName" = "8:plots.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E31FFA0A95B14807BA4DA5176F48A0AE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mass.m" - "TargetName" = "8:cp_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E37ED89108944B31B7B46A2F9EE37D3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\reaction_defs.h" - "TargetName" = "8:reaction_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E3B3CBF11A49408DA2A465DD552AE300" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_RT.m" - "TargetName" = "8:gibbs_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E3D9492FF8AB48679A4B287D1CE30AD6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity1.py" - "TargetName" = "8:sensitivity1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E3DDA7E632494939B2882BD6741CFD9D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\air.m" - "TargetName" = "8:air.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E3F58F53501F4CAA92527C64B08D9EBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\phasemethods.cpp" - "TargetName" = "8:phasemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E427788001C549E18618B82C7E6C867C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorBase.h" - "TargetName" = "8:ReactorBase.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E4A964C652EF407CA753B3CA1219015B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop.m" - "TargetName" = "8:rop.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E54668B3A3FB42CF85A71689A715F19B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\Func.m" - "TargetName" = "8:Func.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E5C9596A592F453AA67CDC4AF6A18477" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\EdgeKinetics.h" - "TargetName" = "8:EdgeKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E646FA76573448CAA4749B18614EF782" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\enableEnergy.m" - "TargetName" = "8:enableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E716C1A77B764B6697138BC0DAE3E30C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E732EE7790B34E41B578A9388594D778" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Reaction.h" - "TargetName" = "8:Reaction.h" - "Tag" = "8:" - "Folder" = "8:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E855F8CECB234B9291EC3600C31564E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E885D5C620AE4F7B824607C2AE4001AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties.py" - "TargetName" = "8:critProperties.py" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E8AFB1C8F7A342D5A03F305B3E0230C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setThermoMgr.m" - "TargetName" = "8:setThermoMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E8E0F24BF6014C208A93130FC1761DE6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\rtol.m" - "TargetName" = "8:rtol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E8E78948E8974A1DB4C3D6E63AF58602" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\rdivide.m" - "TargetName" = "8:rdivide.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E8FE474C601D4386BBB0CA9599FF45BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setCoverageEqs.m" - "TargetName" = "8:setCoverageEqs.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EA8E4A02700F48B3A6136CD0055D6CFD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EB1CB1838E7449B4B3F05EF3BA026DC8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\plotting.py" - "TargetName" = "8:plotting.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EB82DBEEDAE14B51840A9D7153E52BBB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Metal.h" - "TargetName" = "8:Metal.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EB89828AF09E40FFA26D353F1088C41B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma.py" - "TargetName" = "8:multiphase_plasma.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EC2FDC1A744E4A1AA4793CB10F18D176" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critPressure.m" - "TargetName" = "8:critPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EC476B2533A1437FA80321BB3090234E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isSurface.m" - "TargetName" = "8:isSurface.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EC9C8B8C68CC4B6FBF2202B0935A6396" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\IdealGasMix.m" - "TargetName" = "8:IdealGasMix.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_ECE66A49B6414A0A92B3FB111288D7B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ctexceptions.h" - "TargetName" = "8:ctexceptions.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_ED90DA83729C417BBEAA629FC6CE1095" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame2.m" - "TargetName" = "8:flame2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EDC27F3DB4874D0B80C408E935F92FD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setFlatProfile.m" - "TargetName" = "8:setFlatProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EF07839F9BC941BA9127CF08C90303D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl1.m" - "TargetName" = "8:prandtl1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EF429C97CFE74E0E82042FE4C0B15F13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\SpeciesThermoMgr.h" - "TargetName" = "8:SpeciesThermoMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F15D7C13B4D94173A06FC05BFE08B4A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\Mixture.m" - "TargetName" = "8:Mixture.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F1C2DC4D3F4541478F3128EC742FC67D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critDensity.m" - "TargetName" = "8:critDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F21DEB7BE0A943B5B4775AA069401FFF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Reservoir.h" - "TargetName" = "8:Reservoir.h" - "Tag" = "8:" - "Folder" = "8:_8931165F9BF34082951685EBEB030820" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F325A9398503407384F1B46B1B65BE34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\z.m" - "TargetName" = "8:z.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F3A73DE374274D23B5B71D3950610F46" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\thermo.h" - "TargetName" = "8:thermo.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\oneatm.m" - "TargetName" = "8:oneatm.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F40D33926EF24D48B642AFADF0905175" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\transport1.m" - "TargetName" = "8:transport1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F42D9F9BF66C46B3A5C9271FA5F371BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setExpansionRateCoeff.m" - "TargetName" = "8:setExpansionRateCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F4E64CA79CC5489294D5EB5751985163" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_r.m" - "TargetName" = "8:stoich_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F6A52BC1EC8D44989142E90DB7AAD1D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState.m" - "TargetName" = "8:setState.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F70CE7A5A1844D3A99121A7A41ACAAF7" - { - "SourcePath" = "8:..\\..\\..\\tools\\templates\\cxx\\demo.cpp" - "TargetName" = "8:demo.cpp" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F7465E4F2E894759A7C68D5C9B4C9733" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ReactionStoichMgr.h" - "TargetName" = "8:ReactionStoichMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F8688399972140A18AEE3821A3076DA9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\Wall.m" - "TargetName" = "8:Wall.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F8CAB1B1AAE143949246B033BF6572AA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolecularWeight.m" - "TargetName" = "8:meanMolecularWeight.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F91C5DD635704BBC8D09E808908B4859" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Inlet1D.h" - "TargetName" = "8:Inlet1D.h" - "Tag" = "8:" - "Folder" = "8:_09CB18C451814CA6BF0E730F04F71CE2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F9E5B7A73F134E42B0EE70B7A917FFE1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\atomicMasses.m" - "TargetName" = "8:atomicMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FA43C5DB9C7546E7BB93ED688744AC52" - { - "SourcePath" = "8:..\\..\\..\\bin\\mixmaster.py" - "TargetName" = "8:mixmaster.py" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FBB083851DA2463CA4F1366F4904110A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nPoints.m" - "TargetName" = "8:nPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\writeStats.m" - "TargetName" = "8:writeStats.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FE3C8C6147AF406EB2F110453C3464EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\RxnRates.h" - "TargetName" = "8:RxnRates.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\surfreactor.m" - "TargetName" = "8:surfreactor.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FF5DBBEF8B6B4C82A8B3FB62CE081988" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\ChemEquil.h" - "TargetName" = "8:ChemEquil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_1DE66EEE44224B05A700D4E2E93A0FB7" - { - "Name" = "8:#1914" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:SystemFolder" - "Folders" - { - } - } - "{58C0ADA3-3CEA-43BD-A3B3-2EA121BC8217}:_78A5B9A56B3C482CBD8EAE207FE469D5" - { - "DefaultLocation" = "8:[PersonalFolder][ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_15DF1B45927A43108F6FD8BF7AB29E7A" - { - "Name" = "8:bin" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_554600D4C1ED49AB9B3F8AA14A61A393" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - { - "Name" = "8:lib" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DB5A91AA0717429F8150BEDF3E9C5883" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3A0F7AAB1D684CA7825C61ED7C1B1510" - { - "Name" = "8:tutorials" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9EE8F68C07DC4618A6A96B6CC2F6F4DD" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_0961E3795854450CB636397255DAA0B7" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD44CF949673422BAA32D14476046641" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_6458A3FFB8B14932A9224D66420736A4" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_07358AF408BA4439926F97BCFC4B2D4F" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3C5C7E20E5A44A629E7E36FC49B00666" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:MATLABCHECKBOX = 1" - "Transitive" = "11:FALSE" - "Property" = "8:_D5D9F0F73161444D859B49722CB836BB" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_5443CF3FEC1C4919A396E1213F7EE741" - { - "Name" = "8:toolbox" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6F2DCE9A4AA04C11955BD805A807D800" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_EB2EB0FBE19246E88A9FC85FC50A0261" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CD16B7D343A04A8A8A960BC7DF6EA2C3" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_121EEBBD5CFE412CACD796AD0EF6FACB" - { - "Name" = "8:@ReactorNet" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D25A4392A14645B6856AC0586A697940" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_EF7FFF45863048E0BAC8024E5E97D77C" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6A482636047A4CC39874C6CAC1A5EF83" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_1F3BBA95030B48589E34A16DD6877FCD" - { - "Name" = "8:@Wall" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FFC5ABCD0DFE4C64AA3A3119E28770C2" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_978963BB80B74B24B2062E400EF7C9EC" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_14F46BDFA3354434A8AFFDE6EB01D8B2" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_2069E985BE1F4CA4B39E0FF4C857A89D" - { - "Name" = "8:@Func" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BE26BC62A5E847FEB871B25C40EFE75C" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_208069FD964F475CAB363ACBD7A943C9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_707701DD38634631A3D20827FC5AFA22" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3D735E99070D4A9C816814209321A420" - { - "Name" = "8:@XML_Node" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1813C288DD40450E9298CE06190DC28A" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_57DD5A7770D14DCB9F09381FB3D030F7" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B241B483BFD649A7B4FA5ADD1E48CB30" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_5980613DA74C49ABB29CF7F4DE8AB8E7" - { - "Name" = "8:@ThermoPhase" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FC38217CD0FB41838729EA5473177414" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_447495742352464D81706C05F55520E9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_115FA39FE4BB4AF98CC450D2C74A832C" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_69556754D0874D01BDA2D9D85F5828AB" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_57FC5782E53444E0BDBD66445370F485" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_978580DBC0A748D790712BBA0B9F1CC8" - { - "Name" = "8:@Solution" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5F863499C9764D489DC234E3476D8220" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_9B31506F5B4F443F832FD3FAB7762E64" - { - "Name" = "8:@Mixture" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5B0B4B544BB7475F8D95A7351BBB5D9B" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D683DE5C1C054AF3B3A8A608F8739204" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_A330CA11C4BC435B95427DEA56FD503A" - { - "Name" = "8:@Kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_38EC5A2AC0344396A365C0523516B935" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_56A5C77F96C948C3BE617599F99A4FBA" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8F8646357F9D4DFAAEEFB9D3E80E74AE" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_A50BD9722A014DC391E5474262EFD7BC" - { - "Name" = "8:@Transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9609451B0BA44ECCBD59EAC256BB8FF6" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3FCDEC5F15154A079645D0817951A946" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0AE702ED16684776A58F4024099D5B16" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_B73A689A75AA49FE9E67D8BC3DE5A587" - { - "Name" = "8:@Reactor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6491ED6A6FD4419EA3AEF94895C5862D" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_D663477510C5436ABAF316F6D1E24D8B" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6B68DDB908574065B114EE838055D3A9" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_E30E67F5102146D39202747276B874EA" - { - "Name" = "8:1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BEB5629A74864C33BFBE85775BDF46E9" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_45FC9BD502EB46D8A920CD02D93C3848" - { - "Name" = "8:@Domain1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C30A197B3595470A87A00E99059B4FC7" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_D75DB80C0EC34E90A1753028F279B4CE" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_68A85998C36844B181D4B77A3DDF4225" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_BC662E8F11194A61A8CAA2E8666C6C9F" - { - "Name" = "8:@Stack" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8AF1FDE1D7B24A50BF4A2F6F6E8F680B" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_57614C30E82048A8B1CDA4FC95D7707F" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2E20167746334C26B769B9EBA08C08DD" - "Folders" - { - } - } - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_F7AA24452AD2470EBD83A85CC5DB9C43" - { - "Name" = "8:@Interface" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D74B7A317604458496D56195B17245D4" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_653D9B351BDC4DD6B1AC64034FB114A1" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_12B0318E56C647B4B7CC27D5344E95EB" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_F91A2400AD764EFB800A2F62CE34346C" - { - "Name" = "8:@FlowDevice" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD955CAF1DF74ADD917984BE9557C60F" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_A0CD6A9C146B405D99355A87F6B7C47D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1980519B8CAC42038A2C793D12949EB2" - "Folders" - { - } - } - } - } - } - } - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_459DD0AF25C34F349354CA380B58D1B1" - { - "Name" = "8:include" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_864A875C734E4F7993EF599A792089AF" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_0A794889F1894108860FAF5B5C19F2FA" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B07B49F047FC40469C9073136E5D2AFF" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_E012FB4758FF455E92C3DDA25362EAA7" - { - "Name" = "8:kernel" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_352275D48884496D8522F3217A13F3E6" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_09CB18C451814CA6BF0E730F04F71CE2" - { - "Name" = "8:oneD" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2B42505B039A49519786CA0D70490685" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_53F9EB9B43ED4F5BAA5BA4845FD4959C" - { - "Name" = "8:converters" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5E3DF16CA5C34645A89A802D45B18C80" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_8931165F9BF34082951685EBEB030820" - { - "Name" = "8:zeroD" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A11087DEA01D457E81EE4FABD41953BB" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_ED0B99EFCC2A42169D36F95C4BAEDF32" - { - "Name" = "8:transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A8EB504EB25E468D880A44F2A8718989" - "Folders" - { - } - } - } - } - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_B5AFB668A86B4992A1E2A55DAE0CAA16" - { - "Name" = "8:templates" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_62F15E8A639B40A680E06DA189388AC0" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_D97B8D9B527F4A4DAEE139297609ECEC" - { - "Name" = "8:demos" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_70CA7BFF862F455CABE89474DDC8C8FC" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_1E1FE4A0C7774B9D9C081E2DB4033D90" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6D0630638BBD4E29B840B324B4436948" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_0890042B73B444F889F091DA6D68E910" - { - "Name" = "8:surface_chemistry" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7FDCBB9A8592442FB42D4EAC7D3E53D2" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_1616A26BEFEB4172AA40AC8ED7A8DC71" - { - "Name" = "8:liquid_vapor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C2F7106B0C584CBFB1CD9EAE69B563FA" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_16393A44970E4B7FBB528A637EFFCF96" - { - "Name" = "8:transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_562525EA42174B63807DD27EA3AAF879" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3A41B4ED54254F0BBA9CB3DDBA13165A" - { - "Name" = "8:kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F799EEA7F7224C0A855895023F8B3072" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_782A3716E7024C07B7E1786A6FE5D350" - { - "Name" = "8:reactors" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A52D5AC4A0DA4CF483D3E640BC1A5DA0" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_92296F507AEB4419BC7BA3118B2C6409" - { - "Name" = "8:gasdynamics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D902ADED94764BD5A6F420077708B493" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_94D018F7686D4C8690B65C153B0E887F" - { - "Name" = "8:misc" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1D24D49031EB459B974D7D13D5644D3B" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_96B5AA517B204067BBA02150611C7875" - { - "Name" = "8:equilibrium" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8D8BB4AF59F64F88B994C19CC5EB233C" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_ACBA4EEB967B49369C5B078365A8DAA6" - { - "Name" = "8:flames" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0A2A0C303015456C841FAB6074A18B6F" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - { - "Name" = "8:fuel_cells" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A46073D5774A4A7488FE7ED41BD60D59" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_33E4779AB0C24751BA2645F9F51A39D3" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_45FAD6A5DFB047C2994B1D14F63B7703" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_91BFCC5A92684F63A014CEC3B9265F1A" - { - "Name" = "8:C++" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4550D17AF47F43D38272308352CF8718" - "Folders" - { - } - } - } - } - } - } - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_C18AD6B27F144D1EA3F43513268152DB" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_4BFAA71B92694D76A142F5C3ED00F20A" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_446477146DAB4A47A7AFC9902BF72A7E" - "Folders" - { - } - } - } - } - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_CB299B68C1E8487BA1E6C1DE65DE88C8" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_D46FB0DFF1A641E9BFF64D43063070E6" - { - "Name" = "8:#1910" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:CommonFilesFolder" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_DF884E96ECD3496ABA2742BCED88AAF5" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D0580EB36EB74E3A86790E702522DD35" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_C549C449993E4410B91BDC9AF59B84C5" - { - "Name" = "8:data" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_64E07C739FB4417C9F46987FB8046C1D" - "Folders" - { - } - } - } - } - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:Cantera" - "ProductCode" = "8:{6318C429-3F69-486A-9987-4D1EE1CA9328}" - "PackageCode" = "8:{0468CAED-E609-40B8-90FF-0A935A842648}" - "UpgradeCode" = "8:{86C96BD0-4EFB-4B99-AB55-8EFAF9B39170}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:TRUE" - "DetectNewerInstalledVersion" = "11:TRUE" - "ProductVersion" = "8:1.5.4" - "Manufacturer" = "8:cantera" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:http://www.cantera.org" - "Title" = "8:Cantera" - "Subject" = "8:" - "ARPCONTACT" = "8:cantera" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_A15FA43938034D689F29E65C6E8955DA" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_5BDB66062CEB415CB4959F307FD0D508" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_F857B3D1747440C9A23BF58734C6212F" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_C66D7959D9B84EB48504D18245ED499E" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_11B1D446B20C4613916F260F22FB3817" - { - "Name" = "8:MATLAB Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_6F6F7A9D0A9540169C31BFC498809033" - { - "Name" = "8:Cantera Folder" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_99B1AD3DF5084F17BBA2DA9A8E4A758E" - { - "Name" = "8:C++ Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_C1510D42AA964597A8CB449C6B94E86B" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_B3E018B74C474749A9DF614C49D87F87" - { - "Name" = "8:Cantera" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_CB299B68C1E8487BA1E6C1DE65DE88C8" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_C74524C318E34B64BC7F9CF0751E1641" - { - "Name" = "8:data" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "WorkingFolder" = "8:_DF884E96ECD3496ABA2742BCED88AAF5" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_D36F249B6C63494C8991429C3423DCBF" - { - "Name" = "8:Python Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - } - "UserInterface" - { - "{B654A020-6903-4E6A-A86C-75DC463DB54B}:_0ED84EDEFD4A4D698882BFE1F333E307" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_29BC7A20906B4BB591C50CBADAC4F8D7" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_08E53ECD734042D6A31CA37D0355381E" - { - "Sequence" = "3:200" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_35FDF6BB662A42B1A92CE5FD019F169A" - { - "Sequence" = "3:500" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_ABC3AFA2024F4562A020AE6343D51300" - { - "Sequence" = "3:300" - "DisplayName" = "8:License Agreement" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdLicenseDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "EulaText" - { - "Name" = "8:EulaText" - "DisplayName" = "8:#1008" - "Description" = "8:#1108" - "Type" = "3:6" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:2" - "Value" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "UsePlugInResources" = "11:TRUE" - } - "Sunken" - { - "Name" = "8:Sunken" - "DisplayName" = "8:#1007" - "Description" = "8:#1107" - "Type" = "3:5" - "ContextData" = "8:4;True=4;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:4" - "DefaultValue" = "3:4" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_FA729FED55DB423CB796E6380C3BBDF8" - { - "Sequence" = "3:400" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_519E224B02474BA2B8DC4CD4EAE2ACF7" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_2C3380451FE74068AF488EF4B6F73D94" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_6E2FF8B7EC244C94908291296E19523E" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_8F2D5F455ECB44B3859CD8D454A71C60" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_61D8CE962B314E818663A48C0415867E" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_24A74643C5964C87A797E1A643FF0D0B" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{B654A020-6903-4E6A-A86C-75DC463DB54B}:_75F14606DECA4813841F459E15C791FC" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_C1A3D09CAB0840249EFCEC6855096B18" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_CA30C9165C5C49C68248727A03AA7A6A" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_C87AD3FA8C0A43F7A829C50FC5F1F1CD" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_8D56619ED59C40F9B3C655569D7BE0E9" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_E8083BADF0444BC18403655940B69C5C" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_7D3124C107AA4B8AB2828C5E89BCA5AA" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - } - "MergeModule" - { - "{35A69C6E-5BA4-440D-803D-762B59A45393}:_8EF2E69F033240369A701C148ADBDB51" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:vc_user_crt71_rtl_x86_---.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{35A69C6E-5BA4-440D-803D-762B59A45393}:_B903D3A5E3B84DF2A2022876EB2B2A7A" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:vc_user_stl71_rtl_x86_---.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "ProjectOutput" - { - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_0288F5F0AEF2495BA53D3C165E79D0AF" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_08587955063141779B605860D7FF04D3" - { - "SourcePath" = "8:..\\..\\..\\build\\bin\\i686-pc-win32\\ck2cti.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_1DE66EEE44224B05A700D4E2E93A0FB7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_1861CF609E4C4EE2B209A26A6705ACD5" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctcxx.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{E342202C-F877-43D0-8E66-D2A7794AC900}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_218EB718190641D592079146D7F47C17" - { - "SourcePath" = "8:..\\Sundials\\Sundials_shared\\Release\\SUNDIALS_SHARED.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_262DC17B610648E5A48002B469EC6A57" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\zeroD.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_3CCADD10D5934D599E6AAFF04D6353B2" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctf2c.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_9266F7C8C9F04682AA878E3A5B9BD5C7" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\cantera.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{E719804C-1351-4C44-BD5E-611AF464CD20}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_9AC9ABAE8E744589A8EABDBC4C1B063F" - { - "SourcePath" = "8:..\\Sundials\\Cvodes\\Release\\CVODES.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_B137545CCE204222B6876022AB4E6EAD" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\oneD.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_CC9CBF448698418B83091250EA8BD78C" - { - "SourcePath" = "8:..\\Sundials\\Nvec_ser\\Release\\NVEC_SER.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_DA6641D60355480A978E4B4464AA5DF4" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctblas.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_DD3B996C17714923935F9497EC38D611" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctmath.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{127547E3-416C-4C12-82E9-52F912142FB5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_EE7C6EE3A3154788B22D1EF05798FD2E" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\tpx.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_EF86BEE203814AFB81EFC961B7A3E77E" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctlapack.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{2701B198-FEC1-45A8-BC20-AACA46B64986}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_F002FBC310564DAAB051DE2CC004A129" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\transport.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - "VJSharpPlugin" - { - } - } -} diff --git a/win32/vc7/SetupCantera/SetupCanteraLite.vdproj b/win32/vc7/SetupCantera/SetupCanteraLite.vdproj deleted file mode 100755 index 7f2fb6886..000000000 --- a/win32/vc7/SetupCantera/SetupCanteraLite.vdproj +++ /dev/null @@ -1,11918 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:701" -"ProjectType" = "8:{2C2AF0D9-9B47-4FE5-BEF2-169778172667}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupCanteraLite" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_0067AAD709D94D2693870A06ECD55183" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0170832FE2DB4AE0BF9768C53BE03A84" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_022EDF1564FF4680B6AA609CE897983A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04C83EB86A3C45AB93638133493E5923" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_051107F9F8CE4364AC76D00D23F8B7C5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05690F470DFA457FBF7C925A8420EE5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05EE24E611E74A1C88CE22420CA5500D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0700963A1F1B41FFABC3911498DB18B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08587955063141779B605860D7FF04D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0936663A9C31411CA21989F4FA39A5F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_09812E60422340BF9B92C7BF4CDE6FC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_099E198F6C01436DB271857F1309977D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A01A5CC173A4619BBAE80DFCE7B23B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2F83F932A74CAABB87DEEAC1B9536C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0ACC7910CC8A46E38521F8A78AF253D2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B0170BC983349DD945697DB4576507A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B09C9A0BF24498399548814F95D1EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C8BFBA19BE949699F417570F8C69B5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C9010E357C748BEB820CF0E830F09DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D0FFCC38C4645D997283F1C5CED5E06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D47388E1B474AF08F6DA0FE72025C42" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DDF1766C6A04C76AE6AF7FBC35E471B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1049E82786DB4EB2BDEFF972136B0F19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_105638BB017C47DA814720D4C027908E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11553AE6EA7A424D9621E724DFECC70F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11AF9ACB25D6477DAE6906C2F6F688CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11E4F38118B54DC680D5CB741B29BE8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11EE4F61EA0740F1BE63419C7A48F185" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_125E1AC217CC40BD8F4534E875CB9D0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12BF22BA87424178B29DB07E669C3501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1420A489C89E4859ACE78FD5DD27C00A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14580E5B948E47509A941AA338014D25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15D3C38D37A94D67B313EC3B57DA2AC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1603140AC6F7489CA14D3F41F58E9379" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C0D130AB2748E6890B937071A27A0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C40536EB0A45658DF4EC29D7CBBFF9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16DD6B492C274AC6BA6ED913C513A10B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_17873678EB8F4A3AB2296EB4E4483220" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_18712B731C5F4CED9DD70EC680C9BE15" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1889FAD37671415E95CCA5B1BCAC9E32" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_188F8F797CE24E7C9FC6BD62D2B5D37F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A3D179D05C74A909F2B5B6E254459BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A66CE0396934BBDBA728386725B2310" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A758A2D9CC24D13A732C1F61D692657" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1AA05F39A2464BDD922D26B58FE78BC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B053CD5461740CB891855B80F250AED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D0B3F7CDFF14AD2A879AF1565D65509" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D7106B99F8D451CA0562A6C57C2CC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DF1B93159BE475CA0438F31722F856B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F6340B91C654BDAB4FDCA7B545A9ADD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_219FDC3ACB2A4C81935851A9CAA7E1EF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21EB392DF37A421CABBDA197A9226C0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_232F4C7716264866BDEA07B97B583460" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_23CE4DDD38054CA49B17BEEF4D728230" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254CA5A242F04444AB0F18F9ECDD091B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254F288B4BAC4BDFB4B21E76747FF336" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2656FD40F3784C588D4004D409B0F80E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26A7FE2928CE45CDB52C4B3326A33951" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26E683AE357D4F70A3DC3C57295541D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26F0BA63411646978592D51F26AEA36D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27549892F823435798B476FC52F3F012" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27DE8E5E29574E81B2D3ACC4E87B9637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_290E7C7E5DF64841B1F913EEFE006069" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29200BDEF8B44EC69E128788F4E09B16" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A1589369A874D0EBFFE3F6D98426A49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A962975342142978B3DE11A20C9AA52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2AA7C0041FC74F718A561EF0696DCB45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D09076E55604C73A82892D474E11779" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2DEE49E2A7B4424E824CE5D0FB2846A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EC7B0A350C34DF0B88C45A54FBFCC99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_30A47D7D93D84874A41E1782FDBCEAAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31AD332AA56C4DF190FE6D941FAAFBFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31E9E8DFB7144795A05AEEE66B279AB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32A08E26D90A41869BE37A47450DADCC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32EAE5622F7540E4AC357D8D1CE10D8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33DBCAB550F1494AA40EFC4ABEFBADC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34722C3A5A5F4217AD66444E408BD476" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_362E5E6B9766498182C5008280A41BD2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36C2D841FA684319BDF30F2B68589637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_372176D2A2AF406DBD625F54972DD57C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3778A89EFC6C475E8AFE84940043B8DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37B9F5E138A645AAA6CE6C3A36E5361F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37DD28283FAE43A78586C3D99D999022" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_385C8980D3A44A2093CD638714277678" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_389AC795E7E842888394BE52A051FA12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39B2C611CD84448489F8AAFF5BD8AB28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3A49848C6AC948D8A7CB60B10FE0D83A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3AC42291E06E4768B0D87839DC9B9E77" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3B00646190674532ABC512E89130A0D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CFA6387302F446AB7938595154FF208" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D56811387944E55AD39C984228C4EAB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3DCD90FBD1DF4FA588238C70E0BADBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E35E9D3EC6141BBA820F7D01B815B64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F96D57E8F9E461F8C90E0ACB1C937D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FE261F2E167434D804087B6019EB309" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF4115C0C3E4C1686E79FBDDD2387B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_406AF99237D3409BB85917A5A60F74ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_40E56E51E02745B4AEBA40660CEC686A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4112A1F6C299475E8562339C3C38AA30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_411BB46D848848E492899FDC17C2D1CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41BB99990E1246928D44C3F17942116E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_426E85F25D874E3F8F14D31E41AACF51" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42A0DE2343CF4D5FB768588C28368E2F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_436F32BB3B714A24A6B5FD1BC342A9D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43C69E8F23BD4919BB63BD40909B3759" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4401025D0D424A86B6C25A9B34792A95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44512354EA8C4577A9085C81B028A63A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4479546E1AAE44FFAEFC0A710BA2E8FA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44DD06CC20DF420A998E2F1D0B980A99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_451FADB3D70145F9BF8D235E092B637A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4555B1D563634B6AAE88E0051E34DCE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_46756B27C91E4C17A9F3C06BCC6D9011" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_47F3CF4BEA29482B95C1AFFF8F6C8145" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_480527309EA14538802C74D4B190DBBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A677774412940DEAF6AF1EDC27A3C58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B3F9D28B70C4E339662B2029BC4027B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BB20697D6B74F4C8917A9D04AA4A240" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C18112956A24BF6A1BF387E433469DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C432477911B4A8596B03914FF5916C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D71E06EFE884CABA33151E1C5263C86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DCD79F33434471C82E0AF768F55ABDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EEA2D8311E542998617CB07AF269FD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51E2B9E78A964BD383DD8FD460AA4BEF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52519B41A4064DEEB452445FD3550B6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_533E20A890AF4129A378968FF67AF0A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53EA1C41778744F09879AEAE0BAA0233" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53F7FA910CDC4CDEBD4257B5798B1B68" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54A0EE28997D4BAFA2E782BD6448A658" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_589104AC830A4577B736D1106E7955A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_58EB415F05014A608F1D6B281082D92F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59166DBD45564A4195E8A079862D7DF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59245571144542D38FEC0EC1F00503B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59AA52C5E25745589B34218C6B13216B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A494D5F32BD411D861645EF9D5CDB73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AE86752EC8A4B54BA6494A9F33FFC71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5CF936560FF2465682DB2D4643C37441" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5D50FACA9AE548919661678B7562D727" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6006C6D0EC294FC39274776F6EA12BCD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_60D94AAFB6AA45F89A490D537326B0A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_61151103C608408DB35D78567822421D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_611E4F1900564CD88F755749C3B89219" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6221061E3BD647AF89BF4AD1785DC9EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6349662626C947BC91332BE085230672" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_655DC211FDA743B8AAE2A254B8D24127" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_675DF947A58B4BAB9DCCF837D18044E9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67B4668A9613497EAD89E4D9D5CDA7B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A9E2F67751E4036B32A3F73F389F4B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AAD2BE4779D4141B7F3175116575B70" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AEC5D1E91784853A899657570B75158" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B4133DAEDD847D9ADB436F3A9E515BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BB63A2172964772A16E8C5DC8FCB473" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D020030302F41549FD1141A91CA6BA2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D7DFA49CD7F422597521F6BC18DBEAA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E40F711DE6E4C15977B10FEBD1145B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6F1E0DC55B9845DAB4FE758F0B54914C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FF6BF505F0442DF81B97A7B0DACFF53" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7086E515306342B7A4A3EB7E47148FEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_713B640959AC45A78E7B9AE581F86E14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73514E9BC5F44C509C562E01E8A958C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_738E966D4DA74FCE8C40B58983F4DBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76175107E4CC4459ABF6F887224C85F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_764D7127961644B186D3F90292091805" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76E915885B634DC6B57F89520C4788A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77A9AA9EC6624BD592C9D29EC6F94989" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77EAFF9FBF464DF08EFF37113E7DFC96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78CF2DC24832474C9EC5304ABA596D6E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_795887D785084824B7284296DC74B527" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79674E6058F048B1B7D3CFFBCBC41561" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A639317418840CC95575AFDA89539F7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A85089C17D248A7A8A12641C4F86125" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A9AF6339376421580BF6E8028871929" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7AE8B40AFA7241769B5BE31427ED582B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B7753AD699149308A9D8CED65455D7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7BE4FD7D976D4900BD24BD9AB7501E99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CC6FCB9F695423782EC53DADE5D585A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D3DAEB7E7C647309752BD3A02876B72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7DD2BAB195754859931B7B5AE308FAFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E12BAE0A2924E5B83533AABB0BAC4DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F82322C27494517A818285E796783B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7FC1EE2D828D4E0C9A209479895AE0D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8106318CEF394350AED3B89BE5973CD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_811F3F47C3D94B628C68557B0EB6B36B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_81812B7D110C414C960813023A134932" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_820901EF2B7645DA9A49A95F3E9DE675" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_82CA2F512C5343BDAB3341734D58FBFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8354660D2436459FBA8CB92DB7B6E337" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8549950E280A4786AA6D4BDC9AF44DFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_854DF9ED3FF741069B2D162A049D5E64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87132C070E1540D8A4B033B0E98880B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87CEEEEB6DBF409FACD5794BCBD35B3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8801CCC3E95F4B098645DB0BF445E0F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_883D69622DD84D3A8A0D79D522CDA96B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89B32FBB4FF441CFBCF0F830E202A7A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89F1C726748E4E57ACFDFC467114BD09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A5883FE50804063BBC8EE8DA9BE78DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B0D72F9F1AE422C81E4923414EB4C13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B6199C9EA65475D9FC6C0CE792EA501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7D8CEB11024B759FC6F809723ADF7A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7FD926CFA648FB9CE0ED24957F591B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C9645906D2B4435BF0DDC85F14F5CF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CB8ABF1BC42493F8C6451072245546C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CCF6467ECF34EE59611670E3645C719" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D346FD7000B4F0AAF57691DB6BD9CDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D3C554266D94991816CFFDB66F29AAE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D419E40A1674FC9A198BCD3410D643D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9038E6B538DE4653AF9E77498DC5C9ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_907955714C5E41C3A0C82F4633DEBAC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9084333D5B164E6FBDFA7096FCC75845" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_92A6D3125FA44E7B8795DE4EE0D738BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_93900A98FABF44F5BE2F6F23E3EDA13A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_966477D37CF5451993EFF07CFB2EE25B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_96CCEAC6BE924D6AB858949535654A72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_979C4C61FFCC47BF9DD9142A747D70F3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97AB3E7B353E4703B550348C63AEFC2D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97B185B78C154874B77D2049B3300B41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E71EC4B7404230AA4186AE74AE88F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E864DEE6A144A78B68D9A3BE9A0413" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_997EF831DA8A4F9C99259C70FFD9E6C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99BD8AC4084D439CA80816A89387CF06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F4B3534D1A4C88BFE4FB5D2F216E23" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9B44971E00A5481BBA5AFD0A2166D16F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C0C04F635C34CAAB690617751FEF9A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D045060258445C7988DB84395305E71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D6C72386A0B4D3489A13633E229F95D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E7A52340F9643268D1F2F8864729809" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F0C5F7640E84C648A16A5663DC11CF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A00E186E9C8E4BCD92EEF18A7870AB64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0858150B00A472BA6EAE71AEBABDE58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A11208A3D61940228E848C672615C531" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1555851966F4CBDB4BE3837641C843A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1A7D85419B04E1892896FD2723CBE05" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B810BE7C004166A16F019DFEBC09A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2ED793453A54C92AD356FF69DBFAFF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A386FFD174A848B8A6383A013CA12077" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A3D6752BC31B442CA999E19F8AA5B2E5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A44EA116D8BD401B9F5CB43FD0A516EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A4C093C7C647401E895109DA2F564C52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A513873E6AEC441CB417942FBA4FE3A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A571DB581B7B4085B6EE29881A27A2D8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6399AF77EE147919D73E720D70C79FF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A694168142B64AB28E79B5E6E5357979" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7C06AF14B3343C09C52E321CD45D0A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7F216F3691F4406AD4BF685C2009EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A98B9A585D4F41858169AD80172314EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA7D54EA12024486AA1ACD45D323E74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AD850F3126CA46F9AEB85D4851B8149F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE01A18492C447D89BA1FE02869A18DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE235390D3E7456BBC816F28EF0EDE5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AEF2EA186F5D4A0486766CEC08F7A180" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B0990FEE057B4CEB8E819D4F36FC023E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B25E14F3380641BFA793B8AC5538DE69" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2C4715A10D6448C8785A77EC8E23AFB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B310C19F9C7F4CE6891A34139EB0D630" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3217183190C4EF5AA058E2F2DD49E5B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B34D82DAE3934AE8B7A86ADC89132428" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B37B9EC7F5E24483ABF63844CB762A5D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B383C9B0D56149A18C3933E52A659729" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4FB5F4843A24E41B7FADE7050CD9910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B700B3135C044AE1A0E11F64951C15B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7ADCE96BBE64258BC9786A36007F18B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B813F357BF6E4672A6C5C6420233E416" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8531EBC9C4146A18DBDEE03537C7895" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B90B2A45F38546C7B27A422537B6A0D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B980912F97654A708BB58521244643F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA1757667DBF4ECE82D987268736B4D7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA56A809F849463387B0C35C554D3FDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA98368496BD4C0995AED1119FD4CCFB" - "OwnerKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA98368496BD4C0995AED1119FD4CCFB" - "OwnerKey" = "8:_08587955063141779B605860D7FF04D3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BBA24149F4C04977B6A07924A49D7352" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC01A169AEE24DEDB532037D3A25C69E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD197F0310024D04B386D3ED22B580F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD35BC44FB8F441B8E358D9D364CA587" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDB11450018647D880BBB295E0BBF169" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BF2D5197C57A4E03833752A2F4532AA8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BFE5589963E74E2E9883E4AE5826D851" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C03B6B3C637C45749F3ACF29F4FCEDF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C04EEE51536C4B64BB1758CBB7873B34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C065BAA069514382B51E468B5A1978A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C094488877694ABCA56EEADA30F0C108" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C21C0E1658844265AABB721C6F59AB24" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C3750F20EDFA48D78E02F27034D02209" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C38225F7A000426CB7E955945C9466E0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C54B99BA758A4FB3B844DE919B277DDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C649E5027371431DB5A5440812C57540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6B45FFC93CC4A3F864E363E7B18206D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6F4B29F1A3B4B59A21287716572E0B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C71939C1027C4474B690DDDF4B0E8FB7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7406B26D83F4CF48E24ED78245654ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7D02D2B4C444A0C90BD6F8C6B232C91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C9AC5BC6DB9742B79D0BFF153CA39421" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB2FCC33698242D0BFDAA47D5C4B0F63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB3A0AE176934F52AE20A613C2070534" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB46B6FEE22A4C689CB244EF428600BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC3803859B7F43B18EBE799C9C56933F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC71BE47DD434D7CA2713A9087A88C14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCE9C76D878344F4BF560E0136E1BCF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCF420B39E734D4384125DFE122E8F6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD3DBDD9333C4033AE1B724282BBBFBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD777AD5FF1D420DB9723E6EEC27D521" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CDBE3C6855AE4501803B9EDA7BFEA691" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEC3CD033FB94DFA8810C8142FED85B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CECCCB3C56494F61A90C39EE70F3DFC9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF28519F63C34802AB33F9342405FD3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF7BF165F4004E0DBBFF446A66A985DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFA9B0302ABC430A9DBA2BC2132B6B73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE3C277A2DF41018E63BE547F53452D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE69F411CF84BE7ABCD4B895EF13C62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D128F9F54CA949C09B3FA61A199B060F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D151A04263364A9B8005377D79AEC239" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D200B29D2F7E429AB771E6E92961E4C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2176F7DD848403DBC973A3676B579CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3284BDBAC7847909EAF138FCCDD512F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3EDAA4023284820AFC142093DE1AAE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D49889111E484F5090ED91A8EFF57DD0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D523D656E59A4F36A5799882AD52FE63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6635B71ADB94BA0AC25AF10E53EAA56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D68C5368AA4548E2B31B6E44C6CF18CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6F8538106594E289818596061BE2EA6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D75087C07C804BA994309398BC48603F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA790596462048CFAECE85420D41D74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA9C782985C041509BE9C4A7CB68A4A8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB5649A025C244CCAD4CFC7607B09A28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB6C4271795545FA80082707D6121026" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBC0EC09DC684F47B0DC34BF7958EA66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBECDA96409E46C5A16D99CCCFC2E0DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC87F8DA14754002A1931C3C5DC89AD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DDCBFEDCC6144933941BE8B0EEBB9614" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE2D53C1D99340B28D76F985871A1D04" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE5BB9FAA411472B8901537165DFD827" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DEE4FC947E1543ECA3C5D0A1B5D82606" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF6E93BE4C85423FBB21EA3F783E0724" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF7C83B26513481DA856DE8F3DAEF744" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E07080A8272044BDAD3242DFA62A3AD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0D128147681418496692C77F4B1BECB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E148F8C2F82A48D3A68E9E2C2CDAD846" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1570450F26743789099E1D664EA2930" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E18D9C95AB9747609535A99DD2D81155" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1FAFCCB6A854D248F54F164889FAB3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2073E8B81F74741B1D1EA05FBDD0F79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2B4EF18B90E479E8D1311CBCE13431E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E31FFA0A95B14807BA4DA5176F48A0AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3B3CBF11A49408DA2A465DD552AE300" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3D9492FF8AB48679A4B287D1CE30AD6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3DDA7E632494939B2882BD6741CFD9D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3F58F53501F4CAA92527C64B08D9EBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4A964C652EF407CA753B3CA1219015B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E54668B3A3FB42CF85A71689A715F19B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E646FA76573448CAA4749B18614EF782" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E716C1A77B764B6697138BC0DAE3E30C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E855F8CECB234B9291EC3600C31564E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E885D5C620AE4F7B824607C2AE4001AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8AFB1C8F7A342D5A03F305B3E0230C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E0F24BF6014C208A93130FC1761DE6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E78948E8974A1DB4C3D6E63AF58602" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8FE474C601D4386BBB0CA9599FF45BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA8E4A02700F48B3A6136CD0055D6CFD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB1CB1838E7449B4B3F05EF3BA026DC8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB89828AF09E40FFA26D353F1088C41B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC2FDC1A744E4A1AA4793CB10F18D176" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC476B2533A1437FA80321BB3090234E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC9C8B8C68CC4B6FBF2202B0935A6396" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED90DA83729C417BBEAA629FC6CE1095" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDC27F3DB4874D0B80C408E935F92FD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF07839F9BC941BA9127CF08C90303D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F0E87324D4DE4284B13211E9F8A0D954" - "OwnerKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F0E87324D4DE4284B13211E9F8A0D954" - "OwnerKey" = "8:_08587955063141779B605860D7FF04D3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F15D7C13B4D94173A06FC05BFE08B4A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1C2DC4D3F4541478F3128EC742FC67D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F325A9398503407384F1B46B1B65BE34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F40D33926EF24D48B642AFADF0905175" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F42D9F9BF66C46B3A5C9271FA5F371BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4E64CA79CC5489294D5EB5751985163" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6A52BC1EC8D44989142E90DB7AAD1D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8688399972140A18AEE3821A3076DA9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8CAB1B1AAE143949246B033BF6572AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9E5B7A73F134E42B0EE70B7A917FFE1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FA43C5DB9C7546E7BB93ED688744AC52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBB083851DA2463CA4F1366F4904110A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\SetupCanteraLite.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\Cantera.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "Feature" - { - } - "File" - { - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0067AAD709D94D2693870A06ECD55183" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_condensed.cti" - "TargetName" = "8:nasa_condensed.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0170832FE2DB4AE0BF9768C53BE03A84" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\setMultiplier.m" - "TargetName" = "8:setMultiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_022EDF1564FF4680B6AA609CE897983A" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\h2o2.cti" - "TargetName" = "8:h2o2.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_04C83EB86A3C45AB93638133493E5923" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\argon.cti" - "TargetName" = "8:argon.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_051107F9F8CE4364AC76D00D23F8B7C5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite2.m" - "TargetName" = "8:ignite2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_05690F470DFA457FBF7C925A8420EE5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\mix_hndl.m" - "TargetName" = "8:mix_hndl.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_05EE24E611E74A1C88CE22420CA5500D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\equil.m" - "TargetName" = "8:equil.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0700963A1F1B41FFABC3911498DB18B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich.py" - "TargetName" = "8:stoich.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0936663A9C31411CA21989F4FA39A5F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond.py" - "TargetName" = "8:diamond.py" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_09812E60422340BF9B92C7BF4CDE6FC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston.py" - "TargetName" = "8:piston.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_099E198F6C01436DB271857F1309977D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_get.m" - "TargetName" = "8:phase_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0A01A5CC173A4619BBAE80DFCE7B23B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolarMass.m" - "TargetName" = "8:meanMolarMass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Hydrogen.m" - "TargetName" = "8:Hydrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0A2F83F932A74CAABB87DEEAC1B9536C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0ACC7910CC8A46E38521F8A78AF253D2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ThermoPhase.m" - "TargetName" = "8:ThermoPhase.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0B0170BC983349DD945697DB4576507A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\atol.m" - "TargetName" = "8:atol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0B09C9A0BF24498399548814F95D1EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setThermalConductivity.m" - "TargetName" = "8:setThermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0C8BFBA19BE949699F417570F8C69B5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SV.m" - "TargetName" = "8:setState_SV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0C9010E357C748BEB820CF0E830F09DF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setDensity.m" - "TargetName" = "8:setDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0D0FFCC38C4645D997283F1C5CED5E06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setMaxTimeStep.m" - "TargetName" = "8:setMaxTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0D47388E1B474AF08F6DA0FE72025C42" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\rankine.py" - "TargetName" = "8:rankine.py" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_0DDF1766C6A04C76AE6AF7FBC35E471B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\netProdRates.m" - "TargetName" = "8:netProdRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1049E82786DB4EB2BDEFF972136B0F19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satPressure.m" - "TargetName" = "8:satPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_105638BB017C47DA814720D4C027908E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\private\\surfmethods.m" - "TargetName" = "8:surfmethods.m" - "Tag" = "8:" - "Folder" = "8:_653D9B351BDC4DD6B1AC64034FB114A1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_11553AE6EA7A424D9621E724DFECC70F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarDensity.m" - "TargetName" = "8:molarDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_11AF9ACB25D6477DAE6906C2F6F688CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_11E4F38118B54DC680D5CB741B29BE8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\volume.m" - "TargetName" = "8:volume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_11EE4F61EA0740F1BE63419C7A48F185" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_HP.m" - "TargetName" = "8:setState_HP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_125E1AC217CC40BD8F4534E875CB9D0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_12BF22BA87424178B29DB07E669C3501" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1420A489C89E4859ACE78FD5DD27C00A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\Transport.m" - "TargetName" = "8:Transport.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_14580E5B948E47509A941AA338014D25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_15D3C38D37A94D67B313EC3B57DA2AC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\private\\flowdevicemethods.m" - "TargetName" = "8:flowdevicemethods.m" - "Tag" = "8:" - "Folder" = "8:_A0CD6A9C146B405D99355A87F6B7C47D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1603140AC6F7489CA14D3F41F58E9379" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\buildwin.m" - "TargetName" = "8:buildwin.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_16C0D130AB2748E6890B937071A27A0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\ydot.m" - "TargetName" = "8:ydot.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_16C40536EB0A45658DF4EC29D7CBBFF9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByID.m" - "TargetName" = "8:findByID.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_16DD6B492C274AC6BA6ED913C513A10B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\thermomethods.cpp" - "TargetName" = "8:thermomethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_17873678EB8F4A3AB2296EB4E4483220" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isInlet.m" - "TargetName" = "8:isInlet.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_18712B731C5F4CED9DD70EC680C9BE15" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1889FAD37671415E95CCA5B1BCAC9E32" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_r.m" - "TargetName" = "8:rop_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_188F8F797CE24E7C9FC6BD62D2B5D37F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic.py" - "TargetName" = "8:isentropic.py" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1A3D179D05C74A909F2B5B6E254459BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Inlet.m" - "TargetName" = "8:Inlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1A66CE0396934BBDBA728386725B2310" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\KOH.cti" - "TargetName" = "8:KOH.cti" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1A758A2D9CC24D13A732C1F61D692657" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1AA05F39A2464BDD922D26B58FE78BC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2.py" - "TargetName" = "8:flame2.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1B053CD5461740CB891855B80F250AED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl2.m" - "TargetName" = "8:prandtl2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\GRI30.m" - "TargetName" = "8:GRI30.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1D0B3F7CDFF14AD2A879AF1565D65509" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mole.m" - "TargetName" = "8:entropy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1D7106B99F8D451CA0562A6C57C2CC3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importInterface.m" - "TargetName" = "8:importInterface.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1DF1B93159BE475CA0438F31722F856B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1.py" - "TargetName" = "8:reactor1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_1F6340B91C654BDAB4FDCA7B545A9ADD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainType.m" - "TargetName" = "8:domainType.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_219FDC3ACB2A4C81935851A9CAA7E1EF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_R.m" - "TargetName" = "8:cp_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_21EB392DF37A421CABBDA197A9226C0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\diffflame.m" - "TargetName" = "8:diffflame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_232F4C7716264866BDEA07B97B583460" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_UV.m" - "TargetName" = "8:setState_UV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_23CE4DDD38054CA49B17BEEF4D728230" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\ready.m" - "TargetName" = "8:ready.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_254CA5A242F04444AB0F18F9ECDD091B" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\ptcombust.cti" - "TargetName" = "8:ptcombust.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_254F288B4BAC4BDFB4B21E76747FF336" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\attrib.m" - "TargetName" = "8:attrib.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2656FD40F3784C588D4004D409B0F80E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Outlet.m" - "TargetName" = "8:Outlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_26A7FE2928CE45CDB52C4B3326A33951" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setHeatTransferCoeff.m" - "TargetName" = "8:setHeatTransferCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_26E683AE357D4F70A3DC3C57295541D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conuv.m" - "TargetName" = "8:conuv.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_26F0BA63411646978592D51F26AEA36D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rxnEqs.m" - "TargetName" = "8:rxnEqs.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_27549892F823435798B476FC52F3F012" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarMasses.m" - "TargetName" = "8:molarMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_27DE8E5E29574E81B2D3ACC4E87B9637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\addChild.m" - "TargetName" = "8:addChild.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_290E7C7E5DF64841B1F913EEFE006069" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_29200BDEF8B44EC69E128788F4E09B16" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2A1589369A874D0EBFFE3F6D98426A49" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2A962975342142978B3DE11A20C9AA52" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\elements.xml" - "TargetName" = "8:elements.xml" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2AA7C0041FC74F718A561EF0696DCB45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2D09076E55604C73A82892D474E11779" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\restore.m" - "TargetName" = "8:restore.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2DEE49E2A7B4424E824CE5D0FB2846A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setKineticsMgr.m" - "TargetName" = "8:setKineticsMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_2EC7B0A350C34DF0B88C45A54FBFCC99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut7.m" - "TargetName" = "8:tut7.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_30A47D7D93D84874A41E1782FDBCEAAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\creationRates.m" - "TargetName" = "8:creationRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_31AD332AA56C4DF190FE6D941FAAFBFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\vaporFraction.m" - "TargetName" = "8:vaporFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_31E9E8DFB7144795A05AEEE66B279AB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\viscosity.m" - "TargetName" = "8:viscosity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_32A08E26D90A41869BE37A47450DADCC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\binDiffCoeffs.m" - "TargetName" = "8:binDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_32EAE5622F7540E4AC357D8D1CE10D8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\isIdealGas.m" - "TargetName" = "8:isIdealGas.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_33DBCAB550F1494AA40EFC4ABEFBADC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Psat.m" - "TargetName" = "8:setState_Psat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_34722C3A5A5F4217AD66444E408BD476" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Surface.m" - "TargetName" = "8:Surface.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_362E5E6B9766498182C5008280A41BD2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\Solution.m" - "TargetName" = "8:Solution.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_36C2D841FA684319BDF30F2B68589637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\FlowDevice.m" - "TargetName" = "8:FlowDevice.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_372176D2A2AF406DBD625F54972DD57C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nTotalSpecies.m" - "TargetName" = "8:nTotalSpecies.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3778A89EFC6C475E8AFE84940043B8DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setSpeciesMoles.m" - "TargetName" = "8:setSpeciesMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_37B9F5E138A645AAA6CE6C3A36E5361F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_37DD28283FAE43A78586C3D99D999022" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon_carbide.cti" - "TargetName" = "8:silicon_carbide.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_385C8980D3A44A2093CD638714277678" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_389AC795E7E842888394BE52A051FA12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\wall_hndl.m" - "TargetName" = "8:wall_hndl.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_39B2C611CD84448489F8AAFF5BD8AB28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nReactions.m" - "TargetName" = "8:nReactions.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3A49848C6AC948D8A7CB60B10FE0D83A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\disableEnergy.m" - "TargetName" = "8:disableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3AC42291E06E4768B0D87839DC9B9E77" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut2.m" - "TargetName" = "8:tut2.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3B00646190674532ABC512E89130A0D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut4.m" - "TargetName" = "8:tut4.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setBounds.m" - "TargetName" = "8:setBounds.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3CFA6387302F446AB7938595154FF208" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.xml" - "TargetName" = "8:gri30.xml" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3D56811387944E55AD39C984228C4EAB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\insert.m" - "TargetName" = "8:insert.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3DCD90FBD1DF4FA588238C70E0BADBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\function1.py" - "TargetName" = "8:function1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3E35E9D3EC6141BBA820F7D01B815B64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.py" - "TargetName" = "8:sofc.py" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3F96D57E8F9E461F8C90E0ACB1C937D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setMassFlowRate.m" - "TargetName" = "8:setMassFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\dustygas.py" - "TargetName" = "8:dustygas.py" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3FE261F2E167434D804087B6019EB309" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silane.cti" - "TargetName" = "8:silane.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_3FF4115C0C3E4C1686E79FBDDD2387B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\private\\reactornetmethods.m" - "TargetName" = "8:reactornetmethods.m" - "Tag" = "8:" - "Folder" = "8:_EF7FFF45863048E0BAC8024E5E97D77C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_406AF99237D3409BB85917A5A60F74ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_40E56E51E02745B4AEBA40660CEC686A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\Stack.m" - "TargetName" = "8:Stack.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4112A1F6C299475E8562339C3C38AA30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite3.m" - "TargetName" = "8:ignite3.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_411BB46D848848E492899FDC17C2D1CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\flowdevicemethods.cpp" - "TargetName" = "8:flowdevicemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_41BB99990E1246928D44C3F17942116E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setID.m" - "TargetName" = "8:setID.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_426E85F25D874E3F8F14D31E41AACF51" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_42A0DE2343CF4D5FB768588C28368E2F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByName.m" - "TargetName" = "8:findByName.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_436F32BB3B714A24A6B5FD1BC342A9D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_43C69E8F23BD4919BB63BD40909B3759" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut2.py" - "TargetName" = "8:tut2.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4401025D0D424A86B6C25A9B34792A95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Valve.m" - "TargetName" = "8:Valve.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_44512354EA8C4577A9085C81B028A63A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Tsat.m" - "TargetName" = "8:setState_Tsat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4479546E1AAE44FFAEFC0A710BA2E8FA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\resid.m" - "TargetName" = "8:resid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_44DD06CC20DF420A998E2F1D0B980A99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_f.m" - "TargetName" = "8:rop_f.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_451FADB3D70145F9BF8D235E092B637A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\transportmethods.cpp" - "TargetName" = "8:transportmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4555B1D563634B6AAE88E0051E34DCE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_46756B27C91E4C17A9F3C06BCC6D9011" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeeds.py" - "TargetName" = "8:soundSpeeds.py" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_47F3CF4BEA29482B95C1AFFF8F6C8145" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\private\\reactormethods.m" - "TargetName" = "8:reactormethods.m" - "Tag" = "8:" - "Folder" = "8:_D663477510C5436ABAF316F6D1E24D8B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_480527309EA14538802C74D4B190DBBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4A677774412940DEAF6AF1EDC27A3C58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\cleanup.m" - "TargetName" = "8:cleanup.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4B3F9D28B70C4E339662B2029BC4027B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4BB20697D6B74F4C8917A9D04AA4A240" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\mixDiffCoeffs.m" - "TargetName" = "8:mixDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4C18112956A24BF6A1BF387E433469DC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\write.m" - "TargetName" = "8:write.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4C432477911B4A8596B03914FF5916C4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\reactornet_hndl.m" - "TargetName" = "8:reactornet_hndl.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4D71E06EFE884CABA33151E1C5263C86" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_get.m" - "TargetName" = "8:thermo_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4DCD79F33434471C82E0AF768F55ABDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\importFromFile.m" - "TargetName" = "8:importFromFile.m" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_4EEA2D8311E542998617CB07AF269FD1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critTemperature.m" - "TargetName" = "8:critTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_51E2B9E78A964BD383DD8FD460AA4BEF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_52519B41A4064DEEB452445FD3550B6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame.m" - "TargetName" = "8:flame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_533E20A890AF4129A378968FF67AF0A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\reactionEqn.m" - "TargetName" = "8:reactionEqn.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_53EA1C41778744F09879AEAE0BAA0233" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satLiquid.m" - "TargetName" = "8:setState_satLiquid.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_53F7FA910CDC4CDEBD4257B5798B1B68" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFraction.m" - "TargetName" = "8:moleFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_54A0EE28997D4BAFA2E782BD6448A658" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importPhase.m" - "TargetName" = "8:importPhase.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_589104AC830A4577B736D1106E7955A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\eosType.m" - "TargetName" = "8:eosType.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_58EB415F05014A608F1D6B281082D92F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\grid.m" - "TargetName" = "8:grid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_59166DBD45564A4195E8A079862D7DF4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_59245571144542D38FEC0EC1F00503B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor2.m" - "TargetName" = "8:reactor2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_59AA52C5E25745589B34218C6B13216B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\XML_Node.m" - "TargetName" = "8:XML_Node.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\Kinetics.m" - "TargetName" = "8:Kinetics.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5A494D5F32BD411D861645EF9D5CDB73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5AE86752EC8A4B54BA6494A9F33FFC71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\ReactorNet.m" - "TargetName" = "8:ReactorNet.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5CF936560FF2465682DB2D4643C37441" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mole.m" - "TargetName" = "8:cv_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_5D50FACA9AE548919661678B7562D727" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\polynom.m" - "TargetName" = "8:polynom.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6006C6D0EC294FC39274776F6EA12BCD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nAtoms.m" - "TargetName" = "8:nAtoms.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_60D94AAFB6AA45F89A490D537326B0A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\refPressure.m" - "TargetName" = "8:refPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_61151103C608408DB35D78567822421D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setValue.m" - "TargetName" = "8:setValue.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_611E4F1900564CD88F755749C3B89219" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalConductivity.m" - "TargetName" = "8:thermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6221061E3BD647AF89BF4AD1785DC9EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satVapor.m" - "TargetName" = "8:setState_satVapor.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6349662626C947BC91332BE085230672" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domain_hndl.m" - "TargetName" = "8:domain_hndl.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_655DC211FDA743B8AAE2A254B8D24127" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\rxnpath1.py" - "TargetName" = "8:rxnpath1.py" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_675DF947A58B4BAB9DCCF837D18044E9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\setCoverages.m" - "TargetName" = "8:setCoverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_67B4668A9613497EAD89E4D9D5CDA7B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMdot.m" - "TargetName" = "8:setMdot.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6A93CB70A0AC47D28DF27073F49C6A76" - { - "SourcePath" = "8:..\\..\\..\\License.rtf" - "TargetName" = "8:License.rtf" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6A9E2F67751E4036B32A3F73F389F4B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6AAD2BE4779D4141B7F3175116575B70" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molecularWeights.m" - "TargetName" = "8:molecularWeights.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6AEC5D1E91784853A899657570B75158" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6B4133DAEDD847D9ADB436F3A9E515BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\private\\funcmethods.m" - "TargetName" = "8:funcmethods.m" - "Tag" = "8:" - "Folder" = "8:_208069FD964F475CAB363ACBD7A943C9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6BB63A2172964772A16E8C5DC8FCB473" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementName.m" - "TargetName" = "8:elementName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6D020030302F41549FD1141A91CA6BA2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_uv.m" - "TargetName" = "8:ignite_uv.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6D7DFA49CD7F422597521F6BC18DBEAA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6E40F711DE6E4C15977B10FEBD1145B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\addPhase.m" - "TargetName" = "8:addPhase.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6F1E0DC55B9845DAB4FE758F0B54914C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\adddir.m" - "TargetName" = "8:adddir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_6FF6BF505F0442DF81B97A7B0DACFF53" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\gridPoints.m" - "TargetName" = "8:gridPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7086E515306342B7A4A3EB7E47148FEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_713B640959AC45A78E7B9AE581F86E14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropies_R.m" - "TargetName" = "8:entropies_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesName.m" - "TargetName" = "8:speciesName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_73514E9BC5F44C509C562E01E8A958C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\nChildren.m" - "TargetName" = "8:nChildren.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_738E966D4DA74FCE8C40B58983F4DBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\Interface.m" - "TargetName" = "8:Interface.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_76175107E4CC4459ABF6F887224C85F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactormethods.cpp" - "TargetName" = "8:reactormethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_764D7127961644B186D3F90292091805" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setTimeStep.m" - "TargetName" = "8:setTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_76E915885B634DC6B57F89520C4788A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic.py" - "TargetName" = "8:adiabatic.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_77A9AA9EC6624BD592C9D29EC6F94989" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setParameters.m" - "TargetName" = "8:setParameters.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_77EAFF9FBF464DF08EFF37113E7DFC96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conhp.m" - "TargetName" = "8:conhp.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_78CF2DC24832474C9EC5304ABA596D6E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\char.m" - "TargetName" = "8:char.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\xmlmethods.cpp" - "TargetName" = "8:xmlmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_795887D785084824B7284296DC74B527" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_79674E6058F048B1B7D3CFFBCBC41561" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setValveCoeff.m" - "TargetName" = "8:setValveCoeff.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A639317418840CC95575AFDA89539F7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\times.m" - "TargetName" = "8:times.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A85089C17D248A7A8A12641C4F86125" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple.py" - "TargetName" = "8:simple.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7A9AF6339376421580BF6E8028871929" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7AE8B40AFA7241769B5BE31427ED582B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Contents.m" - "TargetName" = "8:Contents.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7B7753AD699149308A9D8CED65455D7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentIndex.m" - "TargetName" = "8:componentIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7BE4FD7D976D4900BD24BD9AB7501E99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7CC6FCB9F695423782EC53DADE5D585A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7D3DAEB7E7C647309752BD3A02876B72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\coverages.m" - "TargetName" = "8:coverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7DD2BAB195754859931B7B5AE308FAFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7E12BAE0A2924E5B83533AABB0BAC4DB" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\liquidvapor.cti" - "TargetName" = "8:liquidvapor.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7F82322C27494517A818285E796783B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_7FC1EE2D828D4E0C9A209479895AE0D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\private\\domain_methods.m" - "TargetName" = "8:domain_methods.m" - "Tag" = "8:" - "Folder" = "8:_D75DB80C0EC34E90A1753028F279B4CE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8106318CEF394350AED3B89BE5973CD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\SymmPlane.m" - "TargetName" = "8:SymmPlane.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_811F3F47C3D94B628C68557B0EB6B36B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor.py" - "TargetName" = "8:combustor.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_81812B7D110C414C960813023A134932" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\multiplier.m" - "TargetName" = "8:multiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_820901EF2B7645DA9A49A95F3E9DE675" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ctmethods.mexw32" - "TargetName" = "8:ctmethods.mexw32" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_82CA2F512C5343BDAB3341734D58FBFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8354660D2436459FBA8CB92DB7B6E337" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\concentrations.m" - "TargetName" = "8:concentrations.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8549950E280A4786AA6D4BDC9AF44DFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_net.m" - "TargetName" = "8:stoich_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_854DF9ED3FF741069B2D162A049D5E64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_87132C070E1540D8A4B033B0E98880B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\private\\mixturemethods.m" - "TargetName" = "8:mixturemethods.m" - "Tag" = "8:" - "Folder" = "8:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_87CEEEEB6DBF409FACD5794BCBD35B3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setupGrid.m" - "TargetName" = "8:setupGrid.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8801CCC3E95F4B098645DB0BF445E0F1" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_gas.cti" - "TargetName" = "8:nasa_gas.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_883D69622DD84D3A8A0D79D522CDA96B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mole.m" - "TargetName" = "8:gibbs_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_89B32FBB4FF441CFBCF0F830E202A7A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\surfmethods.cpp" - "TargetName" = "8:surfmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_89F1C726748E4E57ACFDFC467114BD09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mass.m" - "TargetName" = "8:entropy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8A5883FE50804063BBC8EE8DA9BE78DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\saveSoln.m" - "TargetName" = "8:saveSoln.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8B0D72F9F1AE422C81E4923414EB4C13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8B6199C9EA65475D9FC6C0CE792EA501" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon.cti" - "TargetName" = "8:silicon.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8C7D8CEB11024B759FC6F809723ADF7A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxisymmetricFlow.m" - "TargetName" = "8:AxisymmetricFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8C7FD926CFA648FB9CE0ED24957F591B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8C9645906D2B4435BF0DDC85F14F5CF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentName.m" - "TargetName" = "8:componentName.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8CB8ABF1BC42493F8C6451072245546C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8CCF6467ECF34EE59611670E3645C719" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\Domain1D.m" - "TargetName" = "8:Domain1D.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8D346FD7000B4F0AAF57691DB6BD9CDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFractions.m" - "TargetName" = "8:moleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8D3C554266D94991816CFFDB66F29AAE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite.m" - "TargetName" = "8:ignite.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_8D419E40A1674FC9A198BCD3410D643D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Reservoir.m" - "TargetName" = "8:Reservoir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9038E6B538DE4653AF9E77498DC5C9ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setMaxJacAge.m" - "TargetName" = "8:setMaxJacAge.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_907955714C5E41C3A0C82F4633DEBAC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\constants.m" - "TargetName" = "8:constants.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9084333D5B164E6FBDFA7096FCC75845" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\air.cti" - "TargetName" = "8:air.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_92A6D3125FA44E7B8795DE4EE0D738BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\save.m" - "TargetName" = "8:save.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_93900A98FABF44F5BE2F6F23E3EDA13A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_set.m" - "TargetName" = "8:kinetics_set.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_966477D37CF5451993EFF07CFB2EE25B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\isReversible.m" - "TargetName" = "8:isReversible.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_96CCEAC6BE924D6AB858949535654A72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctfunctions.cpp" - "TargetName" = "8:ctfunctions.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_979C4C61FFCC47BF9DD9142A747D70F3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\dist\\Cantera-1.7.0.win32-py2.5.exe" - "TargetName" = "8:Cantera-1.7.0.win32-py2.5.exe" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97AB3E7B353E4703B550348C63AEFC2D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97B185B78C154874B77D2049B3300B41" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Oxygen.m" - "TargetName" = "8:Oxygen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97E71EC4B7404230AA4186AE74AE88F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\tdata.dat" - "TargetName" = "8:tdata.dat" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_97E864DEE6A144A78B68D9A3BE9A0413" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\geterr.m" - "TargetName" = "8:geterr.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_997EF831DA8A4F9C99259C70FFD9E6C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\fixed_T_flame.py" - "TargetName" = "8:fixed_T_flame.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_99BD8AC4084D439CA80816A89387CF06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\phaseMoles.m" - "TargetName" = "8:phaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_99F4B3534D1A4C88BFE4FB5D2F216E23" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\plotSolution.m" - "TargetName" = "8:plotSolution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9B44971E00A5481BBA5AFD0A2166D16F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\ratecoeffs.py" - "TargetName" = "8:ratecoeffs.py" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9C0C04F635C34CAAB690617751FEF9A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9D045060258445C7988DB84395305E71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9D6C72386A0B4D3489A13633E229F95D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setArea.m" - "TargetName" = "8:setArea.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9E7A52340F9643268D1F2F8864729809" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\run_examples.m" - "TargetName" = "8:run_examples.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_9F0C5F7640E84C648A16A5663DC11CF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\write.cpp" - "TargetName" = "8:write.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A00E186E9C8E4BCD92EEF18A7870AB64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\wallmethods.cpp" - "TargetName" = "8:wallmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A0858150B00A472BA6EAE71AEBABDE58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setEnergy.m" - "TargetName" = "8:setEnergy.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A11208A3D61940228E848C672615C531" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut5.m" - "TargetName" = "8:tut5.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A1555851966F4CBDB4BE3837641C843A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2.py" - "TargetName" = "8:reactor2.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A1A7D85419B04E1892896FD2723CBE05" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\minTemp.m" - "TargetName" = "8:minTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\.cvsignore" - "TargetName" = "8:.cvsignore" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A2B810BE7C004166A16F019DFEBC09A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setKinetics.m" - "TargetName" = "8:setKinetics.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A2ED793453A54C92AD356FF69DBFAFF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2ctml.m" - "TargetName" = "8:ck2ctml.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A386FFD174A848B8A6383A013CA12077" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPhaseMoles.m" - "TargetName" = "8:setPhaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A3D6752BC31B442CA999E19F8AA5B2E5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2cti.m" - "TargetName" = "8:ck2cti.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A44EA116D8BD401B9F5CB43FD0A516EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1.py" - "TargetName" = "8:npflame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A4C093C7C647401E895109DA2F564C52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\child.m" - "TargetName" = "8:child.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A513873E6AEC441CB417942FBA4FE3A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmethods.cpp" - "TargetName" = "8:ctmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A571DB581B7B4085B6EE29881A27A2D8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\free_h2_air.py" - "TargetName" = "8:free_h2_air.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A6399AF77EE147919D73E720D70C79FF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\gasconstant.m" - "TargetName" = "8:gasconstant.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A694168142B64AB28E79B5E6E5357979" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mole.m" - "TargetName" = "8:cp_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A7C06AF14B3343C09C52E321CD45D0A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor1.m" - "TargetName" = "8:reactor1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A7F216F3691F4406AD4BF685C2009EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut3.py" - "TargetName" = "8:tut3.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_A98B9A585D4F41858169AD80172314EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\onedimmethods.cpp" - "TargetName" = "8:onedimmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AA7D54EA12024486AA1ACD45D323E74F" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.cti" - "TargetName" = "8:gri30.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AD850F3126CA46F9AEB85D4851B8149F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1.py" - "TargetName" = "8:mix1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AE01A18492C447D89BA1FE02869A18DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\equil_Kc.m" - "TargetName" = "8:equil_Kc.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AE235390D3E7456BBC816F28EF0EDE5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satTemperature.m" - "TargetName" = "8:satTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_AEF2EA186F5D4A0486766CEC08F7A180" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B0990FEE057B4CEB8E819D4F36FC023E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFlux.m" - "TargetName" = "8:massFlux.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B25E14F3380641BFA793B8AC5538DE69" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B2C4715A10D6448C8785A77EC8E23AFB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\plus.m" - "TargetName" = "8:plus.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalDiffCoeffs.m" - "TargetName" = "8:thermalDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B310C19F9C7F4CE6891A34139EB0D630" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut1.m" - "TargetName" = "8:tut1.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B3217183190C4EF5AA058E2F2DD49E5B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B34D82DAE3934AE8B7A86ADC89132428" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_set.m" - "TargetName" = "8:phase_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B37B9EC7F5E24483ABF63844CB762A5D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solve.m" - "TargetName" = "8:solve.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B383C9B0D56149A18C3933E52A659729" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\private\\trans_get.m" - "TargetName" = "8:trans_get.m" - "Tag" = "8:" - "Folder" = "8:_3FCDEC5F15154A079645D0817951A946" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut1.py" - "TargetName" = "8:tut1.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B4FB5F4843A24E41B7FADE7050CD9910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mass.m" - "TargetName" = "8:gibbs_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B700B3135C044AE1A0E11F64951C15B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\funcmethods.cpp" - "TargetName" = "8:funcmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B7ADCE96BBE64258BC9786A36007F18B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame.py" - "TargetName" = "8:adiabatic_flame.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B813F357BF6E4672A6C5C6420233E416" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\npflame_init.m" - "TargetName" = "8:npflame_init.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\private\\stack_methods.m" - "TargetName" = "8:stack_methods.m" - "Tag" = "8:" - "Folder" = "8:_57614C30E82048A8B1CDA4FC95D7707F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B8531EBC9C4146A18DBDEE03537C7895" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\water.cti" - "TargetName" = "8:water.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B90B2A45F38546C7B27A422537B6A0D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\thermo_hndl.m" - "TargetName" = "8:thermo_hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B980912F97654A708BB58521244643F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\maxTemp.m" - "TargetName" = "8:maxTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BA1757667DBF4ECE82D987268736B4D7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesNames.m" - "TargetName" = "8:speciesNames.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BA56A809F849463387B0C35C554D3FDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destructionRates.m" - "TargetName" = "8:destructionRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\multiDiffCoeffs.m" - "TargetName" = "8:multiDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BBA24149F4C04977B6A07924A49D7352" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destruction_rates.m" - "TargetName" = "8:destruction_rates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BC01A169AEE24DEDB532037D3A25C69E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\value.m" - "TargetName" = "8:value.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BD197F0310024D04B386D3ED22B580F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_get.m" - "TargetName" = "8:kinetics_get.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BD35BC44FB8F441B8E358D9D364CA587" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Water.m" - "TargetName" = "8:Water.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BDB11450018647D880BBB295E0BBF169" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut6.m" - "TargetName" = "8:tut6.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BF2D5197C57A4E03833752A2F4532AA8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mass.m" - "TargetName" = "8:cv_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_BFE5589963E74E2E9883E4AE5826D851" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solution.m" - "TargetName" = "8:solution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C03B6B3C637C45749F3ACF29F4FCEDF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Methane.m" - "TargetName" = "8:Methane.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C04EEE51536C4B64BB1758CBB7873B34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\private\\wallmethods.m" - "TargetName" = "8:wallmethods.m" - "Tag" = "8:" - "Folder" = "8:_978963BB80B74B24B2062E400EF7C9EC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C065BAA069514382B51E468B5A1978A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactornetmethods.cpp" - "TargetName" = "8:reactornetmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C094488877694ABCA56EEADA30F0C108" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C21C0E1658844265AABB721C6F59AB24" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1.py" - "TargetName" = "8:stflame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C3750F20EDFA48D78E02F27034D02209" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_set.m" - "TargetName" = "8:thermo_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C38225F7A000426CB7E955945C9466E0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\MassFlowController.m" - "TargetName" = "8:MassFlowController.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C54B99BA758A4FB3B844DE919B277DDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C649E5027371431DB5A5440812C57540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut4.py" - "TargetName" = "8:tut4.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C6B45FFC93CC4A3F864E363E7B18206D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\reactor_hndl.m" - "TargetName" = "8:reactor_hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C6F4B29F1A3B4B59A21287716572E0B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\massFlowRate.m" - "TargetName" = "8:massFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C71939C1027C4474B690DDDF4B0E8FB7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmatutils.h" - "TargetName" = "8:ctmatutils.h" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C7406B26D83F4CF48E24ED78245654ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C7D02D2B4C444A0C90BD6F8C6B232C91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\trans_hndl.m" - "TargetName" = "8:trans_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_C9AC5BC6DB9742B79D0BFF153CA39421" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SP.m" - "TargetName" = "8:setState_SP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CB2FCC33698242D0BFDAA47D5C4B0F63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb.py" - "TargetName" = "8:catcomb.py" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CB3A0AE176934F52AE20A613C2070534" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\area.m" - "TargetName" = "8:area.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CB46B6FEE22A4C689CB244EF428600BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut3.m" - "TargetName" = "8:tut3.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CC3803859B7F43B18EBE799C9C56933F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\periodic_cstr.m" - "TargetName" = "8:periodic_cstr.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CC71BE47DD434D7CA2713A9087A88C14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CCE9C76D878344F4BF560E0136E1BCF3" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\graphite.cti" - "TargetName" = "8:graphite.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CCF420B39E734D4384125DFE122E8F6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ph.m" - "TargetName" = "8:ph.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CD3DBDD9333C4033AE1B724282BBBFBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\kineticsmethods.cpp" - "TargetName" = "8:kineticsmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CD777AD5FF1D420DB9723E6EEC27D521" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\rankine.m" - "TargetName" = "8:rankine.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CDBE3C6855AE4501803B9EDA7BFEA691" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_net.m" - "TargetName" = "8:rop_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CEC3CD033FB94DFA8810C8142FED85B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CECCCB3C56494F61A90C39EE70F3DFC9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CF28519F63C34802AB33F9342405FD3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CF7BF165F4004E0DBBFF446A66A985DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\soundspeed.m" - "TargetName" = "8:soundspeed.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CFA9B0302ABC430A9DBA2BC2132B6B73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nPhases.m" - "TargetName" = "8:nPhases.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CFE3C277A2DF41018E63BE547F53452D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_CFE69F411CF84BE7ABCD4B895EF13C62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setThermalResistance.m" - "TargetName" = "8:setThermalResistance.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D128F9F54CA949C09B3FA61A199B060F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMassFractions.m" - "TargetName" = "8:setMassFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D151A04263364A9B8005377D79AEC239" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setFixedTempProfile.m" - "TargetName" = "8:setFixedTempProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D200B29D2F7E429AB771E6E92961E4C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_hp.m" - "TargetName" = "8:ignite_hp.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D2176F7DD848403DBC973A3676B579CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\advanceCoverages.m" - "TargetName" = "8:advanceCoverages.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D3284BDBAC7847909EAF138FCCDD512F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2.py" - "TargetName" = "8:mix2.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D3EDAA4023284820AFC142093DE1AAE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Nitrogen.m" - "TargetName" = "8:Nitrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D49889111E484F5090ED91A8EFF57DD0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\mass.m" - "TargetName" = "8:mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D523D656E59A4F36A5799882AD52FE63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D6635B71ADB94BA0AC25AF10E53EAA56" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\diamond.cti" - "TargetName" = "8:diamond.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D68C5368AA4548E2B31B6E44C6CF18CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D6F8538106594E289818596061BE2EA6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\kinetics_hndl.m" - "TargetName" = "8:kinetics_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_D75087C07C804BA994309398BC48603F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\addReactor.m" - "TargetName" = "8:addReactor.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DA790596462048CFAECE85420D41D74F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialVolume.m" - "TargetName" = "8:setInitialVolume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DA9C782985C041509BE9C4A7CB68A4A8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1.py" - "TargetName" = "8:flame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DB5649A025C244CCAD4CFC7607B09A28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_p.m" - "TargetName" = "8:stoich_p.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DB6C4271795545FA80082707D6121026" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpies_RT.m" - "TargetName" = "8:enthalpies_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DBC0EC09DC684F47B0DC34BF7958EA66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\isentropic.m" - "TargetName" = "8:isentropic.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DBECDA96409E46C5A16D99CCCFC2E0DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mole.m" - "TargetName" = "8:intEnergy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DC87F8DA14754002A1931C3C5DC89AD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DDCBFEDCC6144933941BE8B0EEBB9614" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DE2D53C1D99340B28D76F985871A1D04" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxiStagnFlow.m" - "TargetName" = "8:AxiStagnFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DE5BB9FAA411472B8901537165DFD827" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame1.m" - "TargetName" = "8:flame1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DEE4FC947E1543ECA3C5D0A1B5D82606" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isFlow.m" - "TargetName" = "8:isFlow.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DF6E93BE4C85423FBB21EA3F783E0724" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_DF7C83B26513481DA856DE8F3DAEF744" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E07080A8272044BDAD3242DFA62A3AD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E0D128147681418496692C77F4B1BECB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\Reactor.m" - "TargetName" = "8:Reactor.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E148F8C2F82A48D3A68E9E2C2CDAD846" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E1570450F26743789099E1D664EA2930" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.cti" - "TargetName" = "8:sofc.cti" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E18D9C95AB9747609535A99DD2D81155" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\catcomb.m" - "TargetName" = "8:catcomb.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\reactor_ode.m" - "TargetName" = "8:reactor_ode.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E1FAFCCB6A854D248F54F164889FAB3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setRefineCriteria.m" - "TargetName" = "8:setRefineCriteria.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E2073E8B81F74741B1D1EA05FBDD0F79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mole.m" - "TargetName" = "8:enthalpy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E2B4EF18B90E479E8D1311CBCE13431E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E31FFA0A95B14807BA4DA5176F48A0AE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mass.m" - "TargetName" = "8:cp_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E3B3CBF11A49408DA2A465DD552AE300" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_RT.m" - "TargetName" = "8:gibbs_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E3D9492FF8AB48679A4B287D1CE30AD6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity1.py" - "TargetName" = "8:sensitivity1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E3DDA7E632494939B2882BD6741CFD9D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\air.m" - "TargetName" = "8:air.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E3F58F53501F4CAA92527C64B08D9EBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\phasemethods.cpp" - "TargetName" = "8:phasemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E4A964C652EF407CA753B3CA1219015B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop.m" - "TargetName" = "8:rop.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E54668B3A3FB42CF85A71689A715F19B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\Func.m" - "TargetName" = "8:Func.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E646FA76573448CAA4749B18614EF782" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\enableEnergy.m" - "TargetName" = "8:enableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E716C1A77B764B6697138BC0DAE3E30C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E855F8CECB234B9291EC3600C31564E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E885D5C620AE4F7B824607C2AE4001AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties.py" - "TargetName" = "8:critProperties.py" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E8AFB1C8F7A342D5A03F305B3E0230C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setThermoMgr.m" - "TargetName" = "8:setThermoMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E8E0F24BF6014C208A93130FC1761DE6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\rtol.m" - "TargetName" = "8:rtol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E8E78948E8974A1DB4C3D6E63AF58602" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\rdivide.m" - "TargetName" = "8:rdivide.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_E8FE474C601D4386BBB0CA9599FF45BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setCoverageEqs.m" - "TargetName" = "8:setCoverageEqs.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EA8E4A02700F48B3A6136CD0055D6CFD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EB1CB1838E7449B4B3F05EF3BA026DC8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\plotting.py" - "TargetName" = "8:plotting.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EB89828AF09E40FFA26D353F1088C41B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma.py" - "TargetName" = "8:multiphase_plasma.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EC2FDC1A744E4A1AA4793CB10F18D176" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critPressure.m" - "TargetName" = "8:critPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EC476B2533A1437FA80321BB3090234E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isSurface.m" - "TargetName" = "8:isSurface.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EC9C8B8C68CC4B6FBF2202B0935A6396" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\IdealGasMix.m" - "TargetName" = "8:IdealGasMix.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_ED90DA83729C417BBEAA629FC6CE1095" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame2.m" - "TargetName" = "8:flame2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EDC27F3DB4874D0B80C408E935F92FD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setFlatProfile.m" - "TargetName" = "8:setFlatProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_EF07839F9BC941BA9127CF08C90303D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl1.m" - "TargetName" = "8:prandtl1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F15D7C13B4D94173A06FC05BFE08B4A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\Mixture.m" - "TargetName" = "8:Mixture.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F1C2DC4D3F4541478F3128EC742FC67D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critDensity.m" - "TargetName" = "8:critDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F325A9398503407384F1B46B1B65BE34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\z.m" - "TargetName" = "8:z.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\oneatm.m" - "TargetName" = "8:oneatm.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F40D33926EF24D48B642AFADF0905175" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\transport1.m" - "TargetName" = "8:transport1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F42D9F9BF66C46B3A5C9271FA5F371BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setExpansionRateCoeff.m" - "TargetName" = "8:setExpansionRateCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F4E64CA79CC5489294D5EB5751985163" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_r.m" - "TargetName" = "8:stoich_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F6A52BC1EC8D44989142E90DB7AAD1D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState.m" - "TargetName" = "8:setState.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F8688399972140A18AEE3821A3076DA9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\Wall.m" - "TargetName" = "8:Wall.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F8CAB1B1AAE143949246B033BF6572AA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolecularWeight.m" - "TargetName" = "8:meanMolecularWeight.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_F9E5B7A73F134E42B0EE70B7A917FFE1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\atomicMasses.m" - "TargetName" = "8:atomicMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FA43C5DB9C7546E7BB93ED688744AC52" - { - "SourcePath" = "8:..\\..\\..\\bin\\mixmaster.py" - "TargetName" = "8:mixmaster.py" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FBB083851DA2463CA4F1366F4904110A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nPoints.m" - "TargetName" = "8:nPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\writeStats.m" - "TargetName" = "8:writeStats.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\surfreactor.m" - "TargetName" = "8:surfreactor.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{A582A373-4685-4296-BEFE-614B80A702C3}:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_1DE66EEE44224B05A700D4E2E93A0FB7" - { - "Name" = "8:#1914" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:SystemFolder" - "Folders" - { - } - } - "{58C0ADA3-3CEA-43BD-A3B3-2EA121BC8217}:_78A5B9A56B3C482CBD8EAE207FE469D5" - { - "DefaultLocation" = "8:[PersonalFolder][ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_15DF1B45927A43108F6FD8BF7AB29E7A" - { - "Name" = "8:bin" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_554600D4C1ED49AB9B3F8AA14A61A393" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3A0F7AAB1D684CA7825C61ED7C1B1510" - { - "Name" = "8:tutorials" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9EE8F68C07DC4618A6A96B6CC2F6F4DD" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_0961E3795854450CB636397255DAA0B7" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD44CF949673422BAA32D14476046641" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_6458A3FFB8B14932A9224D66420736A4" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_07358AF408BA4439926F97BCFC4B2D4F" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3C5C7E20E5A44A629E7E36FC49B00666" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:MATLABCHECKBOX = 1" - "Transitive" = "11:FALSE" - "Property" = "8:_D5D9F0F73161444D859B49722CB836BB" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_5443CF3FEC1C4919A396E1213F7EE741" - { - "Name" = "8:toolbox" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6F2DCE9A4AA04C11955BD805A807D800" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_EB2EB0FBE19246E88A9FC85FC50A0261" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CD16B7D343A04A8A8A960BC7DF6EA2C3" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_121EEBBD5CFE412CACD796AD0EF6FACB" - { - "Name" = "8:@ReactorNet" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D25A4392A14645B6856AC0586A697940" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_EF7FFF45863048E0BAC8024E5E97D77C" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6A482636047A4CC39874C6CAC1A5EF83" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_1F3BBA95030B48589E34A16DD6877FCD" - { - "Name" = "8:@Wall" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FFC5ABCD0DFE4C64AA3A3119E28770C2" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_978963BB80B74B24B2062E400EF7C9EC" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_14F46BDFA3354434A8AFFDE6EB01D8B2" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_2069E985BE1F4CA4B39E0FF4C857A89D" - { - "Name" = "8:@Func" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BE26BC62A5E847FEB871B25C40EFE75C" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_208069FD964F475CAB363ACBD7A943C9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_707701DD38634631A3D20827FC5AFA22" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3D735E99070D4A9C816814209321A420" - { - "Name" = "8:@XML_Node" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1813C288DD40450E9298CE06190DC28A" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_57DD5A7770D14DCB9F09381FB3D030F7" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B241B483BFD649A7B4FA5ADD1E48CB30" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_5980613DA74C49ABB29CF7F4DE8AB8E7" - { - "Name" = "8:@ThermoPhase" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FC38217CD0FB41838729EA5473177414" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_447495742352464D81706C05F55520E9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_115FA39FE4BB4AF98CC450D2C74A832C" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_69556754D0874D01BDA2D9D85F5828AB" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_57FC5782E53444E0BDBD66445370F485" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_978580DBC0A748D790712BBA0B9F1CC8" - { - "Name" = "8:@Solution" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5F863499C9764D489DC234E3476D8220" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_9B31506F5B4F443F832FD3FAB7762E64" - { - "Name" = "8:@Mixture" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5B0B4B544BB7475F8D95A7351BBB5D9B" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D683DE5C1C054AF3B3A8A608F8739204" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_A330CA11C4BC435B95427DEA56FD503A" - { - "Name" = "8:@Kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_38EC5A2AC0344396A365C0523516B935" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_56A5C77F96C948C3BE617599F99A4FBA" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8F8646357F9D4DFAAEEFB9D3E80E74AE" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_A50BD9722A014DC391E5474262EFD7BC" - { - "Name" = "8:@Transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9609451B0BA44ECCBD59EAC256BB8FF6" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3FCDEC5F15154A079645D0817951A946" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0AE702ED16684776A58F4024099D5B16" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_B73A689A75AA49FE9E67D8BC3DE5A587" - { - "Name" = "8:@Reactor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6491ED6A6FD4419EA3AEF94895C5862D" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_D663477510C5436ABAF316F6D1E24D8B" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6B68DDB908574065B114EE838055D3A9" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_E30E67F5102146D39202747276B874EA" - { - "Name" = "8:1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BEB5629A74864C33BFBE85775BDF46E9" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_45FC9BD502EB46D8A920CD02D93C3848" - { - "Name" = "8:@Domain1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C30A197B3595470A87A00E99059B4FC7" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_D75DB80C0EC34E90A1753028F279B4CE" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_68A85998C36844B181D4B77A3DDF4225" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_BC662E8F11194A61A8CAA2E8666C6C9F" - { - "Name" = "8:@Stack" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8AF1FDE1D7B24A50BF4A2F6F6E8F680B" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_57614C30E82048A8B1CDA4FC95D7707F" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2E20167746334C26B769B9EBA08C08DD" - "Folders" - { - } - } - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_F7AA24452AD2470EBD83A85CC5DB9C43" - { - "Name" = "8:@Interface" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D74B7A317604458496D56195B17245D4" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_653D9B351BDC4DD6B1AC64034FB114A1" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_12B0318E56C647B4B7CC27D5344E95EB" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_F91A2400AD764EFB800A2F62CE34346C" - { - "Name" = "8:@FlowDevice" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD955CAF1DF74ADD917984BE9557C60F" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_A0CD6A9C146B405D99355A87F6B7C47D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1980519B8CAC42038A2C793D12949EB2" - "Folders" - { - } - } - } - } - } - } - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_D97B8D9B527F4A4DAEE139297609ECEC" - { - "Name" = "8:demos" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_70CA7BFF862F455CABE89474DDC8C8FC" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_1E1FE4A0C7774B9D9C081E2DB4033D90" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6D0630638BBD4E29B840B324B4436948" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_0890042B73B444F889F091DA6D68E910" - { - "Name" = "8:surface_chemistry" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7FDCBB9A8592442FB42D4EAC7D3E53D2" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_1616A26BEFEB4172AA40AC8ED7A8DC71" - { - "Name" = "8:liquid_vapor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C2F7106B0C584CBFB1CD9EAE69B563FA" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_16393A44970E4B7FBB528A637EFFCF96" - { - "Name" = "8:transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_562525EA42174B63807DD27EA3AAF879" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_3A41B4ED54254F0BBA9CB3DDBA13165A" - { - "Name" = "8:kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F799EEA7F7224C0A855895023F8B3072" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_782A3716E7024C07B7E1786A6FE5D350" - { - "Name" = "8:reactors" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A52D5AC4A0DA4CF483D3E640BC1A5DA0" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_92296F507AEB4419BC7BA3118B2C6409" - { - "Name" = "8:gasdynamics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D902ADED94764BD5A6F420077708B493" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_94D018F7686D4C8690B65C153B0E887F" - { - "Name" = "8:misc" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1D24D49031EB459B974D7D13D5644D3B" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_96B5AA517B204067BBA02150611C7875" - { - "Name" = "8:equilibrium" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8D8BB4AF59F64F88B994C19CC5EB233C" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_ACBA4EEB967B49369C5B078365A8DAA6" - { - "Name" = "8:flames" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0A2A0C303015456C841FAB6074A18B6F" - "Folders" - { - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - { - "Name" = "8:fuel_cells" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A46073D5774A4A7488FE7ED41BD60D59" - "Folders" - { - } - } - } - } - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_33E4779AB0C24751BA2645F9F51A39D3" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_45FAD6A5DFB047C2994B1D14F63B7703" - "Folders" - { - } - } - } - } - } - } - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_C18AD6B27F144D1EA3F43513268152DB" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_4BFAA71B92694D76A142F5C3ED00F20A" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_446477146DAB4A47A7AFC9902BF72A7E" - "Folders" - { - } - } - } - } - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_CB299B68C1E8487BA1E6C1DE65DE88C8" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_D46FB0DFF1A641E9BFF64D43063070E6" - { - "Name" = "8:#1910" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:CommonFilesFolder" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_DF884E96ECD3496ABA2742BCED88AAF5" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D0580EB36EB74E3A86790E702522DD35" - "Folders" - { - "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_C549C449993E4410B91BDC9AF59B84C5" - { - "Name" = "8:data" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_64E07C739FB4417C9F46987FB8046C1D" - "Folders" - { - } - } - } - } - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:Cantera" - "ProductCode" = "8:{6318C429-3F69-486A-9987-4D1EE1CA9328}" - "PackageCode" = "8:{0468CAED-E609-40B8-90FF-0A935A842648}" - "UpgradeCode" = "8:{86C96BD0-4EFB-4B99-AB55-8EFAF9B39170}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:TRUE" - "DetectNewerInstalledVersion" = "11:TRUE" - "ProductVersion" = "8:1.5.4" - "Manufacturer" = "8:cantera" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:http://www.cantera.org" - "Title" = "8:Cantera" - "Subject" = "8:" - "ARPCONTACT" = "8:cantera" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_A15FA43938034D689F29E65C6E8955DA" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_5BDB66062CEB415CB4959F307FD0D508" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_F857B3D1747440C9A23BF58734C6212F" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_C66D7959D9B84EB48504D18245ED499E" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_11B1D446B20C4613916F260F22FB3817" - { - "Name" = "8:MATLAB Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_6F6F7A9D0A9540169C31BFC498809033" - { - "Name" = "8:Cantera Folder" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_B3E018B74C474749A9DF614C49D87F87" - { - "Name" = "8:Cantera" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_CB299B68C1E8487BA1E6C1DE65DE88C8" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_C74524C318E34B64BC7F9CF0751E1641" - { - "Name" = "8:data" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "WorkingFolder" = "8:_DF884E96ECD3496ABA2742BCED88AAF5" - "Icon" = "8:" - "Feature" = "8:" - } - "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_D36F249B6C63494C8991429C3423DCBF" - { - "Name" = "8:Python Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - } - "UserInterface" - { - "{B654A020-6903-4E6A-A86C-75DC463DB54B}:_0ED84EDEFD4A4D698882BFE1F333E307" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_29BC7A20906B4BB591C50CBADAC4F8D7" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_08E53ECD734042D6A31CA37D0355381E" - { - "Sequence" = "3:200" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_35FDF6BB662A42B1A92CE5FD019F169A" - { - "Sequence" = "3:500" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_ABC3AFA2024F4562A020AE6343D51300" - { - "Sequence" = "3:300" - "DisplayName" = "8:License Agreement" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdLicenseDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "EulaText" - { - "Name" = "8:EulaText" - "DisplayName" = "8:#1008" - "Description" = "8:#1108" - "Type" = "3:6" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:2" - "Value" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "UsePlugInResources" = "11:TRUE" - } - "Sunken" - { - "Name" = "8:Sunken" - "DisplayName" = "8:#1007" - "Description" = "8:#1107" - "Type" = "3:5" - "ContextData" = "8:4;True=4;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:4" - "DefaultValue" = "3:4" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_FA729FED55DB423CB796E6380C3BBDF8" - { - "Sequence" = "3:400" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_519E224B02474BA2B8DC4CD4EAE2ACF7" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_2C3380451FE74068AF488EF4B6F73D94" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_6E2FF8B7EC244C94908291296E19523E" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_8F2D5F455ECB44B3859CD8D454A71C60" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_61D8CE962B314E818663A48C0415867E" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_24A74643C5964C87A797E1A643FF0D0B" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{B654A020-6903-4E6A-A86C-75DC463DB54B}:_75F14606DECA4813841F459E15C791FC" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_C1A3D09CAB0840249EFCEC6855096B18" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_CA30C9165C5C49C68248727A03AA7A6A" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_C87AD3FA8C0A43F7A829C50FC5F1F1CD" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_8D56619ED59C40F9B3C655569D7BE0E9" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_E8083BADF0444BC18403655940B69C5C" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_7D3124C107AA4B8AB2828C5E89BCA5AA" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - } - "MergeModule" - { - "{35A69C6E-5BA4-440D-803D-762B59A45393}:_BA98368496BD4C0995AED1119FD4CCFB" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:vc_user_crt71_rtl_x86_---.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{35A69C6E-5BA4-440D-803D-762B59A45393}:_F0E87324D4DE4284B13211E9F8A0D954" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:vc_user_stl71_rtl_x86_---.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "ProjectOutput" - { - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_08587955063141779B605860D7FF04D3" - { - "SourcePath" = "8:..\\..\\..\\build\\bin\\i686-pc-win32\\ck2cti.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_1DE66EEE44224B05A700D4E2E93A0FB7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - "VJSharpPlugin" - { - } - } -} diff --git a/win32/vc7/Sundials/CVODES/CVODES.vcproj b/win32/vc7/Sundials/CVODES/CVODES.vcproj deleted file mode 100644 index b38f23dd4..000000000 --- a/win32/vc7/Sundials/CVODES/CVODES.vcproj +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/Sundials/CVODES_DENSE/CVODES_DENSE.vcproj b/win32/vc7/Sundials/CVODES_DENSE/CVODES_DENSE.vcproj deleted file mode 100644 index 8d062044f..000000000 --- a/win32/vc7/Sundials/CVODES_DENSE/CVODES_DENSE.vcproj +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/Sundials/IDA/IDA.vcproj b/win32/vc7/Sundials/IDA/IDA.vcproj deleted file mode 100644 index 14159829f..000000000 --- a/win32/vc7/Sundials/IDA/IDA.vcproj +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/Sundials/KINSOL/KINSOL.vcproj b/win32/vc7/Sundials/KINSOL/KINSOL.vcproj deleted file mode 100644 index c8fe2ef95..000000000 --- a/win32/vc7/Sundials/KINSOL/KINSOL.vcproj +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/Sundials/NVEC_SER/NVEC_SER.vcproj b/win32/vc7/Sundials/NVEC_SER/NVEC_SER.vcproj deleted file mode 100644 index 5a9cf47d0..000000000 --- a/win32/vc7/Sundials/NVEC_SER/NVEC_SER.vcproj +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj b/win32/vc7/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj deleted file mode 100644 index d903e9a9f..000000000 --- a/win32/vc7/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/Sundials/sundials/sundials_config.h b/win32/vc7/Sundials/sundials/sundials_config.h deleted file mode 100644 index 4dd4c912a..000000000 --- a/win32/vc7/Sundials/sundials/sundials_config.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - * ----------------------------------------------------------------- - * $Revision: 1.1 $ - * $Date: 2006/11/13 19:46:18 $ - * ----------------------------------------------------------------- - * Programmer(s): Aaron Collier @ LLNL - * ----------------------------------------------------------------- - * Copyright (c) 2005, The Regents of the University of California. - * Produced at the Lawrence Livermore National Laboratory. - * All rights reserved. - * For details, see sundials/shared/LICENSE. - *------------------------------------------------------------------ - * SUNDIALS configuration header file - *------------------------------------------------------------------ - */ - -/* Define SUNDIALS version number */ -#define SUNDIALS_PACKAGE_VERSION "2.2.0" - -/* FCMIX: Define Fortran name-mangling macro */ -#define F77_FUNC(name,NAME) name ## _ -#define F77_FUNC_(name,NAME) name ## _ - -/* FCMIX: Define case of function names */ - - -/* FCMIX: Define number of underscores to append to function names */ - - -/* Define precision of SUNDIALS data type 'realtype' */ -#define SUNDIALS_DOUBLE_PRECISION 1 - -/* Use generic math functions */ -#define SUNDIALS_USE_GENERIC_MATH 1 - -/* FNVECTOR: Allow user to specify different MPI communicator */ -#define SUNDIALS_MPI_COMM_F2C 0 diff --git a/win32/vc7/base/base.vcproj b/win32/vc7/base/base.vcproj deleted file mode 100755 index 8333c6437..000000000 --- a/win32/vc7/base/base.vcproj +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/cantera.sln b/win32/vc7/cantera.sln deleted file mode 100755 index 06220e67b..000000000 --- a/win32/vc7/cantera.sln +++ /dev/null @@ -1,207 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oneD", "oneD\oneD.vcproj", "{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cantera", "cantera\cantera.vcproj", "{E719804C-1351-4C44-BD5E-611AF464CD20}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "transport", "transport\transport.vcproj", "{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zeroD", "zeroD\zeroD.vcproj", "{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "converters", "converters\converters.vcproj", "{5D8C2EA9-A90C-48A7-A541-180332B941DD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tpx", "tpx\tpx.vcproj", "{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_blas", "f2c_blas\f2c_blas.vcproj", "{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_lapack", "f2c_lapack\f2c_lapack.vcproj", "{2701B198-FEC1-45A8-BC20-AACA46B64986}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctcxx", "cxxutils\cxxutils.vcproj", "{E342202C-F877-43D0-8E66-D2A7794AC900}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clib", "clib\clib.vcproj", "{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - ProjectSection(ProjectDependencies) = postProject - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} = {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} - {E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} = {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {12D156A1-1BF6-42DF-8572-416AC1E9FC03} = {12D156A1-1BF6-42DF-8572-416AC1E9FC03} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - ProjectSection(ProjectDependencies) = postProject - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_libs", "f2c_libs\f2c_libs.vcproj", "{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_math", "f2c_math\f2c_math.vcproj", "{127547E3-416C-4C12-82E9-52F912142FB5}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctpython", "ctpython\ctpython.vcproj", "{ED939A01-860D-4E92-A892-E195CB311AB7}" - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCantera", "SetupCantera\SetupCantera.vdproj", "{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctmatlab", "ctmatlab\ctmatlab.vcproj", "{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}" - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "config_h", "config_h\config_h.vcproj", "{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NVEC_SER", "Sundials\NVEC_SER\NVEC_SER.vcproj", "{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SUNDIALS_SHARED", "Sundials\SUNDIALS_SHARED\SUNDIALS_SHARED.vcproj", "{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CVODES", "Sundials\CVODES\CVODES.vcproj", "{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCanteraLite", "SetupCantera\SetupCanteraLite.vdproj", "{6F530573-5D0C-4FEC-AB81-70FE059BDE5D}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "base", "base\base.vcproj", "{4D98F045-AD21-4286-9BCD-5A071E732BFA}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.ActiveCfg = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.Build.0 = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.ActiveCfg = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.Build.0 = Release|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.ActiveCfg = Debug|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.Build.0 = Debug|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Release.ActiveCfg = Release|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Release.Build.0 = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.ActiveCfg = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.Build.0 = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.ActiveCfg = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.Build.0 = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.ActiveCfg = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.Build.0 = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.ActiveCfg = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.Build.0 = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.ActiveCfg = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.Build.0 = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.ActiveCfg = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.Build.0 = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.ActiveCfg = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.Build.0 = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.ActiveCfg = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.Build.0 = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.ActiveCfg = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.Build.0 = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.ActiveCfg = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.Build.0 = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.ActiveCfg = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.Build.0 = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.ActiveCfg = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.Build.0 = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.ActiveCfg = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.Build.0 = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release.ActiveCfg = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release.Build.0 = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.ActiveCfg = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.Build.0 = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.ActiveCfg = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.Build.0 = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.ActiveCfg = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.Build.0 = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.ActiveCfg = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.Build.0 = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.ActiveCfg = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.Build.0 = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.ActiveCfg = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.Build.0 = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug.ActiveCfg = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug.Build.0 = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release.ActiveCfg = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release.Build.0 = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.ActiveCfg = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.Build.0 = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release.ActiveCfg = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release.Build.0 = Release|Win32 - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Debug.ActiveCfg = Debug - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release.ActiveCfg = Release - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.ActiveCfg = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.Build.0 = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.ActiveCfg = Release|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.Build.0 = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.ActiveCfg = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.Build.0 = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.ActiveCfg = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.Build.0 = Release|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Debug.ActiveCfg = Debug|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Debug.Build.0 = Debug|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Release.ActiveCfg = Release|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Release.Build.0 = Release|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Debug.ActiveCfg = Debug|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Debug.Build.0 = Debug|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Release.ActiveCfg = Release|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Release.Build.0 = Release|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Debug.ActiveCfg = Debug|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Debug.Build.0 = Debug|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Release.ActiveCfg = Release|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Release.Build.0 = Release|Win32 - {6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Debug.ActiveCfg = Debug - {6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Debug.Build.0 = Debug - {6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Release.ActiveCfg = Release - {4D98F045-AD21-4286-9BCD-5A071E732BFA}.Debug.ActiveCfg = Debug|Win32 - {4D98F045-AD21-4286-9BCD-5A071E732BFA}.Debug.Build.0 = Debug|Win32 - {4D98F045-AD21-4286-9BCD-5A071E732BFA}.Release.ActiveCfg = Release|Win32 - {4D98F045-AD21-4286-9BCD-5A071E732BFA}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/win32/vc7/cantera/cantera.vcproj b/win32/vc7/cantera/cantera.vcproj deleted file mode 100755 index ee3f2e975..000000000 --- a/win32/vc7/cantera/cantera.vcproj +++ /dev/null @@ -1,530 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/cantera_examples.sln b/win32/vc7/cantera_examples.sln deleted file mode 100755 index ee7d1dc3f..000000000 --- a/win32/vc7/cantera_examples.sln +++ /dev/null @@ -1,69 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cti2ctml", "cti2ctml\cti2ctml.vcproj", "{4F5B4442-98E5-4B11-9239-CDF5148C1902}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "diamondSurf", "diamondSurf\diamondSurf.vcproj", "{D600ECB2-D432-4E4D-9D70-BF94AEF31485}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "silane_equil", "silane_equil\silane_equil.vcproj", "{290DC5E5-0016-4CCF-84D5-6B997DD3664A}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "surfkin", "surfkin\surfkin.vcproj", "{7A87791C-32F6-48B5-ADBB-A8E77DE13E16}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cxx_examples", "cxx_examples\cxx_examples.vcproj", "{0E635864-A310-4468-9D97-9CE67B078C97}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "csvdiff", "csvdiff\csvdiff.vcproj", "{AF888A7A-C325-4312-9BE0-CDA1B1E540E9}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.ActiveCfg = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.Build.0 = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.ActiveCfg = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.Build.0 = Release|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug.ActiveCfg = Debug|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug.Build.0 = Debug|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release.ActiveCfg = Release|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release.Build.0 = Release|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Debug.ActiveCfg = Debug|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Debug.Build.0 = Debug|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Release.ActiveCfg = Release|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Release.Build.0 = Release|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Debug.ActiveCfg = Debug|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Debug.Build.0 = Debug|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Release.ActiveCfg = Release|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Release.Build.0 = Release|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug.ActiveCfg = Debug|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug.Build.0 = Debug|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release.ActiveCfg = Release|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release.Build.0 = Release|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Debug.ActiveCfg = Debug|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Debug.Build.0 = Debug|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Release.ActiveCfg = Release|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Release.Build.0 = Release|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug.ActiveCfg = Debug|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug.Build.0 = Debug|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release.ActiveCfg = Release|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/win32/vc7/cantera_no_sundials.sln b/win32/vc7/cantera_no_sundials.sln deleted file mode 100755 index 650a0169a..000000000 --- a/win32/vc7/cantera_no_sundials.sln +++ /dev/null @@ -1,180 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cvode", "cvode\cvode.vcproj", "{9BEC323F-1492-4AF0-8081-F8E3761D9FFC}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oneD", "oneD\oneD.vcproj", "{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cantera", "cantera\cantera.vcproj", "{E719804C-1351-4C44-BD5E-611AF464CD20}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "transport", "transport\transport.vcproj", "{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zeroD", "zeroD\zeroD.vcproj", "{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "converters", "converters\converters.vcproj", "{5D8C2EA9-A90C-48A7-A541-180332B941DD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tpx", "tpx\tpx.vcproj", "{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_blas", "f2c_blas\f2c_blas.vcproj", "{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_lapack", "f2c_lapack\f2c_lapack.vcproj", "{2701B198-FEC1-45A8-BC20-AACA46B64986}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctcxx", "cxxutils\cxxutils.vcproj", "{E342202C-F877-43D0-8E66-D2A7794AC900}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clib", "clib\clib.vcproj", "{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - ProjectSection(ProjectDependencies) = postProject - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC} = {9BEC323F-1492-4AF0-8081-F8E3761D9FFC} - {E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - ProjectSection(ProjectDependencies) = postProject - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_libs", "f2c_libs\f2c_libs.vcproj", "{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_math", "f2c_math\f2c_math.vcproj", "{127547E3-416C-4C12-82E9-52F912142FB5}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctpython", "ctpython\ctpython.vcproj", "{ED939A01-860D-4E92-A892-E195CB311AB7}" - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCantera", "SetupCantera\SetupCantera.vdproj", "{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctmatlab", "ctmatlab\ctmatlab.vcproj", "{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}" - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "config_h", "config_h\config_h.vcproj", "{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCanteraLite", "SetupCantera\SetupCanteraLite.vdproj", "{F7607AF2-705A-4046-B7EC-067DEE3BB79F}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Debug.ActiveCfg = Debug|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Debug.Build.0 = Debug|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Release.ActiveCfg = Release|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Release.Build.0 = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.ActiveCfg = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.Build.0 = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.ActiveCfg = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.Build.0 = Release|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.ActiveCfg = Debug|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.Build.0 = Debug|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Release.ActiveCfg = Release|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Release.Build.0 = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.ActiveCfg = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.Build.0 = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.ActiveCfg = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.Build.0 = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.ActiveCfg = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.Build.0 = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.ActiveCfg = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.Build.0 = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.ActiveCfg = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.Build.0 = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.ActiveCfg = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.Build.0 = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.ActiveCfg = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.Build.0 = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.ActiveCfg = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.Build.0 = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.ActiveCfg = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.Build.0 = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.ActiveCfg = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.Build.0 = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.ActiveCfg = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.Build.0 = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.ActiveCfg = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.Build.0 = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.ActiveCfg = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.Build.0 = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release.ActiveCfg = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release.Build.0 = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.ActiveCfg = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.Build.0 = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.ActiveCfg = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.Build.0 = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.ActiveCfg = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.Build.0 = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.ActiveCfg = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.Build.0 = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.ActiveCfg = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.Build.0 = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.ActiveCfg = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.Build.0 = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug.ActiveCfg = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug.Build.0 = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release.ActiveCfg = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release.Build.0 = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.ActiveCfg = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.Build.0 = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release.ActiveCfg = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release.Build.0 = Release|Win32 - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Debug.ActiveCfg = Debug - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release.ActiveCfg = Release - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.ActiveCfg = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.Build.0 = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.ActiveCfg = Release|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.Build.0 = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.ActiveCfg = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.Build.0 = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.ActiveCfg = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.Build.0 = Release|Win32 - {F7607AF2-705A-4046-B7EC-067DEE3BB79F}.Debug.ActiveCfg = Debug - {F7607AF2-705A-4046-B7EC-067DEE3BB79F}.Release.ActiveCfg = Release - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/win32/vc7/ck2cti/ck2cti.vcproj b/win32/vc7/ck2cti/ck2cti.vcproj deleted file mode 100755 index c9907c056..000000000 --- a/win32/vc7/ck2cti/ck2cti.vcproj +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/clib/clib.vcproj b/win32/vc7/clib/clib.vcproj deleted file mode 100755 index b127f2765..000000000 --- a/win32/vc7/clib/clib.vcproj +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/config_h/config_h.vcproj b/win32/vc7/config_h/config_h.vcproj deleted file mode 100755 index 09921d2e7..000000000 --- a/win32/vc7/config_h/config_h.vcproj +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/config_h/docopy.cmd b/win32/vc7/config_h/docopy.cmd deleted file mode 100644 index a6ee5f7c2..000000000 --- a/win32/vc7/config_h/docopy.cmd +++ /dev/null @@ -1,6 +0,0 @@ -cd ..\..\.. -copy winconfig.h config.h -cd ext\f2c_libs -copy arith.hwin32 arith.h -cd ..\..\win32\vc7\config_h -echo 'ok' > status diff --git a/win32/vc7/configure.vc++ b/win32/vc7/configure.vc++ deleted file mode 100755 index 5f445b0f9..000000000 --- a/win32/vc7/configure.vc++ +++ /dev/null @@ -1,86 +0,0 @@ -#!/bin/sh -# -# -# Sample bourne shell wrapper around Cantera's configure -# shell command, used for building and installing Cantera -# using MS VC++, without fortran support. -# Copy this file to the top directory of the Cantera distribution. -# Edit a few directory locations indicated below. Then execute it -# after autoconf is run. -# -# Tell Cantera you will be using a VC++ compiler to compile and link -# all of the programs -# -USE_VISUAL_STUDIO="y" -export USEVISUALSTUDIO -# -# Specify the root directory: Will need adjusting -# -CANTERA_ROOT="/cygwin/c/vc_env/cantera-1.7_develop" -export CANTERA_ROOT -# -# Specify the install directory: Will need adjusting -# -CANTERA_INSTALL_DIR="C:/vc_env/Cantera" -export CANTERA_INSTALL_DIR -# -# -# PYTHON_CMD: This is the default location that Python24 -# puts its files. -# -PYTHON_CMD="c:/python24/python.exe" -export PYTHON_CMD -# -# WIN_PYTHON_CMD: This is the default location that Python24 -# puts its files. -# -WIN_PYTHON_CMD='C:/Python24/python' -export WIN_PYTHON_CMD -# -# These 2 next lines tells Cantera and Python where to install -# the Cantera python modules. -# -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR -# -PYTHON_SITE_PACKAGE_TOPDIR="C:\Python24" -export PYTHON_SITE_PACKAGE_TOPDIR -# -# No matlab toolbox in this script. However, if you have matlab -# on your machine, you can change the "n" to a "y". -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX -# -# Indicate that you will be using the clib.dll -# -USE_DLL="y" -export USE_DLL -# -# -CXXFLAGS="-g" -export CXXFLAGS -# -# -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS -# -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - - -# -# Call the configure command at the top of the Cantera distribution -# in a cygwin shell -# -./preconfig -# diff --git a/win32/vc7/converters/converters.vcproj b/win32/vc7/converters/converters.vcproj deleted file mode 100755 index 5a4364a44..000000000 --- a/win32/vc7/converters/converters.vcproj +++ /dev/null @@ -1,189 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/csvdiff/csvdiff.vcproj b/win32/vc7/csvdiff/csvdiff.vcproj deleted file mode 100755 index 3af50507e..000000000 --- a/win32/vc7/csvdiff/csvdiff.vcproj +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/cti2ctml/cti2ctml.vcproj b/win32/vc7/cti2ctml/cti2ctml.vcproj deleted file mode 100755 index 0cdc981f1..000000000 --- a/win32/vc7/cti2ctml/cti2ctml.vcproj +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/ctmatlab/ctmatlab.vcproj b/win32/vc7/ctmatlab/ctmatlab.vcproj deleted file mode 100755 index a60108911..000000000 --- a/win32/vc7/ctmatlab/ctmatlab.vcproj +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/ctmatlab/runmlab.cmd b/win32/vc7/ctmatlab/runmlab.cmd deleted file mode 100755 index 0355181b1..000000000 --- a/win32/vc7/ctmatlab/runmlab.cmd +++ /dev/null @@ -1,5 +0,0 @@ -cd ..\..\..\Cantera\matlab\cantera -echo 'delete me!' > ctmethods.mexw32 -echo 'delete me!' > ctmethods.dll -%MATLAB_CMD% -nodisplay -nosplash -nojvm -r buildwin -echo 'ok' > status diff --git a/win32/vc7/ctpython/ctpython.vcproj b/win32/vc7/ctpython/ctpython.vcproj deleted file mode 100755 index 63927b32e..000000000 --- a/win32/vc7/ctpython/ctpython.vcproj +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/ctpython/runpython.cmd b/win32/vc7/ctpython/runpython.cmd deleted file mode 100755 index edb0b07b1..000000000 --- a/win32/vc7/ctpython/runpython.cmd +++ /dev/null @@ -1,5 +0,0 @@ -cd ..\..\..\Cantera\python -%PYTHON_CMD% winsetup.py build -%PYTHON_CMD% winsetup.py bdist_wininst -%PYTHON_CMD% winsetup.py install -echo 'ok' > status diff --git a/win32/vc7/cvode/cvode.vcproj b/win32/vc7/cvode/cvode.vcproj deleted file mode 100755 index 543629dcc..000000000 --- a/win32/vc7/cvode/cvode.vcproj +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/cxx_examples/cxx_examples.vcproj b/win32/vc7/cxx_examples/cxx_examples.vcproj deleted file mode 100755 index 31e872dde..000000000 --- a/win32/vc7/cxx_examples/cxx_examples.vcproj +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/cxxutils/cxxutils.vcproj b/win32/vc7/cxxutils/cxxutils.vcproj deleted file mode 100755 index 73dc431d0..000000000 --- a/win32/vc7/cxxutils/cxxutils.vcproj +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/demos/CanteraDemos.sln b/win32/vc7/demos/CanteraDemos.sln deleted file mode 100755 index fc9c792d7..000000000 --- a/win32/vc7/demos/CanteraDemos.sln +++ /dev/null @@ -1,61 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "demo", "demo.vcproj", "{F0FBA57E-6E65-46E6-9DDD-2625E7082189}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "combustor", "combustor.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "flamespeed", "flamespeed.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kinetics1", "kinetics1.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NASA_coeffs", "NASA_coeffs.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Rankine", "Rankine.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Debug.ActiveCfg = Debug|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Debug.Build.0 = Debug|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Release.ActiveCfg = Release|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/win32/vc7/demos/NASA_coeffs.vcproj b/win32/vc7/demos/NASA_coeffs.vcproj deleted file mode 100644 index d2f08d3cd..000000000 --- a/win32/vc7/demos/NASA_coeffs.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/demos/Rankine.vcproj b/win32/vc7/demos/Rankine.vcproj deleted file mode 100755 index 72d74ffc6..000000000 --- a/win32/vc7/demos/Rankine.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/demos/ReadMe.txt b/win32/vc7/demos/ReadMe.txt deleted file mode 100755 index 91c0ae7cf..000000000 --- a/win32/vc7/demos/ReadMe.txt +++ /dev/null @@ -1,12 +0,0 @@ -The project setttings assume Cantera is installed in C:\CANTERA. -If this is not the case, edit the project properties before building. - -The project settings that differ from the defaults are: - -1) use of multithreaded DLL system libraries -2) specification of the Cantera libraries as additional - input for the linker -3) specification of the Cantera include and lib directories. - -These changes to the default project settings need to be made whenever -you create a new project that you want to link to Cantera. \ No newline at end of file diff --git a/win32/vc7/demos/combustor.vcproj b/win32/vc7/demos/combustor.vcproj deleted file mode 100644 index 19dbf9fa2..000000000 --- a/win32/vc7/demos/combustor.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/demos/demo.vcproj b/win32/vc7/demos/demo.vcproj deleted file mode 100755 index 1a94d3b8e..000000000 --- a/win32/vc7/demos/demo.vcproj +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/demos/flamespeed.vcproj b/win32/vc7/demos/flamespeed.vcproj deleted file mode 100644 index e6a7b1e7c..000000000 --- a/win32/vc7/demos/flamespeed.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/demos/kinetics1.vcproj b/win32/vc7/demos/kinetics1.vcproj deleted file mode 100644 index f55ac2420..000000000 --- a/win32/vc7/demos/kinetics1.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/diamondSurf/diamondSurf.vcproj b/win32/vc7/diamondSurf/diamondSurf.vcproj deleted file mode 100755 index 523ad49c1..000000000 --- a/win32/vc7/diamondSurf/diamondSurf.vcproj +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/f2c_arithchk/f2c_arithchk.vcproj b/win32/vc7/f2c_arithchk/f2c_arithchk.vcproj deleted file mode 100755 index bac420c77..000000000 --- a/win32/vc7/f2c_arithchk/f2c_arithchk.vcproj +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/f2c_blas/f2c_blas.vcproj b/win32/vc7/f2c_blas/f2c_blas.vcproj deleted file mode 100755 index f1c4206ef..000000000 --- a/win32/vc7/f2c_blas/f2c_blas.vcproj +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/f2c_lapack/f2c_lapack.vcproj b/win32/vc7/f2c_lapack/f2c_lapack.vcproj deleted file mode 100755 index a64d8a712..000000000 --- a/win32/vc7/f2c_lapack/f2c_lapack.vcproj +++ /dev/null @@ -1,317 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/f2c_libs/f2c_libs.vcproj b/win32/vc7/f2c_libs/f2c_libs.vcproj deleted file mode 100755 index 906b1d0db..000000000 --- a/win32/vc7/f2c_libs/f2c_libs.vcproj +++ /dev/null @@ -1,618 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/f2c_math/f2c_math.vcproj b/win32/vc7/f2c_math/f2c_math.vcproj deleted file mode 100755 index 912f80e60..000000000 --- a/win32/vc7/f2c_math/f2c_math.vcproj +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/f2c_recipes/f2c_recipes.vcproj b/win32/vc7/f2c_recipes/f2c_recipes.vcproj deleted file mode 100755 index 7d06008a0..000000000 --- a/win32/vc7/f2c_recipes/f2c_recipes.vcproj +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/oneD/oneD.vcproj b/win32/vc7/oneD/oneD.vcproj deleted file mode 100755 index 96e52d493..000000000 --- a/win32/vc7/oneD/oneD.vcproj +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/prepreconfig.vc++ b/win32/vc7/prepreconfig.vc++ deleted file mode 100755 index 8cdc8f15e..000000000 --- a/win32/vc7/prepreconfig.vc++ +++ /dev/null @@ -1,92 +0,0 @@ -#!/bin/sh -# -# -# Sample bourne shell wrapper around Cantera's configure -# shell command, used for building and installing Cantera -# using MS VC++, without fortran support. -# Copy this file to the top directory of the Cantera distribution. -# Edit a few directory locations indicated below. Then execute it -# after autoconf is run. -# -# Tell Cantera you will be using a VC++ compiler to compile and link -# all of the programs -# -USE_VISUAL_STUDIO="y" -export USE_VISUAL_STUDIO -# -# Specify the root directory: Will need adjusting -# -CANTERA_ROOT="/cygwin/c/vc_env/cantera-1.7_develop" -export CANTERA_ROOT -# -# Specify the install directory: Will need adjusting -# -CANTERA_INSTALL_DIR="C:/vc_env/Cantera" -export CANTERA_INSTALL_DIR -# -# -# PYTHON_CMD: This is the default location that Python24 -# puts its files. -# -PYTHON_CMD="c:/python24/python.exe" -export PYTHON_CMD -# -# WIN_PYTHON_CMD: This is the default location that Python24 -# puts its files. -# -WIN_PYTHON_CMD='C:/Python24/python' -export WIN_PYTHON_CMD -# -# These 2 next lines tells Cantera and Python where to install -# the Cantera python modules. -# -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR -# -PYTHON_SITE_PACKAGE_TOPDIR="C:\Python24" -export PYTHON_SITE_PACKAGE_TOPDIR -# -# No matlab toolbox in this script. However, if you have matlab -# on your machine, you can change the "n" to a "y". -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX -# -# Indicate that you will be using the clib.dll -# -USE_DLL="y" -export USE_DLL -# -# HKM -> note config chokes on cl.exe . It can't interpret the -# needed command line arguments. -#CXX="cl.exe" -#export CXX -#CC="cl.exe" -#export CC -# -CXXFLAGS="-g" -export CXXFLAGS -# -# -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS -# -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - - -# -# Call the configure command at the top of the Cantera distribution -# in a cygwin shell -# -./preconfig -# diff --git a/win32/vc7/pycantera/pycantera.vcproj b/win32/vc7/pycantera/pycantera.vcproj deleted file mode 100755 index da7753671..000000000 --- a/win32/vc7/pycantera/pycantera.vcproj +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/silane_equil/silane_equil.vcproj b/win32/vc7/silane_equil/silane_equil.vcproj deleted file mode 100755 index 3dd13631e..000000000 --- a/win32/vc7/silane_equil/silane_equil.vcproj +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/surfkin/surfkin.vcproj b/win32/vc7/surfkin/surfkin.vcproj deleted file mode 100755 index ed24c55c2..000000000 --- a/win32/vc7/surfkin/surfkin.vcproj +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/tpx/tpx.vcproj b/win32/vc7/tpx/tpx.vcproj deleted file mode 100755 index be24a2f2f..000000000 --- a/win32/vc7/tpx/tpx.vcproj +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/transport/transport.vcproj b/win32/vc7/transport/transport.vcproj deleted file mode 100755 index 225a99dc0..000000000 --- a/win32/vc7/transport/transport.vcproj +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc7/zeroD/zeroD.vcproj b/win32/vc7/zeroD/zeroD.vcproj deleted file mode 100755 index 2f7f998b6..000000000 --- a/win32/vc7/zeroD/zeroD.vcproj +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/SetupAlt/SetupAlt.vdproj b/win32/vc8/SetupAlt/SetupAlt.vdproj deleted file mode 100755 index 83c2f5de0..000000000 --- a/win32/vc8/SetupAlt/SetupAlt.vdproj +++ /dev/null @@ -1,4075 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:800" -"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupAlt" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_016BF741228240B090BCD4D7E43E0617" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0267994AD98C45358411C6CFC9E15DB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0394BA5AEDF94DE4BB1F707051A0BF40" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_040F8411747946F9A7AB19EA47F9ADB5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A5B62C8EC224229B5E66084FF4CF60D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D2749B358EA48FA907E73CCC5E76685" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11DDA274C3B6474B95D7EDFE7300F95A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12403720D98540F2812E4E7439B6751F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_140781B9B3484CA68405E6D3BA915BD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1787727F92AB49FB98426AC1A89212FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1924D5D1E15E4E2AB4CBA083E92D06DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_194D7781A1504802950A57617F3803D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B1C547CA8A541F4929C67E9F5E5045C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1BAA7E404EAE447EAEFBCF8518EA2786" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1C90DF5CA01C4496A9D4B6102CE332DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F4612D0C9664A2BBDF46FDE0E47197A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_251556D9F2A347BEAD4511F19E415E60" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_28FCD7BF1D31414D90897D02FBD77FCC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BF387E7EFBD4956831F6221A82D225C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3237A2C7A1E34294A6036D4038565E7B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_337207A3891F4F9C85930F92585617A2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34195374892A4F0F9F0D9FCA8850806D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_35CF7BBB7404402AB9B3FB182CE0DED2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36127E024A664A5CB103245E82802CF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3BC45D1B3ACE4C9A80DDEE61EE23A78C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C91E0477BC14872ACD37CD343D3D4CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CD6FF055B5B4AB690661A939C85883B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3DEA4FE3159344CF8369AA1F21EE9964" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FB9909E94B644B5B82DD9038328CEB4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_421582413A6242EF991CE5B829FE38EE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42578737079441D1A5F907D95B107FC8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4539B98F10D740A38BE7DEE1BCE77591" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_46DBD1FBB3524C31B381BFB4AA533323" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_473E1D967D32402882A992A6D0FBF1B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B8B9F3A5884477CB80CD8D14D4DDC08" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DD98C4B7BB8429F93A59FA18D9649B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5055125EFD7E429AA9D4DBB1BC7406EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53AD0637C9B740479861456773F7B9A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_541D0767D9F1499BB09273009849F0BE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_58A932EB4E1E449680B4DD3A6A8CFC83" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_598FA02302B04EE38F62677041423E94" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A300E7D02704491A0A32DAE2BB9D534" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_62F18C5430DC48738D7BE1E1A0D3ECC5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_637E39E029B14732B842FCA2AB74D296" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_656908993C744FE1A978650E4C953A14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_69CA98595D8B48D983452C774C376100" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B5FBE05852D4011A456EF23AFF27E17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E60AA15A9A042A585E81C0836E653BD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E8F0F781C1B46E4911062BBCD802DCE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72F1BA82A24541C790221A73AC104B8F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_730A4008B8B74BA39E907A7FB65EC116" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76F02165C4E9437E86A2A9253187092A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77B41774ABD849DBA3C771A2CD7A8DFF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7989815E2DE749508AB5BF0F05E7D6A0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7C243BF834B7407997BD25D7071D6469" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D468710990042AB91B96EEFD4AC35B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_829AF8F376754502896F9336B571338D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_83E76E90C6D94DD081FE6157A7DDA3B9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_84F622105F2C4FE29031016239A839E3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85D87FAD439648EFB0811C40A87151E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8697BE6257C9401685E4E0220AB23AA7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_892B6E46A9484E109A9681CEFE133F04" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8AC7EF4B012D433F87F23EB58F51A175" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CD98F7218C14B5FBFE98C94975F0A57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8ED1D5F624D54FCD85135E204A4FB022" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8FE240FF73304491A921BD7476D52240" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8FF5AF961F594D02A20A21768CEBBD19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_94F6A284E5DC47A8A2759FEEB905AA10" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99981AFE42C54B08A60126BEE0B4CEDD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F3307068F6B4E989FFBCFEB1865ACC7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F8316476F1347FB89A80840B73023B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9FB7136577424D92A91097DB19EDC141" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A4563B38F1DB4E8AB153D7309733EBC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A82C1EAC0A7D469EBB4A8FB7C9D1CB2A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A84087F9AEE24B71AA7C713BB3680F98" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A9F85CD88E684D8DA467D131D514B6FA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA61CA354DFD4B1CA176A96F0DEAFA78" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB57FE9F67374DC9B8085E21DFC4F6A0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AC7BE2665DD344C280A0C73101AE104F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AF6865D3523F47E5B357929751063D07" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B0E3E21A78834BEDAFFA77B307466CCB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B1B835A98AD54E84A33081A1E3BC5629" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B31831F006164D769BE97C7DEEAB13A8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B576D9C732F74817BE3E8BE63D0D1826" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B646D778CCC84815B42BCD49474D204F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6B96C4C9A984EB79D57FC86740D93BD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7EBF05DCDFA49009396C5D2DC7D6EB5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8BC4E0F3EFF4666B73864B0C6785229" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B92640FD361B4715B1A20BE2E6BD4CEB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9FAF2F52483495C85D75C9A156A5149" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA01BB3FF79044AE802F6D32D28F76A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD83EDABC8954180931F6FA2B3FE5DE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDF2CCD7BC7447599BC8441395A01883" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C32709EAD92448CB832ED2B6E93C8E96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7F7589E71D4447FBCCEE9F915EEC196" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C85EFC4356FC4AD18B631A5DAF62FD91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C87BA17FF7AE423A8C9A694A7847BCF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEA66E470BAB4769A256643DF951B3AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32309A01A4F4FE4A567902BB84ECC25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D405A42D256D4E4BA48B749EC9A24281" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D638545EDD7F4A4BA10B0960EA9D1B98" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6D4A31528DA4A83A2463BC320F475CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA0EDC01F30D493180CC25074A5B0CE0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF2C58804FF54B6195C64483DDF16189" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0BE4100AAA5408E9B9466D67FC12149" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E5DC35C0A47C48A68752CD419EE8D3F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E7B921419638499F80914800219B6A1A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA152480181B4B378B932DECA910D099" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F0626DDDCDC94B1C8DDB243DA9166FC0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1BC96EAAB77422ABDA4BB104FB3FA79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F40F91F0489B41D1993B2429913EBBE2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4579D016FAC464A8766E9100B2DF5A4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F50717FAE1ED466FBFC63ADE58B63676" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6FBF6C4032B490591A451CA055FA8A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F7EFADDC2F3E4905B017A9C69C101599" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8D54123B22A42E6A47F98B3C4A64F93" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FB37BF47C46D47BFAFD235BBBC247B30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FCAEF00809704BADA732CDDF912311A4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FE990C14225D491B89A084FF69F02F1A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\SetupAlt.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Net.Framework.2.0" - { - "Name" = "8:Microsoft .NET Framework 2.0" - "ProductCode" = "8:Microsoft.Net.Framework.2.0" - } - } - } - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\SetupAlt.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "File" - { - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_016BF741228240B090BCD4D7E43E0617" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Edge.h" - "TargetName" = "8:Edge.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0267994AD98C45358411C6CFC9E15DB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\mdp_allo.h" - "TargetName" = "8:mdp_allo.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0394BA5AEDF94DE4BB1F707051A0BF40" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_SpeciesProperties.h" - "TargetName" = "8:vcs_SpeciesProperties.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_040F8411747946F9A7AB19EA47F9ADB5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\radiation.h" - "TargetName" = "8:radiation.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A5B62C8EC224229B5E66084FF4CF60D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\Integrator.h" - "TargetName" = "8:Integrator.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0D2749B358EA48FA907E73CCC5E76685" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_species_thermo.h" - "TargetName" = "8:vcs_species_thermo.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11DDA274C3B6474B95D7EDFE7300F95A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\surface.h" - "TargetName" = "8:surface.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_12403720D98540F2812E4E7439B6751F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ThirdBodyMgr.h" - "TargetName" = "8:ThirdBodyMgr.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_140781B9B3484CA68405E6D3BA915BD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ct_defs.h" - "TargetName" = "8:ct_defs.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1787727F92AB49FB98426AC1A89212FE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\importKinetics.h" - "TargetName" = "8:importKinetics.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1924D5D1E15E4E2AB4CBA083E92D06DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\IDA_Solver.h" - "TargetName" = "8:IDA_Solver.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B1C547CA8A541F4929C67E9F5E5045C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Metal.h" - "TargetName" = "8:Metal.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1BAA7E404EAE447EAEFBCF8518EA2786" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\clockWC.h" - "TargetName" = "8:clockWC.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1C90DF5CA01C4496A9D4B6102CE332DF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\spectra.h" - "TargetName" = "8:spectra.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_251556D9F2A347BEAD4511F19E415E60" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Enhanced3BConc.h" - "TargetName" = "8:Enhanced3BConc.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_28FCD7BF1D31414D90897D02FBD77FCC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\reactionpaths.h" - "TargetName" = "8:reactionpaths.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BF387E7EFBD4956831F6221A82D225C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\integrators.h" - "TargetName" = "8:integrators.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_34195374892A4F0F9F0D9FCA8850806D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ctexceptions.h" - "TargetName" = "8:ctexceptions.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_36127E024A664A5CB103245E82802CF4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\LogPrintCtrl.h" - "TargetName" = "8:LogPrintCtrl.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3BC45D1B3ACE4C9A80DDEE61EE23A78C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_prob.h" - "TargetName" = "8:vcs_prob.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C91E0477BC14872ACD37CD343D3D4CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\XML_Writer.h" - "TargetName" = "8:XML_Writer.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CD6FF055B5B4AB690661A939C85883B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ResidEval.h" - "TargetName" = "8:ResidEval.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3DEA4FE3159344CF8369AA1F21EE9964" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\Array.h" - "TargetName" = "8:Array.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FB9909E94B644B5B82DD9038328CEB4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\RxnRates.h" - "TargetName" = "8:RxnRates.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_421582413A6242EF991CE5B829FE38EE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\SquareMatrix.h" - "TargetName" = "8:SquareMatrix.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42578737079441D1A5F907D95B107FC8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\onedim.h" - "TargetName" = "8:onedim.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4539B98F10D740A38BE7DEE1BCE77591" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DASPK.h" - "TargetName" = "8:DASPK.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_46DBD1FBB3524C31B381BFB4AA533323" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\units.h" - "TargetName" = "8:units.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_473E1D967D32402882A992A6D0FBF1B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\zerodim.h" - "TargetName" = "8:zerodim.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B8B9F3A5884477CB80CD8D14D4DDC08" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\CVode.h" - "TargetName" = "8:CVode.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DD98C4B7BB8429F93A59FA18D9649B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\Func1.h" - "TargetName" = "8:Func1.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5055125EFD7E429AA9D4DBB1BC7406EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\vec_functions.h" - "TargetName" = "8:vec_functions.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53AD0637C9B740479861456773F7B9A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\transport.h" - "TargetName" = "8:transport.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_541D0767D9F1499BB09273009849F0BE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ArrayViewer.h" - "TargetName" = "8:ArrayViewer.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_58A932EB4E1E449680B4DD3A6A8CFC83" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\electrolyteThermo.h" - "TargetName" = "8:electrolyteThermo.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_598FA02302B04EE38F62677041423E94" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DenseMatrix.h" - "TargetName" = "8:DenseMatrix.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A300E7D02704491A0A32DAE2BB9D534" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\ChemEquil.h" - "TargetName" = "8:ChemEquil.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_62F18C5430DC48738D7BE1E1A0D3ECC5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\FalloffMgr.h" - "TargetName" = "8:FalloffMgr.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_656908993C744FE1A978650E4C953A14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\KineticsFactory.h" - "TargetName" = "8:KineticsFactory.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_69CA98595D8B48D983452C774C376100" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\MultiPhase.h" - "TargetName" = "8:MultiPhase.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6B5FBE05852D4011A456EF23AFF27E17" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\logger.h" - "TargetName" = "8:logger.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6E60AA15A9A042A585E81C0836E653BD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\IncompressibleSolid.h" - "TargetName" = "8:IncompressibleSolid.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6E8F0F781C1B46E4911062BBCD802DCE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\BandMatrix.h" - "TargetName" = "8:BandMatrix.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72F1BA82A24541C790221A73AC104B8F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Cantera.h" - "TargetName" = "8:Cantera.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_730A4008B8B74BA39E907A7FB65EC116" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\xml.h" - "TargetName" = "8:xml.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_76F02165C4E9437E86A2A9253187092A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ctlapack.h" - "TargetName" = "8:ctlapack.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77B41774ABD849DBA3C771A2CD7A8DFF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\StoichManager.h" - "TargetName" = "8:StoichManager.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7989815E2DE749508AB5BF0F05E7D6A0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\InterfaceKinetics.h" - "TargetName" = "8:InterfaceKinetics.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7C243BF834B7407997BD25D7071D6469" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\solveSP.h" - "TargetName" = "8:solveSP.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7D468710990042AB91B96EEFD4AC35B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\FactoryBase.h" - "TargetName" = "8:FactoryBase.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_829AF8F376754502896F9336B571338D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\PrintCtrl.h" - "TargetName" = "8:PrintCtrl.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_84F622105F2C4FE29031016239A839E3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ImplicitChem.h" - "TargetName" = "8:ImplicitChem.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85D87FAD439648EFB0811C40A87151E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\PropertyCalculator.h" - "TargetName" = "8:PropertyCalculator.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8697BE6257C9401685E4E0220AB23AA7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\AqueousKinetics.h" - "TargetName" = "8:AqueousKinetics.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_892B6E46A9484E109A9681CEFE133F04" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\global.h" - "TargetName" = "8:global.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8AC7EF4B012D433F87F23EB58F51A175" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Group.h" - "TargetName" = "8:Group.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CD98F7218C14B5FBFE98C94975F0A57" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Kinetics.h" - "TargetName" = "8:Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8ED1D5F624D54FCD85135E204A4FB022" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\MultiPhaseEquil.h" - "TargetName" = "8:MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8FE240FF73304491A921BD7476D52240" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_MultiPhaseEquil.h" - "TargetName" = "8:vcs_MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8FF5AF961F594D02A20A21768CEBBD19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\stringUtils.h" - "TargetName" = "8:stringUtils.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_94F6A284E5DC47A8A2759FEEB905AA10" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\utilities.h" - "TargetName" = "8:utilities.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99981AFE42C54B08A60126BEE0B4CEDD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_Exception.h" - "TargetName" = "8:vcs_Exception.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9F3307068F6B4E989FFBCFEB1865ACC7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\polyfit.h" - "TargetName" = "8:polyfit.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9F8316476F1347FB89A80840B73023B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\equilibrium.h" - "TargetName" = "8:equilibrium.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A4563B38F1DB4E8AB153D7309733EBC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_IntStarStar.h" - "TargetName" = "8:vcs_IntStarStar.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A84087F9AEE24B71AA7C713BB3680F98" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\thermo.h" - "TargetName" = "8:thermo.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA61CA354DFD4B1CA176A96F0DEAFA78" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\equil.h" - "TargetName" = "8:equil.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB57FE9F67374DC9B8085E21DFC4F6A0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\IdealGasMix.h" - "TargetName" = "8:IdealGasMix.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AC7BE2665DD344C280A0C73101AE104F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\lapack.h" - "TargetName" = "8:lapack.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AF6865D3523F47E5B357929751063D07" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DAE_Solver.h" - "TargetName" = "8:DAE_Solver.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B0E3E21A78834BEDAFFA77B307466CCB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\reaction_defs.h" - "TargetName" = "8:reaction_defs.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B1B835A98AD54E84A33081A1E3BC5629" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ImplicitSurfChem.h" - "TargetName" = "8:ImplicitSurfChem.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B31831F006164D769BE97C7DEEAB13A8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\numerics.h" - "TargetName" = "8:numerics.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B576D9C732F74817BE3E8BE63D0D1826" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GRI_30_Kinetics.h" - "TargetName" = "8:GRI_30_Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B6B96C4C9A984EB79D57FC86740D93BD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\funcs.h" - "TargetName" = "8:funcs.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B8BC4E0F3EFF4666B73864B0C6785229" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\EdgeKinetics.h" - "TargetName" = "8:EdgeKinetics.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9FAF2F52483495C85D75C9A156A5149" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\GRI30.h" - "TargetName" = "8:GRI30.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA01BB3FF79044AE802F6D32D28F76A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\PureFluid.h" - "TargetName" = "8:PureFluid.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD83EDABC8954180931F6FA2B3FE5DE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_internal.h" - "TargetName" = "8:vcs_internal.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C32709EAD92448CB832ED2B6E93C8E96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GasKinetics.h" - "TargetName" = "8:GasKinetics.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7F7589E71D4447FBCCEE9F915EEC196" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_defs.h" - "TargetName" = "8:vcs_defs.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C85EFC4356FC4AD18B631A5DAF62FD91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_VolPhase.h" - "TargetName" = "8:vcs_VolPhase.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C87BA17FF7AE423A8C9A694A7847BCF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ResidJacEval.h" - "TargetName" = "8:ResidJacEval.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CEA66E470BAB4769A256643DF951B3AE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\FuncEval.h" - "TargetName" = "8:FuncEval.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D32309A01A4F4FE4A567902BB84ECC25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionData.h" - "TargetName" = "8:ReactionData.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D405A42D256D4E4BA48B749EC9A24281" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\kinetics.h" - "TargetName" = "8:kinetics.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D638545EDD7F4A4BA10B0960EA9D1B98" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_DoubleStarStar.h" - "TargetName" = "8:vcs_DoubleStarStar.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6D4A31528DA4A83A2463BC320F475CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Interface.h" - "TargetName" = "8:Interface.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA0EDC01F30D493180CC25074A5B0CE0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\NonlinearSolver.h" - "TargetName" = "8:NonlinearSolver.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E5DC35C0A47C48A68752CD419EE8D3F4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\importPhase.h" - "TargetName" = "8:importPhase.h" - "Tag" = "8:" - "Folder" = "8:_825BCAE17B6C4859A73B7198EBFFE4B2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E7B921419638499F80914800219B6A1A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\sort.h" - "TargetName" = "8:sort.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA152480181B4B378B932DECA910D099" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionPath.h" - "TargetName" = "8:ReactionPath.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F0626DDDCDC94B1C8DDB243DA9166FC0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_solve.h" - "TargetName" = "8:vcs_solve.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F1BC96EAAB77422ABDA4BB104FB3FA79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GasKineticsWriter.h" - "TargetName" = "8:GasKineticsWriter.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F40F91F0489B41D1993B2429913EBBE2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionStoichMgr.h" - "TargetName" = "8:ReactionStoichMgr.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4579D016FAC464A8766E9100B2DF5A4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\CVodesIntegrator.h" - "TargetName" = "8:CVodesIntegrator.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F6FBF6C4032B490591A451CA055FA8A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\config.h" - "TargetName" = "8:config.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F7EFADDC2F3E4905B017A9C69C101599" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\RateCoeffMgr.h" - "TargetName" = "8:RateCoeffMgr.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8D54123B22A42E6A47F98B3C4A64F93" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\FalloffFactory.h" - "TargetName" = "8:FalloffFactory.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FB37BF47C46D47BFAFD235BBBC247B30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ctml.h" - "TargetName" = "8:ctml.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FCAEF00809704BADA732CDDF912311A4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\plots.h" - "TargetName" = "8:plots.h" - "Tag" = "8:" - "Folder" = "8:_A6D1799594894F03B18AF44217F5789D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{1525181F-901A-416C-8A58-119130FE478E}:_C19A58F49A224E35B2D9A09DC4EC08F6" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_C97A129DE50A4C509EDC1157AB4C91C9" - { - "Name" = "8:#1912" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramFilesFolder" - "Folders" - { - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_CA8CDDA678F94A9FBFAEEF98178789A1" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_9CE57C28681A4039B64B3AAB01534192" - { - "Name" = "8:SetupAlt" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4AA6A6076F044E14B5DDE926AAD4FE38" - "Folders" - { - } - } - } - } - "{3C67513D-01DD-4637-8A68-80971EB9504F}:_FBE54AACF2D849E5B7A4223AB235F3B1" - { - "DefaultLocation" = "8:[PersonalFolder]\\[ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0CBE9DB69C4A40428706448E0EDC17FA" - { - "Name" = "8:lib" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_60BFE26BC65547E59C757C5E570FF715" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_17001380788D4C2AA551CEBB81CB24B7" - { - "Name" = "8:data" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0B26A921231D46068250544643EEC713" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_9B0F6DABB24645F38E25F510FF4FCE5D" - { - "Name" = "8:bin" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_96A47FEC922B4A5AB0A43DB7928D70CF" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D48C8CBE2D14493694B427FD1A27F4B7" - { - "Name" = "8:demos" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F3CDE77429D3438F9E0110A1976A58A0" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0111CFC9569E410CB5C813D6B6944128" - { - "Name" = "8:C++" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_670FDCCDF9324DEB8B7E79ED868B2E02" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_47991053FF17492C8F9B9E976D5FF05A" - { - "Name" = "8:Matlab" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_84BC578D7CCE4EDA997A6657139F9D75" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_BF7F22D1B4AB4BDDA39688E09BDC44C9" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BB072C9CD8E44C93B2670DF43CAD0E27" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E9EA29DF1C7D45A580E585122E5611B7" - { - "Name" = "8:include" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_E4C4FFEC58424A9FA24A2294BCA40D09" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_825BCAE17B6C4859A73B7198EBFFE4B2" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DCD02927904C464E88CDA8ACCAFE06EB" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_A6D1799594894F03B18AF44217F5789D" - { - "Name" = "8:kernel" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B4ECF58A844049C1B9E35308DF603BF7" - "Folders" - { - } - } - } - } - } - } - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:SetupAlt" - "ProductCode" = "8:{E579A2C5-A686-4734-94BB-EEE9FCF991C6}" - "PackageCode" = "8:{6BB5E8D0-C22C-43B8-B811-ADFE98648D0B}" - "UpgradeCode" = "8:{9C28FC04-8308-4E8F-B316-98095BC8A185}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:TRUE" - "DetectNewerInstalledVersion" = "11:TRUE" - "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:1.0.0" - "Manufacturer" = "8:Sandia National Laboratories" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:" - "Title" = "8:SetupAlt" - "Subject" = "8:" - "ARPCONTACT" = "8:Sandia National Laboratories" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - "TargetPlatform" = "3:0" - "PreBuildEvent" = "8:" - "PostBuildEvent" = "8:" - "RunPostBuildEvent" = "3:0" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_7AE32C464359410EA564477F7C24DC04" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_5050B7B8462C4FA49C1909AEF71DB388" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_0C08D1B047B24232BEA5E3605B4FED7B" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_89846A51F6D6460AA212F19FABAC7C7F" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_366A56D1993049B882C67EA44B80EB9A" - { - "Name" = "8:lib" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Folder" = "8:_9CE57C28681A4039B64B3AAB01534192" - "WorkingFolder" = "8:_CA8CDDA678F94A9FBFAEEF98178789A1" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_C86F8362D91748168EEE1A2D417889E8" - { - "Name" = "8:SetupAlt" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_FBE54AACF2D849E5B7A4223AB235F3B1" - "Folder" = "8:_C19A58F49A224E35B2D9A09DC4EC08F6" - "WorkingFolder" = "8:_FBE54AACF2D849E5B7A4223AB235F3B1" - "Icon" = "8:" - "Feature" = "8:" - } - } - "UserInterface" - { - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_0C576B51D495429595A8E521CD0CC215" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_16711D8474C345879BF3453779759BFC" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_E4C765BFAB774C8C824DB9B4FAFB3CEF" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_1A7B0400C39348D69195612CA5C97EB2" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_6C2FF72A12C34EB1B129856C885ECF0C" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_25B7D3D9561D4B80ACAB75330224BC06" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7ABBCFA4E6614A6E93025885BA7D8119" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "InstallAllUsersVisible" - { - "Name" = "8:InstallAllUsersVisible" - "DisplayName" = "8:#1059" - "Description" = "8:#1159" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:0" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8F16FB3A63524141951911138DEA3D44" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_C17559B63C7F4D879F53549F572EACBF" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_353BD35FB68A4E7C842F50BB7742AD74" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_9651CDBECD3D456CA18DDE9694330883" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_A421C691D6A14B359501BAA865391B7A" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_CACDCC34D0CE45478D6707B5025A40CE" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_69311FF78A7841CA8BC0A9D6E069DE4F" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_87F1A1F16B484FFAA7D06A8C311D10E6" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_A9BC824A28AA436DB0ACE505A8C82E2C" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_D8DD9034F8E34F76AA22CFBAFC461849" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_C9F5D8C1B2EF4B4A82BFA29BCA86C87E" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - } - "MergeModule" - { - } - "ProjectOutput" - { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_194D7781A1504802950A57617F3803D3" - { - "SourcePath" = "8:..\\debug\\transport.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_1F4612D0C9664A2BBDF46FDE0E47197A" - { - "SourcePath" = "8:..\\debug\\oneD.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_3237A2C7A1E34294A6036D4038565E7B" - { - "SourcePath" = "8:..\\debug\\zeroD.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_337207A3891F4F9C85930F92585617A2" - { - "SourcePath" = "8:..\\debug\\tpx.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_35CF7BBB7404402AB9B3FB182CE0DED2" - { - "SourcePath" = "8:..\\debug\\numerics.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AD56DAD7-108B-4E82-993E-1EC6A0DFD209}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_637E39E029B14732B842FCA2AB74D296" - { - "SourcePath" = "8:..\\debug\\CVODES.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_83E76E90C6D94DD081FE6157A7DDA3B9" - { - "SourcePath" = "8:..\\debug\\kinetics.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{8CB43708-231A-4F80-B777-5F0A90CDB604}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9FB7136577424D92A91097DB19EDC141" - { - "SourcePath" = "8:..\\debug\\ctf2c.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A82C1EAC0A7D469EBB4A8FB7C9D1CB2A" - { - "SourcePath" = "8:..\\debug\\csvdiff.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_FBE54AACF2D849E5B7A4223AB235F3B1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AF888A7A-C325-4312-9BE0-CDA1B1E540E9}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A9F85CD88E684D8DA467D131D514B6FA" - { - "SourcePath" = "8:..\\debug\\SUNDIALS_SHARED.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_B646D778CCC84815B42BCD49474D204F" - { - "SourcePath" = "8:..\\debug\\NVEC_SER.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_B7EBF05DCDFA49009396C5D2DC7D6EB5" - { - "SourcePath" = "8:..\\debug\\ctblas.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_B92640FD361B4715B1A20BE2E6BD4CEB" - { - "SourcePath" = "8:..\\debug\\ctlapack.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{2701B198-FEC1-45A8-BC20-AACA46B64986}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_BDF2CCD7BC7447599BC8441395A01883" - { - "SourcePath" = "8:..\\debug\\ctcxx.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{E342202C-F877-43D0-8E66-D2A7794AC900}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_DF2C58804FF54B6195C64483DDF16189" - { - "SourcePath" = "8:..\\debug\\base.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D76CE458-2A16-42DD-AE25-E282886C358F}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_E0BE4100AAA5408E9B9466D67FC12149" - { - "SourcePath" = "8:..\\debug\\thermo.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_F50717FAE1ED466FBFC63ADE58B63676" - { - "SourcePath" = "8:..\\debug\\ctmath.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{127547E3-416C-4C12-82E9-52F912142FB5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_FE990C14225D491B89A084FF69F02F1A" - { - "SourcePath" = "8:..\\debug\\equil.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_0CBE9DB69C4A40428706448E0EDC17FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5B4B5866-2B50-4E34-9F00-B5C12677B4B5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - "VJSharpPlugin" - { - } - } -} diff --git a/win32/vc8/SetupCantera/SetupCantera.vdproj b/win32/vc8/SetupCantera/SetupCantera.vdproj deleted file mode 100755 index b2244217f..000000000 --- a/win32/vc8/SetupCantera/SetupCantera.vdproj +++ /dev/null @@ -1,23121 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:800" -"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupCantera" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_000E0B5AC6264DA3BEC0448B32F52663" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0067AAD709D94D2693870A06ECD55183" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0170832FE2DB4AE0BF9768C53BE03A84" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_020F278C42CA4A2B96388903D1752C62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_022EDF1564FF4680B6AA609CE897983A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0259622D90D54F99BA22C55A83DE0DD3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0366A82A86EA4F1CB1AD5F4D462B3787" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_03705D00A88B4B32A2CEA6A025ABAD87" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_040D88A3581F47CEA206D1688FD6EA61" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04C83EB86A3C45AB93638133493E5923" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_051107F9F8CE4364AC76D00D23F8B7C5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05690F470DFA457FBF7C925A8420EE5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05BEF1452C824F2AA870077D31CF1BF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05EE24E611E74A1C88CE22420CA5500D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05FE255C00F74DAEB6BFC00A32066DFA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0699BFFC081341CEAF618FBFBBA1241E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_06B3045D93A84917A8E324374A8211F6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08587955063141779B605860D7FF04D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0865E5D3BB9F4A62B678DA631E21745F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08B40A34D407447EA66C614C4E897E1F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08C0F7C9789B4E3F8D09411C89DD0509" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_099E198F6C01436DB271857F1309977D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A01A5CC173A4619BBAE80DFCE7B23B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2F83F932A74CAABB87DEEAC1B9536C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0ACC7910CC8A46E38521F8A78AF253D2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B0170BC983349DD945697DB4576507A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B09C9A0BF24498399548814F95D1EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C8BFBA19BE949699F417570F8C69B5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C9010E357C748BEB820CF0E830F09DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0CC005AA0F0842E4A33867605A8E4A57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D0FFCC38C4645D997283F1C5CED5E06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DD6AFC117E344BD826ECC698152F9AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DDF1766C6A04C76AE6AF7FBC35E471B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0E88CDE60FDB466A8E64AB3804CBE971" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0E91AE53B0354697B206E79EDEC8951D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_100F4A4A1A234A60AFAA34C912D418AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1049E82786DB4EB2BDEFF972136B0F19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_105638BB017C47DA814720D4C027908E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1089BF66E6BD47E597259E9AF2B35F20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_111A0970D7DE4C99AFE08278C8345DD9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_112604D4B1AF450DB167E0992C99521C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11553AE6EA7A424D9621E724DFECC70F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11AF9ACB25D6477DAE6906C2F6F688CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11E4F38118B54DC680D5CB741B29BE8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11EE4F61EA0740F1BE63419C7A48F185" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_125E1AC217CC40BD8F4534E875CB9D0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12BF22BA87424178B29DB07E669C3501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12F1E24910DD409E860D4F79A338EDAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_134B726C2CA94BF5A67C3ED7F799D502" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_138E90C26F6041339FF2678ABF07E5DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_13A678CB790646B69DF1451D34265FA3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_13B73567FBB1470E9244F3636ED90E55" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1420A489C89E4859ACE78FD5DD27C00A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14580E5B948E47509A941AA338014D25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14738B23CCC74201B3F3619639554DD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14AD021265F04D30B380659740DE2D56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14AE958921E548DBBD8DC6FA834FC532" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14D64F0F7ED94D29A7A8DAD77FCCED13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1549C4E9E5E0434983C533B9D0CB8B49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1556C8B42E0649DDAE01655F4D1C970E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15722A4BDFA44650ADE1764C5B1EBCC5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15D3C38D37A94D67B313EC3B57DA2AC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1605E31F88584B5BAA367FBA56A3EC57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_163414A541654AEB93A16D60F2652F7B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_164F9AE8646F49A28EDD39E09AC0B23E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C0D130AB2748E6890B937071A27A0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C40536EB0A45658DF4EC29D7CBBFF9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16DD6B492C274AC6BA6ED913C513A10B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16F99D9C3DF142889E721E6519E72352" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_17873678EB8F4A3AB2296EB4E4483220" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1861CF609E4C4EE2B209A26A6705ACD5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_18712B731C5F4CED9DD70EC680C9BE15" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1889FAD37671415E95CCA5B1BCAC9E32" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_18DF044BD81E46C98CCC861C36FC01AB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_192952F5A5D249D78FC7B767AB938A1B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A3D179D05C74A909F2B5B6E254459BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A68BCF036214AA58BDB24F63A44099F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A758A2D9CC24D13A732C1F61D692657" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A927F880A454469B90682B004B9D129" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A951008962D4A65A9A9653673049010" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B053CD5461740CB891855B80F250AED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B9B881AE09F4714B246FED31A2C52C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1CB5CF459BDE4DCEA0D61D95E6707D99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1CF9D451D1C24D9FBCD9719CC24D8956" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D0B3F7CDFF14AD2A879AF1565D65509" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D7106B99F8D451CA0562A6C57C2CC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DB52E3C2B4B4D63A2825ED896417F4D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DC1E7E2F3D94D77BA47749A06D1AD12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1E0D34F6C6104102A9D06C141F3F763E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F6340B91C654BDAB4FDCA7B545A9ADD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1FBA13F4B8CB4E1A81BB5FDA1194E6BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_200166547B6143DBB66C317D3C9548B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_20D3DE8A9BA14C91A9C2FFE7EB36603E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2170A16C95844A6291342D840D1BB498" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_218EB718190641D592079146D7F47C17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_219FDC3ACB2A4C81935851A9CAA7E1EF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21CB1D1F8F854048B7E62613B0F85A75" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21EB392DF37A421CABBDA197A9226C0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_220DD96C05614BCB9B3E2C477C950EB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_22220FA289544793A08B9B1E933623D4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2278673C1CB94B89B0F33D7D7588F290" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2279B9FC61AB4F3AB7F0A0F58F3BD071" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_22CEF13E79D94C419D5EF6986741612D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_232F4C7716264866BDEA07B97B583460" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_238BB4062E2B488FB10D3107F74869C8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_23CE4DDD38054CA49B17BEEF4D728230" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_23F24F51C12448E8B99577D4D359CA48" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2423A94DD42C4B89A532018CA915F0CF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_248688162FD145F4AA11063A3A5ECFD6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_24B6F64B4FD046B3A9F26BCFB9621B1F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254CA5A242F04444AB0F18F9ECDD091B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254F288B4BAC4BDFB4B21E76747FF336" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_25585A312B8146C9AC759F332C678FA6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_256AD3D2AEC6410FBF4F5E3B945925A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_25A650A6EF324949A3604908CE2112E7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_262DC17B610648E5A48002B469EC6A57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2656FD40F3784C588D4004D409B0F80E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26A7FE2928CE45CDB52C4B3326A33951" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26E683AE357D4F70A3DC3C57295541D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26F0BA63411646978592D51F26AEA36D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27549892F823435798B476FC52F3F012" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27DE8E5E29574E81B2D3ACC4E87B9637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_28BF9CA142EB4988A4B1366304D93917" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_290E7C7E5DF64841B1F913EEFE006069" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29200BDEF8B44EC69E128788F4E09B16" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_299CD5580EB645D191532FE4F24EC6CF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_299D770E87DA40E2B37F751CD036CF5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29CA5AAAF8D342359823BB1B4CC30E95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A0106C002434337907A10A979B6D97B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A1589369A874D0EBFFE3F6D98426A49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A962975342142978B3DE11A20C9AA52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2AA7C0041FC74F718A561EF0696DCB45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BB4BE1E38E641C2B265A596D043AF25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BB57D6845464ADFA0F107F511FFEEF5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BE3348DF5ED45EC944DDD5BFE78A865" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BF22A40402F4580B200414A32936177" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2C2891784E02439F8A77C62FB10A7758" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2CADD379818D4D128CB3E53D3E566601" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2CC0F0BF60B24FF39FF09E9CFDF038BB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D09076E55604C73A82892D474E11779" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D5D40F1EF034AD3A2757714B66F1A11" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2DEE49E2A7B4424E824CE5D0FB2846A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2E1D802885914276A918F17E040A09D1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2E96E842BF704E05B248FE9E9474674B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EC7B0A350C34DF0B88C45A54FBFCC99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2FAD4B54152F4F698FC2A1BAF8831599" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_303F2BB4ADCE4E0F9B2B45747E66C057" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3083E770891548348F700E253FA8A634" - "OwnerKey" = "8:_08587955063141779B605860D7FF04D3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3083E770891548348F700E253FA8A634" - "OwnerKey" = "8:_5138C167F7FC48EBA02A031F6F05DD67" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3083E770891548348F700E253FA8A634" - "OwnerKey" = "8:_14738B23CCC74201B3F3619639554DD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_30A47D7D93D84874A41E1782FDBCEAAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_30B3C39CD6444421B6418F00C5013828" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31AD332AA56C4DF190FE6D941FAAFBFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31E9E8DFB7144795A05AEEE66B279AB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32A08E26D90A41869BE37A47450DADCC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32EAE5622F7540E4AC357D8D1CE10D8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33C1BA231B1F42CDAD49F0298167D9BB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33DBCAB550F1494AA40EFC4ABEFBADC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3450E67DE4E1425B8B41AE70CA5BEEE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34722C3A5A5F4217AD66444E408BD476" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_349A87700DEA427C88D340397A9BF256" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_349F239FA90543188EEC8B24410296BE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_35C660FB7AD5450692D9BD8417AE21AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36101E75F83548D9864D35DB07B7612F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_362E5E6B9766498182C5008280A41BD2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3680F9CE2F25442489E0ACE568906072" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36C2D841FA684319BDF30F2B68589637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_372176D2A2AF406DBD625F54972DD57C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3778A89EFC6C475E8AFE84940043B8DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_379A958666C0409F82ED9D1C390CF2DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37B9F5E138A645AAA6CE6C3A36E5361F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37DD28283FAE43A78586C3D99D999022" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37F5B433E7DE450A995FDB31F909269A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_385781B4728F417C82E6B75637E10AE2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_385C8980D3A44A2093CD638714277678" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_38608699D4184347BAF2FFBD76936E1E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_389AC795E7E842888394BE52A051FA12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39905D4925564C469DE3CBE980978999" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39B2C611CD84448489F8AAFF5BD8AB28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3A49848C6AC948D8A7CB60B10FE0D83A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3AA804A010174CE4A2EC5E33D1C8CC8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3AC42291E06E4768B0D87839DC9B9E77" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3B00646190674532ABC512E89130A0D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3BE1A06F6E6840F996050C94AA740686" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C4A157925824371A0036E03B719B89F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CCADD10D5934D599E6AAFF04D6353B2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CDB43EBBFF14ED58EA458CC84B18F9B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CFA6387302F446AB7938595154FF208" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D56811387944E55AD39C984228C4EAB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D5BF771EBBC4AF0AA84C1E114FABEE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E35E9D3EC6141BBA820F7D01B815B64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3EF615A4DD26446799672090D51EBDE8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F96D57E8F9E461F8C90E0ACB1C937D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FE261F2E167434D804087B6019EB309" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF4115C0C3E4C1686E79FBDDD2387B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_403EF1958EF24BAC9D6D715D0A993803" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_406AF99237D3409BB85917A5A60F74ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_40E56E51E02745B4AEBA40660CEC686A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4112A1F6C299475E8562339C3C38AA30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_411BB46D848848E492899FDC17C2D1CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4144EDA2CE1A466F80088CF6F5482CC0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41915DD244F142089CE3793E90B3DF12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41BB99990E1246928D44C3F17942116E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4207771E67BA4E4794A2397BE181FFEE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4254D2D0022C4F1EB474B3635BDB1266" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_426E85F25D874E3F8F14D31E41AACF51" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42A0DE2343CF4D5FB768588C28368E2F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42CE73EDA2964A82BFAF73C2CB6E4B7D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42F68AC09DC0410C8B66213635F5C982" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_436F32BB3B714A24A6B5FD1BC342A9D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4396FC89207E4A7B985CAAC11722BD68" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43C69E8F23BD4919BB63BD40909B3759" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4401025D0D424A86B6C25A9B34792A95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_442F1B94835E4D329C9233176A3165FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44312EB878254560A66978A2E8304A92" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44512354EA8C4577A9085C81B028A63A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4479546E1AAE44FFAEFC0A710BA2E8FA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44DD06CC20DF420A998E2F1D0B980A99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_450EF4722F9B40F5A7A85BCA48C2CC20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_451FADB3D70145F9BF8D235E092B637A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_453760704FC54E5B9D98DD1CCD79BDDC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4555B1D563634B6AAE88E0051E34DCE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_46482802B89A4F9594C4C39CF0441C65" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_471DA45E05AD445EB7B143657DB4688C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4761AD8D69E841E298EB859CE92727BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4783AD3526B547709409884B6091E0B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_47F3CF4BEA29482B95C1AFFF8F6C8145" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_480527309EA14538802C74D4B190DBBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A22C4B2BF8947AA8789A8558BE2F728" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A34080C008B4F63A073D329C0B47ECA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A677774412940DEAF6AF1EDC27A3C58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A76C0FA9CF84058918F0E1F8126D049" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A9D96662A6C48C980D6FCCABF7CFE20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B3F9D28B70C4E339662B2029BC4027B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B60DDE68DB84E76B59AC82DD6A48B63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B9C0B2304BF45D3B6A94AB1ABEF6910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BB20697D6B74F4C8917A9D04AA4A240" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BF0C48B45924AF1ADC6B12A5E6701D1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BF9981AB5684655AC520EF2C245AF5C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C18112956A24BF6A1BF387E433469DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C432477911B4A8596B03914FF5916C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C9C4D481569458FB7B6C4535E474399" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4CE041E0453E4088900BEF68B80427D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D48D12F66B44E83BB214AAFD8B311C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D71E06EFE884CABA33151E1C5263C86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DCD79F33434471C82E0AF768F55ABDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4E5E333FAEC14ABFBD58531E8DD3C26C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4E67F8AB73144D67944EE83F06E06040" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EA368FFB8E84A9C88A4BEF0FAFC5A3A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EDBAF4F0C8C401695EE60D9184C34EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EEA2D8311E542998617CB07AF269FD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5072AB7D92454CC39627CAE67CAD2E6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5095A6E6BF554FEDBAEF263F05DDD77B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_509B9A1248FA4683A81BBBA1303BBE71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_50BE0A8057A64D38862D65984EB9CD88" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_50C880EA8AD04F98ACC7B17C25481323" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5138C167F7FC48EBA02A031F6F05DD67" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51E0B210177949DABBDC9E382016C5B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51E2B9E78A964BD383DD8FD460AA4BEF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_521AB345758F4DE2BCCE824F6E10A19A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52519B41A4064DEEB452445FD3550B6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52F34CA3B6284884A5FF333B2261DD88" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_533E20A890AF4129A378968FF67AF0A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5359EA42B033411BA9ACEA14D4292527" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53DA7F1154AD4808A379EDAE1B4202B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53EA1C41778744F09879AEAE0BAA0233" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53F7FA910CDC4CDEBD4257B5798B1B68" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54138DA393504CA593F2B307AD887B57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54161044EDBC4F718F7FEE349189D1CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54A0EE28997D4BAFA2E782BD6448A658" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54FC3FA61AA64EA983695B64461739FC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5571BE3AECFC4E599F4A538E40620D21" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_562372D5415546AD844E25834E0DECD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5662A7CD4D8C4E5F947A6F355C20C1A2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_567A83C285154238BE6C478046C5BAFB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_573061F4D2BC47AB86EF163F05DA0D62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5790A0F9267C4FA88EE7DF95DB07A8A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_57E6A3FDFDE34C75840B0908431790A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_589104AC830A4577B736D1106E7955A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_58EB415F05014A608F1D6B281082D92F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59166DBD45564A4195E8A079862D7DF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59245571144542D38FEC0EC1F00503B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_592F2DC945B24BDB801B54E965A109D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5939C6DA148E4B918D12A3F0CE7DC863" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_595064E84283443CAC06EEF5106C0641" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59A2A6B397EF4B649D07CA5B10A1D1C8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59AA52C5E25745589B34218C6B13216B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A3FBC380FAF43D0AD7BDFA47871DC92" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A494D5F32BD411D861645EF9D5CDB73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AD1E279C6CD48B09715186E69A55483" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AE86752EC8A4B54BA6494A9F33FFC71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5B27B82837184966986697D84EAB8146" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5B8BDA463997482B8E4B38A6883B9F20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5BC3883CE3F340CB8FFF56C6195A1121" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5CF936560FF2465682DB2D4643C37441" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5D50FACA9AE548919661678B7562D727" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5DFA2ECEDEB446DDA04762D262A2F376" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5E55DD812945431BAFCF8E3595428F15" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5E6021DD18EE41D8BA4C00CA071A2124" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5EBBDFD79C6D4331873E595874008962" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5F4850CA9CBC426485E4F0FCBC16C882" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5F7CAAD1BF2A476288C013604222BBC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5F999283D3304F89AEC9879F07D2ACB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6006C6D0EC294FC39274776F6EA12BCD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_60571A0C1CC14E77AB558ADB65B78D30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_60D94AAFB6AA45F89A490D537326B0A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_61151103C608408DB35D78567822421D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_611E4F1900564CD88F755749C3B89219" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_61C9DB5B055E4231B975615A8859A10A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6221061E3BD647AF89BF4AD1785DC9EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6263283A4DC1424893235D92CA5C7F32" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6349662626C947BC91332BE085230672" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_637A29A294854BEB94243A2E2BE72725" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63F7E804AA36436E9766AD90A1559698" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_641E5DD328FC499FA9E9E2BA97E138D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_64BFD140F3C9407497F177F7920CF70C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_655DC211FDA743B8AAE2A254B8D24127" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6693B16E7E2A4AE3ADC494334E18058F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6725A6F15136415BB26BADDD3CF96F66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6728976522BA4F4BBC490ED099A22916" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_675DF947A58B4BAB9DCCF837D18044E9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67B4668A9613497EAD89E4D9D5CDA7B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67EEC6CEAEB7420BBA0A70992A33175D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_698CE4C4A1BF440CBD28B8785A3D9F19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_698E1FE2069C44AD8727EDCB59AFF2F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A9D618F4BAD480B82EE6F7A7EBFC5F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A9E2F67751E4036B32A3F73F389F4B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AAD2BE4779D4141B7F3175116575B70" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AC7C33351854C93B3A9E0ADCECF0100" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AEC5D1E91784853A899657570B75158" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B4133DAEDD847D9ADB436F3A9E515BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B62C2B086DE4A74ABFDB909919F3B1B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BB63A2172964772A16E8C5DC8FCB473" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BF0F3B78ACB42BEB1F321B053DE8255" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D020030302F41549FD1141A91CA6BA2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D0E6800917A4CEABC5B55639C33C7FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D7DFA49CD7F422597521F6BC18DBEAA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6DE44E9F30F44007B2E7B044619759A2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E40F711DE6E4C15977B10FEBD1145B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6EAB3FC0E0224271BA4985CA3779D862" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6F1E0DC55B9845DAB4FE758F0B54914C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6F68661FA8524882AF0A5D77FA5A6124" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FF6BF505F0442DF81B97A7B0DACFF53" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_70297F7EB1434F9FAA59A5A015747606" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7086E515306342B7A4A3EB7E47148FEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_70F7102F07A84B8DB4E3D5FD338F5540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_71188FBDBE8C4C52A89AFDD622B108B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_713B640959AC45A78E7B9AE581F86E14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_715760DB29D349BC81FFA61C5AE33F17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7189BBF81A8B46F596C2D94D52CA15DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_71FEE454B6604E2592820EDDBF4B9B3B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72C19E279C1048D59F0DDED03719FF90" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72F9F17B043C4818960ED80D5809861A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73514E9BC5F44C509C562E01E8A958C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7371B6545BE04A179D3611DBA99BC2CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_738E966D4DA74FCE8C40B58983F4DBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73F2A9908B3D4174BFE10B56DECDF6AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_748B480FBFE048E8908EF0D5DC978E87" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_749CE2B462D64C4D80F72A3266FF5844" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_751FCF7F6799471992B6C1D080421B25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_75BE33EC2FDD4D92831EC94E3583F2E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76175107E4CC4459ABF6F887224C85F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7631AE376A6E4745A31A258B2EFEBEF7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_764D7127961644B186D3F90292091805" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77579BAF22FE4F6BBA6F6E55C2227394" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77A9AA9EC6624BD592C9D29EC6F94989" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77EAFF9FBF464DF08EFF37113E7DFC96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_788EDA9BF8E84FAA87DB7C2751076A9B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78A88A902EE84766911446EF648B4A20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78CF2DC24832474C9EC5304ABA596D6E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78EAF772B5414C25BD4EB77E1CE069A4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_793996EB3E1F479CA275A7CEB5851658" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_795887D785084824B7284296DC74B527" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79674E6058F048B1B7D3CFFBCBC41561" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A44C47D4CAD464A97B0209D14C65139" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A639317418840CC95575AFDA89539F7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A9AF6339376421580BF6E8028871929" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7AE8B40AFA7241769B5BE31427ED582B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B7753AD699149308A9D8CED65455D7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7BE4FD7D976D4900BD24BD9AB7501E99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CC6FCB9F695423782EC53DADE5D585A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CDF724656054425BFB271F06BD2367C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D3DAEB7E7C647309752BD3A02876B72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D867A3EE9034A2ABB13B35762290436" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7DD2BAB195754859931B7B5AE308FAFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7DE48AD20C384ABD9117F64B463DAD1F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E12BAE0A2924E5B83533AABB0BAC4DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E40B44934374E2C986A8908F00523D8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E6FC70ED43A4A3293D06D67EBA76D30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7EA80C1EF9194C0B8790BBFE6CFF7C10" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F2FA130741D4EC0BE2D86966108FCDD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F82322C27494517A818285E796783B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7FC1EE2D828D4E0C9A209479895AE0D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8106318CEF394350AED3B89BE5973CD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_812FFA9EA6DC43FA8D244219CD7096F8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_81812B7D110C414C960813023A134932" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_818FC04B27FA48F991F1F27AF1A02D2B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_82CA2F512C5343BDAB3341734D58FBFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8316AAAC7D124D08AC76B1E9B1B71597" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8354660D2436459FBA8CB92DB7B6E337" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8392F052F9604AD6A99C28412715DA30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_848A110B76D949EDB0ADED7CE6454C31" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8549950E280A4786AA6D4BDC9AF44DFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_854DF9ED3FF741069B2D162A049D5E64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85C910D16AEF4A4C9569503ED54C2E97" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85D870ADC88A4F87A4AD54AC91BE3F54" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85DB813C30EC48A8A5B8C91E10645CEE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8621C91C5A2D4D9EA50AED521E7FB7CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8644F7E4286B44BF849798AA1F3EF62A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_86801790ACD14519AA60F61CEE1E1518" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87132C070E1540D8A4B033B0E98880B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8729B2D3CFC043EAB78F286D76787B78" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87399508B62F47D0BC5E993FD3590D0C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8768926E874F4BFA9F36BBCC563882F3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_878CBA68A74A4569983B332DCCEEE813" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87CEEEEB6DBF409FACD5794BCBD35B3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87D616A7501545E899208A74F7D28235" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8801CCC3E95F4B098645DB0BF445E0F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_883D69622DD84D3A8A0D79D522CDA96B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_883ED26352B04EDEAD89A3CF9C86A55D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_88C7677DFAD94E838F62E0F1663FA36A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_896518E51E604EB388922C7AB451EA56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89B32FBB4FF441CFBCF0F830E202A7A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89F1C726748E4E57ACFDFC467114BD09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A0AEE06B352402FA6E6C5A73E042713" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A432F8B24A842C0A70A2D8FD906E798" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A44A594199C4334B78F3AA5D6532ADD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A5883FE50804063BBC8EE8DA9BE78DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A9B2D52CB344031AF51FA1589C12A9D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8AB8441158004A009E974813884A8FDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B0D72F9F1AE422C81E4923414EB4C13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B6199C9EA65475D9FC6C0CE792EA501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C16EDF915404D23BB491F51467D0612" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7D8CEB11024B759FC6F809723ADF7A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7FD926CFA648FB9CE0ED24957F591B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C9645906D2B4435BF0DDC85F14F5CF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CB8ABF1BC42493F8C6451072245546C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CCF6467ECF34EE59611670E3645C719" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CDB9C24D5594BB2BEC1EE74C8FED863" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D346FD7000B4F0AAF57691DB6BD9CDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D3C554266D94991816CFFDB66F29AAE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D419E40A1674FC9A198BCD3410D643D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8F6B0F5E781842E89113C86D1380E727" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9038E6B538DE4653AF9E77498DC5C9ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_904FCD6D55B842029CEF52AEFDEA4256" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_907955714C5E41C3A0C82F4633DEBAC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9084333D5B164E6FBDFA7096FCC75845" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_910E00C9C1E6469BB7A10318D60163F9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9124D54F67494EA18B08E5CCB0DA12B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_917A158208544EE3B58F022E82B35395" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_91D267E7F9ED49DDAAF7222744E6628A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_928A4CF19A3E4474AA4EF038E37FE2B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_92A6D3125FA44E7B8795DE4EE0D738BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9315EDEB72EF4E0799CBBD629C797E65" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_931815CAC9E94D25949A7DBDC05A5E09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_934D9F093D1E4D64A3E1AE1B319163A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_936D7ED327F842769055274860C7B7CE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_93900A98FABF44F5BE2F6F23E3EDA13A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_94F7E346CF344C0291219A51568B2A11" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95518B1185B344D8A9E17D449E22A07A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_955D5137DD3645A68F22AC7081F4BBD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95AD84099D86441F9B0C251039B1A63F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_966477D37CF5451993EFF07CFB2EE25B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_96CCEAC6BE924D6AB858949535654A72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9742F8FA66744C10BDA33C445BB1B5A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97AB3E7B353E4703B550348C63AEFC2D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97B185B78C154874B77D2049B3300B41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97C3AF757D4E47FAA20861128A24C4C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E864DEE6A144A78B68D9A3BE9A0413" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97F452B2E24D4B78B4AB754AAB4D9247" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97F7FCC94E42453B981D376F37B97503" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_987750730309466A9EC1C2E3A5B1D20F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_98A1AAE4D6A54C8697F75F0890873F23" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_98AF00ED289F450889C13394489C3D4B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_992BC758B7374D8D9CA69B550F538255" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_997965EBD0414DD3B8F2CD9270032C7B" - "OwnerKey" = "8:_3083E770891548348F700E253FA8A634" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_999E3B46B59C4234A7124019401DB7B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99BD8AC4084D439CA80816A89387CF06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F4B3534D1A4C88BFE4FB5D2F216E23" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9A1598ED1AED4AF7BE7E8B3C1839F085" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9AC9ABAE8E744589A8EABDBC4C1B063F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9AD65BFB57C24804AF9B53D18E3051AD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9B587B77A381433887EC3C60A2DEEC56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C0C04F635C34CAAB690617751FEF9A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C83B54D3B124108AED04884A3931252" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D045060258445C7988DB84395305E71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D6C72386A0B4D3489A13633E229F95D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D9C52DB234A43C88C442298E232C316" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E2FD424808A4D3A9297C8DE4EBF6A52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E7A52340F9643268D1F2F8864729809" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F0C5F7640E84C648A16A5663DC11CF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A00E186E9C8E4BCD92EEF18A7870AB64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0858150B00A472BA6EAE71AEBABDE58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A08E2857F1B1474E9AAF6D683CC3A7D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0C6574C5F6E41E18AB6AF904617B8D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0F47D115D1140D78EA15ED301A96FDF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A11208A3D61940228E848C672615C531" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1A7D85419B04E1892896FD2723CBE05" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A241F7A927984443A3BB7B186910ADED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B810BE7C004166A16F019DFEBC09A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2ED793453A54C92AD356FF69DBFAFF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A386FFD174A848B8A6383A013CA12077" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A3D6752BC31B442CA999E19F8AA5B2E5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A4C093C7C647401E895109DA2F564C52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A5136AB1792B4B98937DAC7FD6AE4E90" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A513873E6AEC441CB417942FBA4FE3A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A52F55B639B6498B993D0C8831EC29A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A56B4B64A8E2482883F4F76F278103DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A5898A75EFDA4A008CE657485600DB0F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A5965821A5034D3CB9417024DA48CF5C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6399AF77EE147919D73E720D70C79FF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A691E3B32AF54F4AB5F4B48577183263" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A694168142B64AB28E79B5E6E5357979" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6CD4A6404154996835A7D9B2301BCFF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7C06AF14B3343C09C52E321CD45D0A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7F216F3691F4406AD4BF685C2009EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A8313B076DCE4F47BC5AB1C18D54D1E8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A84BEECAB2D34EFCA56FAE2792F51D7D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A88814C184944C9FA3E00A2DE301BB17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A8BE7E9B8E89418B9C209C26C2481E52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A932A0AF2C944F8F9067A24C25B978CE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A95FA829E1D342E0BD407CA2FF074E9A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A98B9A585D4F41858169AD80172314EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A9E3A786A2954BC687EB209593DFAA31" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA0F97AADCE24AC29EF73E7D6C696C54" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA23BF6053F542538AF0B7FB48C0B4F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA6BB20D43F142F693E09AB9671A7F46" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA7D54EA12024486AA1ACD45D323E74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB701B636CC24D9F9CAA71C6B897E7AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ABE7E862C38241F19744114841629864" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE01A18492C447D89BA1FE02869A18DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE235390D3E7456BBC816F28EF0EDE5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE6136D7D3F341089B23CF2FE032F852" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AEC8DE39CE7B4849B1AC9407148408B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AEF2EA186F5D4A0486766CEC08F7A180" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AF2F612EC55F42C181F990BB5BF85D09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AF505C309B83425BB0ACBC40586DC467" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B0990FEE057B4CEB8E819D4F36FC023E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B103E721182F4DD6AD7F65CF565F83C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B137545CCE204222B6876022AB4E6EAD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B16017E037F7472DA99F97FA0994567E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B25E14F3380641BFA793B8AC5538DE69" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B26DE6FA1DBA4CD7A54798EFD42761C7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2C4715A10D6448C8785A77EC8E23AFB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2E109695C4F4E329F991DAB91EC054E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B310C19F9C7F4CE6891A34139EB0D630" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3217183190C4EF5AA058E2F2DD49E5B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B34D82DAE3934AE8B7A86ADC89132428" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B37B9EC7F5E24483ABF63844CB762A5D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B383C9B0D56149A18C3933E52A659729" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3B4F39E240F4463BB09201FC8B32CD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B42AB8E6DFE545408B9760D0D10919CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4FB5F4843A24E41B7FADE7050CD9910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4FE641E9EE14B3A98EB023B9B281012" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5F13C260D704D10A1AA9E9C428FD17C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5F44ACDAC4142C9B086E996419F26D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6B7A55B6F78408B87B10B799DE5A19A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6BB322EEC614D6381014E64306652A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B700B3135C044AE1A0E11F64951C15B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B74214D38A5B4B88B5E169B9E638C59B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7E71DDEC9694BB3913A5A951D071C79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7FE7CDB0F4C4BDAB730BB096498F836" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7FE86B0D0F1439F8BD9FDA7DC0BC6E8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B813F357BF6E4672A6C5C6420233E416" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8531EBC9C4146A18DBDEE03537C7895" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8DC8835383B4D81865DE6728E152C6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B90B2A45F38546C7B27A422537B6A0D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B92716F1835748778D2EA2A170A3463C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B931BA0672394A6D8134E66E8381B7D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B980912F97654A708BB58521244643F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9D00A7B741A4394B6D20DFBAD7B67B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9F7ACBBB03641A189D48B3F96B177AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA1757667DBF4ECE82D987268736B4D7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA434DDB92844939B4727EA0D07F28F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA56A809F849463387B0C35C554D3FDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA805C53980C41769659D085C5C8E0B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BBA24149F4C04977B6A07924A49D7352" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC01A169AEE24DEDB532037D3A25C69E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC48260E6FE744BCB551169FC8E965F8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC7DFDE6592D463B95C307DBE7305593" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC7FECC38DA64F6DBD2CEB31BECB4861" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD197F0310024D04B386D3ED22B580F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD35BC44FB8F441B8E358D9D364CA587" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD9ECC0B46EC450CAF842508F8F7BE33" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDB11450018647D880BBB295E0BBF169" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BECC05E6C8EB47B68F6344A00F04C46D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BF2D5197C57A4E03833752A2F4532AA8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BFE5589963E74E2E9883E4AE5826D851" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C03B6B3C637C45749F3ACF29F4FCEDF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C04EEE51536C4B64BB1758CBB7873B34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C065BAA069514382B51E468B5A1978A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C094488877694ABCA56EEADA30F0C108" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C0D8D2C4874C4694895DE76AF8ED8E8D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C0E4D3E9F985430CB96D8E96014865FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C1510D42AA964597A8CB449C6B94E86B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C27608223A4A46CFB21A58073E99629E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C357D956140243B5A87AA9011DAF1207" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C3750F20EDFA48D78E02F27034D02209" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C38225F7A000426CB7E955945C9466E0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C4F6F46B0B0344169A6195BE5062914C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C51F790219A544D29B9BCBC4B83E1C3E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C54B99BA758A4FB3B844DE919B277DDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C620775E0B56481695BDA176D6BBF60A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C649E5027371431DB5A5440812C57540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6896DE4391E40FF980A950DDE8B43D1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6B45FFC93CC4A3F864E363E7B18206D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6F4B29F1A3B4B59A21287716572E0B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C71939C1027C4474B690DDDF4B0E8FB7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7406B26D83F4CF48E24ED78245654ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7D02D2B4C444A0C90BD6F8C6B232C91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7FFE7D762304EA08B7376CADFF4D8C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8198F923CDB401EAF223744653A6806" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C844497867604180ABCB21CF50308A75" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C9AC5BC6DB9742B79D0BFF153CA39421" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CA734CBAEC8440EC8CB32AF7EF8D71AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB3A0AE176934F52AE20A613C2070534" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB46B6FEE22A4C689CB244EF428600BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC3803859B7F43B18EBE799C9C56933F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC71BE47DD434D7CA2713A9087A88C14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC9CBF448698418B83091250EA8BD78C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCBD553838A74D2AA8E5C4392EB0B6F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCDF5C1EFB75477BB295929481C75CC7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCE9C76D878344F4BF560E0136E1BCF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCF420B39E734D4384125DFE122E8F6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD3DBDD9333C4033AE1B724282BBBFBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD777AD5FF1D420DB9723E6EEC27D521" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CDBE3C6855AE4501803B9EDA7BFEA691" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEC3CD033FB94DFA8810C8142FED85B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CECCCB3C56494F61A90C39EE70F3DFC9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF28519F63C34802AB33F9342405FD3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF5084794E3343669C4337B95A9F7BF1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF7BF165F4004E0DBBFF446A66A985DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFA9B0302ABC430A9DBA2BC2132B6B73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFAF2622550E48AA9B0F502BD4022FB5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE3C277A2DF41018E63BE547F53452D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE69F411CF84BE7ABCD4B895EF13C62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0A9D802F4924B3B8C0429DFF0D37C9E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0D86929159D4E008C467978E92A6B0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0E38FA5FFFD42BC9507FFC804B3B271" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D128F9F54CA949C09B3FA61A199B060F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D151A04263364A9B8005377D79AEC239" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D1CD893E014F4FBE842B4B0E2CDDE652" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D200B29D2F7E429AB771E6E92961E4C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2176F7DD848403DBC973A3676B579CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D238C397E41B4DC684CF79761C4B85D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D29E08866CBB44D0A548B5F8A7D90584" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2BB3D54E2B2459596E3FCC0C5648A63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3EDAA4023284820AFC142093DE1AAE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D418D6CC07974B16B70C9B93970427FC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D428726607B744478982A6F3AEBB5937" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D49889111E484F5090ED91A8EFF57DD0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D523D656E59A4F36A5799882AD52FE63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D53FFA2FD41F4B55B55A5F34D59755C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D5E167B7033D49188854ABA54CB6A543" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6635B71ADB94BA0AC25AF10E53EAA56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D669B0F109D24B248427555BFC1EFFC9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D68C5368AA4548E2B31B6E44C6CF18CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6F8538106594E289818596061BE2EA6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D75087C07C804BA994309398BC48603F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D75AC18CFD714D179B403F394FEE5C6B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D7EDA76276BA47C5B427D5289E602655" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D8DE5B3E74534CEFBF787CCC4124FF6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D9342B2A479345D79B17511A69B5E867" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D9EFEFA2064D49EDA49FBE09DEBC3C72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA59B07FBF1F42CDB8AEF8B24809BF08" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA6641D60355480A978E4B4464AA5DF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA790596462048CFAECE85420D41D74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA8A6A14EA7A4B87A06CA40B37404208" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB5649A025C244CCAD4CFC7607B09A28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB58150AE7CE4F5390C9322D5F5E7235" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB6C4271795545FA80082707D6121026" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB6D039C3ED14EE58F469C211EE0336C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBC0EC09DC684F47B0DC34BF7958EA66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBECDA96409E46C5A16D99CCCFC2E0DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC239E2B54624CCF8D26F85C98393DC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC32635C462B40BEBEEC9176E79A9BB8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC87F8DA14754002A1931C3C5DC89AD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DCE0313BBE4C4DFEA23ACDBB6863B390" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DD3B996C17714923935F9497EC38D611" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DD6D9600C356455D95BD2C44C50214DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DDCBFEDCC6144933941BE8B0EEBB9614" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE2D53C1D99340B28D76F985871A1D04" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE4BC3661787450DADE7B47CFFFDAFB3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE5BB9FAA411472B8901537165DFD827" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE6ED970A6634704843FC2D976DDB51F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DEE4FC947E1543ECA3C5D0A1B5D82606" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF09D62385DE48A0A9A5E36414AAEADF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF631F75976846E58594E4C6FD1630C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF6E93BE4C85423FBB21EA3F783E0724" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF78E69F06884ED8B21785EFA82570F8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF7C83B26513481DA856DE8F3DAEF744" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E00C0F5054204111B95C89CE4CF7CFA7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E07080A8272044BDAD3242DFA62A3AD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0D128147681418496692C77F4B1BECB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E148F8C2F82A48D3A68E9E2C2CDAD846" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1570450F26743789099E1D664EA2930" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E18D9C95AB9747609535A99DD2D81155" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1E6F5ED150E4549979E0E3F9E6D2F67" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1FAFCCB6A854D248F54F164889FAB3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2073E8B81F74741B1D1EA05FBDD0F79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2B4EF18B90E479E8D1311CBCE13431E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2DB44B0AA4245D8BFE17D1B069BAE0F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2DDE31CAC874AE0B9F7F9145248BE6B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E31FFA0A95B14807BA4DA5176F48A0AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3B3CBF11A49408DA2A465DD552AE300" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3DDA7E632494939B2882BD6741CFD9D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3F58F53501F4CAA92527C64B08D9EBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E40175C04F974A7BA19133984051989B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4171B5DBA664372BB43F3B40B2E1236" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4A483565C5E40B79805552DC4B5292C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4A964C652EF407CA753B3CA1219015B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E54668B3A3FB42CF85A71689A715F19B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E646FA76573448CAA4749B18614EF782" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E716C1A77B764B6697138BC0DAE3E30C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E78FD6989E1D4799AAAD31ACD43B0C1D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E855F8CECB234B9291EC3600C31564E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8AFB1C8F7A342D5A03F305B3E0230C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E0F24BF6014C208A93130FC1761DE6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E78948E8974A1DB4C3D6E63AF58602" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8FE474C601D4386BBB0CA9599FF45BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E90BD26B31DB42D59ABCCF0A14CCCB52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E91E1B960A5D482C848F0DD9A292A0D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA0930AEA1074763823B836B96A138A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA8E4A02700F48B3A6136CD0055D6CFD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB7840FED8294FFDB3111C6B3DD32833" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB82DBEEDAE14B51840A9D7153E52BBB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EBB20B541FE543F7A695E466975C6495" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC2FDC1A744E4A1AA4793CB10F18D176" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC476B2533A1437FA80321BB3090234E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC5F3263FCAA48CEB25E23414F082818" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC6786EBE72E46B694D473463C72A2BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC9C8B8C68CC4B6FBF2202B0935A6396" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECA3396FBFD54A94B2DFB33B080F0D4E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECAF852C95DD46A39B119046E569A5F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECED5D161C3348B98B263CFECA0A7DCF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED40FDD34E984498ADC37D88B43AEAA4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED67782207C047F4A5935DCE2E79F151" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED90DA83729C417BBEAA629FC6CE1095" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDC27F3DB4874D0B80C408E935F92FD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE7C6EE3A3154788B22D1EF05798FD2E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF07839F9BC941BA9127CF08C90303D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF86BEE203814AFB81EFC961B7A3E77E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EFA30E0040CD47D995300679F7C2846B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F002FBC310564DAAB051DE2CC004A129" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F01B5FE1A51E45AFBA508244A268A056" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F0281BD9BD9F406A803EEBD30E07211E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F15D7C13B4D94173A06FC05BFE08B4A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F18978587EE441EA8B9B276B9FE566FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1C2DC4D3F4541478F3128EC742FC67D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F227BC16EE9F47A7BCF4A15B34565073" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F2A92891BD6D4A87BB614760C33A483D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F2E355F7534548FA97DD0E22363A0107" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F325A9398503407384F1B46B1B65BE34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F33D31C689BD40F2AF95AD8905B4CA5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3A73DE374274D23B5B71D3950610F46" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F40D33926EF24D48B642AFADF0905175" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F42D9F9BF66C46B3A5C9271FA5F371BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F47B7B39692A4CFFA8EADC42095D740D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F495A54DE04C4B39B5F52C4AA64E7060" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4E64CA79CC5489294D5EB5751985163" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4F48A978F924204A75079994744E641" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4FB2F3079254D76B2DF7DF3B7391098" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F52E35C2A75341B5B07D033F7072C765" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F56FE241FFE6446197BDA67DD816F1E4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F5B0599D33DE4EA882B0C846B85FD66E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F602133B4312461CA85ABCBC52B27AF0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F622D25373114C90976CCE00B20B11FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6A52BC1EC8D44989142E90DB7AAD1D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6E4EBD5FFCA494C8355AF6764844103" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F70CE7A5A1844D3A99121A7A41ACAAF7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81A7E5426654A1891028EF1BDDF87CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F862E9C9A48D4C569698C90E1EC6850B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8688399972140A18AEE3821A3076DA9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F88CE78D01A1484A9A363ECD019F9ABB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8CAB1B1AAE143949246B033BF6572AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8E58FC7A5A74126B5F8D78607815377" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8FB0389B5924D9585AA8CB15F4A2BE5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9D283B3D2094812A29561F09605DE12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9E5B7A73F134E42B0EE70B7A917FFE1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FA43C5DB9C7546E7BB93ED688744AC52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBB083851DA2463CA4F1366F4904110A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBC9FE116DDD46DEB48CF787395219C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBFB14FD38C7494B8A4C46E34805BC91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC806BD642A04A1EB4946516ADF8D34E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC86845237DD456CBCC89B92C093E444" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FD0456378D394DF48B3AB5BD0502EBB1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FDB8A6CE75A943ECA1F4D7DFB8F69902" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFFDE78FD53C4E159AF3540A42F61677" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\SetupCantera.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\Cantera.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "File" - { - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_000E0B5AC6264DA3BEC0448B32F52663" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\LiquidTransport.h" - "TargetName" = "8:LiquidTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0067AAD709D94D2693870A06ECD55183" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_condensed.cti" - "TargetName" = "8:nasa_condensed.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0170832FE2DB4AE0BF9768C53BE03A84" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\setMultiplier.m" - "TargetName" = "8:setMultiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_020F278C42CA4A2B96388903D1752C62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorNet.h" - "TargetName" = "8:ReactorNet.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_022EDF1564FF4680B6AA609CE897983A" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\h2o2.cti" - "TargetName" = "8:h2o2.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0259622D90D54F99BA22C55A83DE0DD3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\kin1_blessed_0.csv" - "TargetName" = "8:kin1_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0366A82A86EA4F1CB1AD5F4D462B3787" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\GeneralSpeciesThermo.h" - "TargetName" = "8:GeneralSpeciesThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_03705D00A88B4B32A2CEA6A025ABAD87" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_040D88A3581F47CEA206D1688FD6EA61" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_internal.h" - "TargetName" = "8:vcs_internal.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_04C83EB86A3C45AB93638133493E5923" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\argon.cti" - "TargetName" = "8:argon.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_051107F9F8CE4364AC76D00D23F8B7C5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite2.m" - "TargetName" = "8:ignite2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05690F470DFA457FBF7C925A8420EE5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\mix_hndl.m" - "TargetName" = "8:mix_hndl.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05BEF1452C824F2AA870077D31CF1BF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05EE24E611E74A1C88CE22420CA5500D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\equil.m" - "TargetName" = "8:equil.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05FE255C00F74DAEB6BFC00A32066DFA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Edge.h" - "TargetName" = "8:Edge.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0699BFFC081341CEAF618FBFBBA1241E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Reactor.h" - "TargetName" = "8:Reactor.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_06B3045D93A84917A8E324374A8211F6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\MineralEQ3.h" - "TargetName" = "8:MineralEQ3.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0865E5D3BB9F4A62B678DA631E21745F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_08B40A34D407447EA66C614C4E897E1F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_08C0F7C9789B4E3F8D09411C89DD0509" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_099E198F6C01436DB271857F1309977D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_get.m" - "TargetName" = "8:phase_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A01A5CC173A4619BBAE80DFCE7B23B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolarMass.m" - "TargetName" = "8:meanMolarMass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Hydrogen.m" - "TargetName" = "8:Hydrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A2F83F932A74CAABB87DEEAC1B9536C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0ACC7910CC8A46E38521F8A78AF253D2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ThermoPhase.m" - "TargetName" = "8:ThermoPhase.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B0170BC983349DD945697DB4576507A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\atol.m" - "TargetName" = "8:atol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B09C9A0BF24498399548814F95D1EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setThermalConductivity.m" - "TargetName" = "8:setThermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C8BFBA19BE949699F417570F8C69B5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SV.m" - "TargetName" = "8:setState_SV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C9010E357C748BEB820CF0E830F09DF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setDensity.m" - "TargetName" = "8:setDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0CC005AA0F0842E4A33867605A8E4A57" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0D0FFCC38C4645D997283F1C5CED5E06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setMaxTimeStep.m" - "TargetName" = "8:setMaxTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0DD6AFC117E344BD826ECC698152F9AF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0DDF1766C6A04C76AE6AF7FBC35E471B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\netProdRates.m" - "TargetName" = "8:netProdRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0E88CDE60FDB466A8E64AB3804CBE971" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0E91AE53B0354697B206E79EDEC8951D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ThirdBodyMgr.h" - "TargetName" = "8:ThirdBodyMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_100F4A4A1A234A60AFAA34C912D418AF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1049E82786DB4EB2BDEFF972136B0F19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satPressure.m" - "TargetName" = "8:satPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_105638BB017C47DA814720D4C027908E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\private\\surfmethods.m" - "TargetName" = "8:surfmethods.m" - "Tag" = "8:" - "Folder" = "8:_653D9B351BDC4DD6B1AC64034FB114A1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1089BF66E6BD47E597259E9AF2B35F20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\LineBroadener.h" - "TargetName" = "8:LineBroadener.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_111A0970D7DE4C99AFE08278C8345DD9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SimpleThermo.h" - "TargetName" = "8:SimpleThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_112604D4B1AF450DB167E0992C99521C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\Makefile.install" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11553AE6EA7A424D9621E724DFECC70F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarDensity.m" - "TargetName" = "8:molarDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11AF9ACB25D6477DAE6906C2F6F688CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11E4F38118B54DC680D5CB741B29BE8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\volume.m" - "TargetName" = "8:volume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11EE4F61EA0740F1BE63419C7A48F185" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_HP.m" - "TargetName" = "8:setState_HP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_125E1AC217CC40BD8F4534E875CB9D0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_12BF22BA87424178B29DB07E669C3501" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_12F1E24910DD409E860D4F79A338EDAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\DebyeHuckel.h" - "TargetName" = "8:DebyeHuckel.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_134B726C2CA94BF5A67C3ED7F799D502" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\simple.py" - "TargetName" = "8:simple.py" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_138E90C26F6041339FF2678ABF07E5DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\example_utils.h" - "TargetName" = "8:example_utils.h" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_13A678CB790646B69DF1451D34265FA3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_13B73567FBB1470E9244F3636ED90E55" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\catcomb.py" - "TargetName" = "8:catcomb.py" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1420A489C89E4859ACE78FD5DD27C00A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\Transport.m" - "TargetName" = "8:Transport.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14580E5B948E47509A941AA338014D25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14AD021265F04D30B380659740DE2D56" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14AE958921E548DBBD8DC6FA834FC532" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_VolPhase.h" - "TargetName" = "8:vcs_VolPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14D64F0F7ED94D29A7A8DAD77FCCED13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\reaction_defs.h" - "TargetName" = "8:reaction_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1549C4E9E5E0434983C533B9D0CB8B49" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SingleSpeciesTP.h" - "TargetName" = "8:SingleSpeciesTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1556C8B42E0649DDAE01655F4D1C970E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\piston.py" - "TargetName" = "8:piston.py" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_15722A4BDFA44650ADE1764C5B1EBCC5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_15D3C38D37A94D67B313EC3B57DA2AC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\private\\flowdevicemethods.m" - "TargetName" = "8:flowdevicemethods.m" - "Tag" = "8:" - "Folder" = "8:_A0CD6A9C146B405D99355A87F6B7C47D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1605E31F88584B5BAA367FBA56A3EC57" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\catcomb_blessed_0.csv" - "TargetName" = "8:catcomb_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_163414A541654AEB93A16D60F2652F7B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_164F9AE8646F49A28EDD39E09AC0B23E" - { - "SourcePath" = "8:..\\demos\\ReadMe.txt" - "TargetName" = "8:ReadMe.txt" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16C0D130AB2748E6890B937071A27A0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\ydot.m" - "TargetName" = "8:ydot.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16C40536EB0A45658DF4EC29D7CBBFF9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByID.m" - "TargetName" = "8:findByID.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16DD6B492C274AC6BA6ED913C513A10B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\thermomethods.cpp" - "TargetName" = "8:thermomethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16F99D9C3DF142889E721E6519E72352" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_17873678EB8F4A3AB2296EB4E4483220" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isInlet.m" - "TargetName" = "8:isInlet.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_18712B731C5F4CED9DD70EC680C9BE15" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1889FAD37671415E95CCA5B1BCAC9E32" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_r.m" - "TargetName" = "8:rop_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_18DF044BD81E46C98CCC861C36FC01AB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\plotting.py" - "TargetName" = "8:plotting.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_192952F5A5D249D78FC7B767AB938A1B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Sim1D.h" - "TargetName" = "8:Sim1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A3D179D05C74A909F2B5B6E254459BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Inlet.m" - "TargetName" = "8:Inlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A68BCF036214AA58BDB24F63A44099F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A758A2D9CC24D13A732C1F61D692657" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A927F880A454469B90682B004B9D129" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ShomatePoly.h" - "TargetName" = "8:ShomatePoly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A951008962D4A65A9A9653673049010" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B053CD5461740CB891855B80F250AED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl2.m" - "TargetName" = "8:prandtl2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B9B881AE09F4714B246FED31A2C52C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Crystal.h" - "TargetName" = "8:Crystal.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\GRI30.m" - "TargetName" = "8:GRI30.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1CB5CF459BDE4DCEA0D61D95E6707D99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1CF9D451D1C24D9FBCD9719CC24D8956" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\FlowDevice.h" - "TargetName" = "8:FlowDevice.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D0B3F7CDFF14AD2A879AF1565D65509" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mole.m" - "TargetName" = "8:entropy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D7106B99F8D451CA0562A6C57C2CC3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importInterface.m" - "TargetName" = "8:importInterface.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1DB52E3C2B4B4D63A2825ED896417F4D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1DC1E7E2F3D94D77BA47749A06D1AD12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ShomateThermo.h" - "TargetName" = "8:ShomateThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1E0D34F6C6104102A9D06C141F3F763E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SpeciesThermoMgr.h" - "TargetName" = "8:SpeciesThermoMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1F6340B91C654BDAB4FDCA7B545A9ADD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainType.m" - "TargetName" = "8:domainType.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1FBA13F4B8CB4E1A81BB5FDA1194E6BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\mix_defs.h" - "TargetName" = "8:mix_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_200166547B6143DBB66C317D3C9548B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_20D3DE8A9BA14C91A9C2FFE7EB36603E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ConstCpPoly.h" - "TargetName" = "8:ConstCpPoly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2170A16C95844A6291342D840D1BB498" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\flame1.py" - "TargetName" = "8:flame1.py" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_219FDC3ACB2A4C81935851A9CAA7E1EF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_R.m" - "TargetName" = "8:cp_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21CB1D1F8F854048B7E62613B0F85A75" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21EB392DF37A421CABBDA197A9226C0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\diffflame.m" - "TargetName" = "8:diffflame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_220DD96C05614BCB9B3E2C477C950EB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_22220FA289544793A08B9B1E933623D4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2278673C1CB94B89B0F33D7D7588F290" - { - "SourcePath" = "8:..\\demos\\flamespeed.vcproj" - "TargetName" = "8:flamespeed.vcproj" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2279B9FC61AB4F3AB7F0A0F58F3BD071" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\speciesThermoTypes.h" - "TargetName" = "8:speciesThermoTypes.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_22CEF13E79D94C419D5EF6986741612D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_232F4C7716264866BDEA07B97B583460" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_UV.m" - "TargetName" = "8:setState_UV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_238BB4062E2B488FB10D3107F74869C8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\writelog.h" - "TargetName" = "8:writelog.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_23CE4DDD38054CA49B17BEEF4D728230" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\ready.m" - "TargetName" = "8:ready.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_23F24F51C12448E8B99577D4D359CA48" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\MultiNewton.h" - "TargetName" = "8:MultiNewton.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2423A94DD42C4B89A532018CA915F0CF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_248688162FD145F4AA11063A3A5ECFD6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_24B6F64B4FD046B3A9F26BCFB9621B1F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\IdealGasPhase.h" - "TargetName" = "8:IdealGasPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_254CA5A242F04444AB0F18F9ECDD091B" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\ptcombust.cti" - "TargetName" = "8:ptcombust.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_254F288B4BAC4BDFB4B21E76747FF336" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\attrib.m" - "TargetName" = "8:attrib.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_25585A312B8146C9AC759F332C678FA6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_256AD3D2AEC6410FBF4F5E3B945925A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_25A650A6EF324949A3604908CE2112E7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MultiTransport.h" - "TargetName" = "8:MultiTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2656FD40F3784C588D4004D409B0F80E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Outlet.m" - "TargetName" = "8:Outlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26A7FE2928CE45CDB52C4B3326A33951" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setHeatTransferCoeff.m" - "TargetName" = "8:setHeatTransferCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26E683AE357D4F70A3DC3C57295541D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conuv.m" - "TargetName" = "8:conuv.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26F0BA63411646978592D51F26AEA36D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rxnEqs.m" - "TargetName" = "8:rxnEqs.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27549892F823435798B476FC52F3F012" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarMasses.m" - "TargetName" = "8:molarMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27DE8E5E29574E81B2D3ACC4E87B9637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\addChild.m" - "TargetName" = "8:addChild.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_28BF9CA142EB4988A4B1366304D93917" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\diamond.py" - "TargetName" = "8:diamond.py" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_290E7C7E5DF64841B1F913EEFE006069" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_29200BDEF8B44EC69E128788F4E09B16" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_299CD5580EB645D191532FE4F24EC6CF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Interface.h" - "TargetName" = "8:Interface.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_299D770E87DA40E2B37F751CD036CF5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\refine.h" - "TargetName" = "8:refine.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_29CA5AAAF8D342359823BB1B4CC30E95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\numerics.h" - "TargetName" = "8:numerics.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A0106C002434337907A10A979B6D97B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\MargulesVPSSTP.h" - "TargetName" = "8:MargulesVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A1589369A874D0EBFFE3F6D98426A49" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A962975342142978B3DE11A20C9AA52" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\elements.xml" - "TargetName" = "8:elements.xml" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2AA7C0041FC74F718A561EF0696DCB45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BB4BE1E38E641C2B265A596D043AF25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionStoichMgr.h" - "TargetName" = "8:ReactionStoichMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BB57D6845464ADFA0F107F511FFEEF5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorFactory.h" - "TargetName" = "8:ReactorFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BE3348DF5ED45EC944DDD5BFE78A865" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\importKinetics.h" - "TargetName" = "8:importKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BF22A40402F4580B200414A32936177" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2C2891784E02439F8A77C62FB10A7758" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\sensitivity1.py" - "TargetName" = "8:sensitivity1.py" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2CADD379818D4D128CB3E53D3E566601" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\thermoFunctions.h" - "TargetName" = "8:thermoFunctions.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2D09076E55604C73A82892D474E11779" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\restore.m" - "TargetName" = "8:restore.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2D5D40F1EF034AD3A2757714B66F1A11" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\IdealSolidSolnPhase.h" - "TargetName" = "8:IdealSolidSolnPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2DEE49E2A7B4424E824CE5D0FB2846A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2E1D802885914276A918F17E040A09D1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2E96E842BF704E05B248FE9E9474674B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\flamespeed.cpp" - "TargetName" = "8:flamespeed.cpp" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setKineticsMgr.m" - "TargetName" = "8:setKineticsMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EC7B0A350C34DF0B88C45A54FBFCC99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut7.m" - "TargetName" = "8:tut7.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2FAD4B54152F4F698FC2A1BAF8831599" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_MultiPhaseEquil.h" - "TargetName" = "8:vcs_MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_303F2BB4ADCE4E0F9B2B45747E66C057" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Solid1D.h" - "TargetName" = "8:Solid1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_30A47D7D93D84874A41E1782FDBCEAAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\creationRates.m" - "TargetName" = "8:creationRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_30B3C39CD6444421B6418F00C5013828" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\FactoryBase.h" - "TargetName" = "8:FactoryBase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31AD332AA56C4DF190FE6D941FAAFBFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\vaporFraction.m" - "TargetName" = "8:vaporFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31E9E8DFB7144795A05AEEE66B279AB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\viscosity.m" - "TargetName" = "8:viscosity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32A08E26D90A41869BE37A47450DADCC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\binDiffCoeffs.m" - "TargetName" = "8:binDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32EAE5622F7540E4AC357D8D1CE10D8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\isIdealGas.m" - "TargetName" = "8:isIdealGas.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33C1BA231B1F42CDAD49F0298167D9BB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\utilities.h" - "TargetName" = "8:utilities.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33DBCAB550F1494AA40EFC4ABEFBADC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Psat.m" - "TargetName" = "8:setState_Psat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3450E67DE4E1425B8B41AE70CA5BEEE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_34722C3A5A5F4217AD66444E408BD476" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Surface.m" - "TargetName" = "8:Surface.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_349A87700DEA427C88D340397A9BF256" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_349F239FA90543188EEC8B24410296BE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ck2ctml.h" - "TargetName" = "8:ck2ctml.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_35C660FB7AD5450692D9BD8417AE21AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\LatticeSolidPhase.h" - "TargetName" = "8:LatticeSolidPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_36101E75F83548D9864D35DB07B7612F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS_IdealGas.h" - "TargetName" = "8:PDSS_IdealGas.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_362E5E6B9766498182C5008280A41BD2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\Solution.m" - "TargetName" = "8:Solution.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3680F9CE2F25442489E0ACE568906072" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\flame2_blessed_0.csv" - "TargetName" = "8:flame2_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_36C2D841FA684319BDF30F2B68589637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\FlowDevice.m" - "TargetName" = "8:FlowDevice.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_372176D2A2AF406DBD625F54972DD57C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nTotalSpecies.m" - "TargetName" = "8:nTotalSpecies.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3778A89EFC6C475E8AFE84940043B8DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setSpeciesMoles.m" - "TargetName" = "8:setSpeciesMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_379A958666C0409F82ED9D1C390CF2DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37B9F5E138A645AAA6CE6C3A36E5361F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37DD28283FAE43A78586C3D99D999022" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon_carbide.cti" - "TargetName" = "8:silicon_carbide.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37F5B433E7DE450A995FDB31F909269A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\WaterPropsIAPWSphi.h" - "TargetName" = "8:WaterPropsIAPWSphi.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_385781B4728F417C82E6B75637E10AE2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_385C8980D3A44A2093CD638714277678" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_38608699D4184347BAF2FFBD76936E1E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_389AC795E7E842888394BE52A051FA12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\wall_hndl.m" - "TargetName" = "8:wall_hndl.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_39905D4925564C469DE3CBE980978999" - { - "SourcePath" = "8:..\\demos\\demo.vcproj" - "TargetName" = "8:demo.vcproj" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_39B2C611CD84448489F8AAFF5BD8AB28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nReactions.m" - "TargetName" = "8:nReactions.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3A49848C6AC948D8A7CB60B10FE0D83A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\disableEnergy.m" - "TargetName" = "8:disableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3AA804A010174CE4A2EC5E33D1C8CC8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\Makefile.install" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3AC42291E06E4768B0D87839DC9B9E77" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut2.m" - "TargetName" = "8:tut2.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3B00646190674532ABC512E89130A0D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut4.m" - "TargetName" = "8:tut4.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3BE1A06F6E6840F996050C94AA740686" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\Func1.h" - "TargetName" = "8:Func1.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C4A157925824371A0036E03B719B89F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionPath.h" - "TargetName" = "8:ReactionPath.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setBounds.m" - "TargetName" = "8:setBounds.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CDB43EBBFF14ED58EA458CC84B18F9B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_IntStarStar.h" - "TargetName" = "8:vcs_IntStarStar.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CFA6387302F446AB7938595154FF208" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.xml" - "TargetName" = "8:gri30.xml" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3D56811387944E55AD39C984228C4EAB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\insert.m" - "TargetName" = "8:insert.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3D5BF771EBBC4AF0AA84C1E114FABEE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportBase.h" - "TargetName" = "8:TransportBase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3E35E9D3EC6141BBA820F7D01B815B64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.py" - "TargetName" = "8:sofc.py" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3EF615A4DD26446799672090D51EBDE8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3F96D57E8F9E461F8C90E0ACB1C937D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setMassFlowRate.m" - "TargetName" = "8:setMassFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\dustygas.py" - "TargetName" = "8:dustygas.py" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FE261F2E167434D804087B6019EB309" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silane.cti" - "TargetName" = "8:silane.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FF4115C0C3E4C1686E79FBDDD2387B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\private\\reactornetmethods.m" - "TargetName" = "8:reactornetmethods.m" - "Tag" = "8:" - "Folder" = "8:_EF7FFF45863048E0BAC8024E5E97D77C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_403EF1958EF24BAC9D6D715D0A993803" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_406AF99237D3409BB85917A5A60F74ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_40E56E51E02745B4AEBA40660CEC686A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\Stack.m" - "TargetName" = "8:Stack.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4112A1F6C299475E8562339C3C38AA30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite3.m" - "TargetName" = "8:ignite3.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_411BB46D848848E492899FDC17C2D1CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\flowdevicemethods.cpp" - "TargetName" = "8:flowdevicemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4144EDA2CE1A466F80088CF6F5482CC0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\MultiPhaseEquil.h" - "TargetName" = "8:MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_41915DD244F142089CE3793E90B3DF12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_41BB99990E1246928D44C3F17942116E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setID.m" - "TargetName" = "8:setID.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4207771E67BA4E4794A2397BE181FFEE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Mu0Poly.h" - "TargetName" = "8:Mu0Poly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4254D2D0022C4F1EB474B3635BDB1266" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_426E85F25D874E3F8F14D31E41AACF51" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42A0DE2343CF4D5FB768588C28368E2F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByName.m" - "TargetName" = "8:findByName.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42CE73EDA2964A82BFAF73C2CB6E4B7D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42F68AC09DC0410C8B66213635F5C982" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Species.h" - "TargetName" = "8:Species.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_436F32BB3B714A24A6B5FD1BC342A9D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_43C69E8F23BD4919BB63BD40909B3759" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut2.py" - "TargetName" = "8:tut2.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4401025D0D424A86B6C25A9B34792A95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Valve.m" - "TargetName" = "8:Valve.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_442F1B94835E4D329C9233176A3165FD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44312EB878254560A66978A2E8304A92" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44512354EA8C4577A9085C81B028A63A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Tsat.m" - "TargetName" = "8:setState_Tsat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4479546E1AAE44FFAEFC0A710BA2E8FA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\resid.m" - "TargetName" = "8:resid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44DD06CC20DF420A998E2F1D0B980A99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_f.m" - "TargetName" = "8:rop_f.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_450EF4722F9B40F5A7A85BCA48C2CC20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_451FADB3D70145F9BF8D235E092B637A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\transportmethods.cpp" - "TargetName" = "8:transportmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_453760704FC54E5B9D98DD1CCD79BDDC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4555B1D563634B6AAE88E0051E34DCE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_46482802B89A4F9594C4C39CF0441C65" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_471DA45E05AD445EB7B143657DB4688C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\transport.h" - "TargetName" = "8:transport.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4761AD8D69E841E298EB859CE92727BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS.h" - "TargetName" = "8:PDSS.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4783AD3526B547709409884B6091E0B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_47F3CF4BEA29482B95C1AFFF8F6C8145" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\private\\reactormethods.m" - "TargetName" = "8:reactormethods.m" - "Tag" = "8:" - "Folder" = "8:_D663477510C5436ABAF316F6D1E24D8B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_480527309EA14538802C74D4B190DBBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A22C4B2BF8947AA8789A8558BE2F728" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SemiconductorPhase.h" - "TargetName" = "8:SemiconductorPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A34080C008B4F63A073D329C0B47ECA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\flame_fixed_T_blessed_0.csv" - "TargetName" = "8:flame_fixed_T_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A677774412940DEAF6AF1EDC27A3C58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\cleanup.m" - "TargetName" = "8:cleanup.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A76C0FA9CF84058918F0E1F8126D049" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GRI_30_Kinetics.h" - "TargetName" = "8:GRI_30_Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A9D96662A6C48C980D6FCCABF7CFE20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Nasa9PolyMultiTempRegion.h" - "TargetName" = "8:Nasa9PolyMultiTempRegion.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B3F9D28B70C4E339662B2029BC4027B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B60DDE68DB84E76B59AC82DD6A48B63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\CVodesIntegrator.h" - "TargetName" = "8:CVodesIntegrator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B9C0B2304BF45D3B6A94AB1ABEF6910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\zerodim.h" - "TargetName" = "8:zerodim.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4BB20697D6B74F4C8917A9D04AA4A240" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\mixDiffCoeffs.m" - "TargetName" = "8:mixDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4BF0C48B45924AF1ADC6B12A5E6701D1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\funcs.h" - "TargetName" = "8:funcs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4BF9981AB5684655AC520EF2C245AF5C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\AqueousTransport.h" - "TargetName" = "8:AqueousTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C18112956A24BF6A1BF387E433469DC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\write.m" - "TargetName" = "8:write.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C432477911B4A8596B03914FF5916C4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\reactornet_hndl.m" - "TargetName" = "8:reactornet_hndl.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C9C4D481569458FB7B6C4535E474399" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\polyfit.h" - "TargetName" = "8:polyfit.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4CE041E0453E4088900BEF68B80427D6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4D48D12F66B44E83BB214AAFD8B311C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4D71E06EFE884CABA33151E1C5263C86" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_get.m" - "TargetName" = "8:thermo_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DCD79F33434471C82E0AF768F55ABDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\importFromFile.m" - "TargetName" = "8:importFromFile.m" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4E5E333FAEC14ABFBD58531E8DD3C26C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MMCollisionInt.h" - "TargetName" = "8:MMCollisionInt.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4E67F8AB73144D67944EE83F06E06040" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\flamespeed_blessed_0.csv" - "TargetName" = "8:flamespeed_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4EA368FFB8E84A9C88A4BEF0FAFC5A3A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4EDBAF4F0C8C401695EE60D9184C34EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\flame1_blessed_0.csv" - "TargetName" = "8:flame1_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4EEA2D8311E542998617CB07AF269FD1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critTemperature.m" - "TargetName" = "8:critTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5072AB7D92454CC39627CAE67CAD2E6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5095A6E6BF554FEDBAEF263F05DDD77B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Cantera.h" - "TargetName" = "8:Cantera.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_509B9A1248FA4683A81BBBA1303BBE71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\PrintCtrl.h" - "TargetName" = "8:PrintCtrl.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_50BE0A8057A64D38862D65984EB9CD88" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_50C880EA8AD04F98ACC7B17C25481323" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\plots.h" - "TargetName" = "8:plots.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_51E0B210177949DABBDC9E382016C5B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ResidJacEval.h" - "TargetName" = "8:ResidJacEval.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_51E2B9E78A964BD383DD8FD460AA4BEF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_521AB345758F4DE2BCCE824F6E10A19A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_IdealGas.h" - "TargetName" = "8:VPSSMgr_IdealGas.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_52519B41A4064DEEB452445FD3550B6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame.m" - "TargetName" = "8:flame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_52F34CA3B6284884A5FF333B2261DD88" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_533E20A890AF4129A378968FF67AF0A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\reactionEqn.m" - "TargetName" = "8:reactionEqn.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5359EA42B033411BA9ACEA14D4292527" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53DA7F1154AD4808A379EDAE1B4202B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53EA1C41778744F09879AEAE0BAA0233" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satLiquid.m" - "TargetName" = "8:setState_satLiquid.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53F7FA910CDC4CDEBD4257B5798B1B68" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFraction.m" - "TargetName" = "8:moleFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54138DA393504CA593F2B307AD887B57" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54161044EDBC4F718F7FEE349189D1CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\mix1.py" - "TargetName" = "8:mix1.py" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54A0EE28997D4BAFA2E782BD6448A658" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importPhase.m" - "TargetName" = "8:importPhase.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54FC3FA61AA64EA983695B64461739FC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5571BE3AECFC4E599F4A538E40620D21" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Surf1D.h" - "TargetName" = "8:Surf1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_562372D5415546AD844E25834E0DECD4" - { - "SourcePath" = "8:..\\demos\\combustor.vcproj" - "TargetName" = "8:combustor.vcproj" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5662A7CD4D8C4E5F947A6F355C20C1A2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\NasaThermo.h" - "TargetName" = "8:NasaThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_567A83C285154238BE6C478046C5BAFB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\BandMatrix.h" - "TargetName" = "8:BandMatrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_573061F4D2BC47AB86EF163F05DA0D62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5790A0F9267C4FA88EE7DF95DB07A8A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ckr_utils.h" - "TargetName" = "8:ckr_utils.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_57E6A3FDFDE34C75840B0908431790A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\FlowReactor.h" - "TargetName" = "8:FlowReactor.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_589104AC830A4577B736D1106E7955A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\eosType.m" - "TargetName" = "8:eosType.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_58EB415F05014A608F1D6B281082D92F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\grid.m" - "TargetName" = "8:grid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59166DBD45564A4195E8A079862D7DF4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59245571144542D38FEC0EC1F00503B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor2.m" - "TargetName" = "8:reactor2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_592F2DC945B24BDB801B54E965A109D6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\tdata.dat" - "TargetName" = "8:tdata.dat" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5939C6DA148E4B918D12A3F0CE7DC863" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\adiabatic_flame_blessed_0.csv" - "TargetName" = "8:adiabatic_flame_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_595064E84283443CAC06EEF5106C0641" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\mix2.py" - "TargetName" = "8:mix2.py" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59A2A6B397EF4B649D07CA5B10A1D1C8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59AA52C5E25745589B34218C6B13216B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\XML_Node.m" - "TargetName" = "8:XML_Node.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\Kinetics.m" - "TargetName" = "8:Kinetics.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A3FBC380FAF43D0AD7BDFA47871DC92" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\RxnSpecies.h" - "TargetName" = "8:RxnSpecies.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A494D5F32BD411D861645EF9D5CDB73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5AD1E279C6CD48B09715186E69A55483" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\config.h" - "TargetName" = "8:config.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5AE86752EC8A4B54BA6494A9F33FFC71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\ReactorNet.m" - "TargetName" = "8:ReactorNet.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5B27B82837184966986697D84EAB8146" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5B8BDA463997482B8E4B38A6883B9F20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5BC3883CE3F340CB8FFF56C6195A1121" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\npflame1.csv" - "TargetName" = "8:npflame1.csv" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5CF936560FF2465682DB2D4643C37441" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mole.m" - "TargetName" = "8:cv_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5D50FACA9AE548919661678B7562D727" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\polynom.m" - "TargetName" = "8:polynom.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5DFA2ECEDEB446DDA04762D262A2F376" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\WaterProps.h" - "TargetName" = "8:WaterProps.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5E55DD812945431BAFCF8E3595428F15" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgrFactory.h" - "TargetName" = "8:VPSSMgrFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5E6021DD18EE41D8BA4C00CA071A2124" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\GibbsExcessVPSSTP.h" - "TargetName" = "8:GibbsExcessVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5EBBDFD79C6D4331873E595874008962" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5F4850CA9CBC426485E4F0FCBC16C882" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\dist\\Cantera-1.8.0.win32-py2.6.exe" - "TargetName" = "8:Cantera-1.8.0.win32-py2.6.exe" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5F7CAAD1BF2A476288C013604222BBC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\FalloffFactory.h" - "TargetName" = "8:FalloffFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5F999283D3304F89AEC9879F07D2ACB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6006C6D0EC294FC39274776F6EA12BCD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nAtoms.m" - "TargetName" = "8:nAtoms.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_60571A0C1CC14E77AB558ADB65B78D30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\Nuclei.h" - "TargetName" = "8:Nuclei.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_60D94AAFB6AA45F89A490D537326B0A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\refPressure.m" - "TargetName" = "8:refPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_61151103C608408DB35D78567822421D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setValue.m" - "TargetName" = "8:setValue.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_611E4F1900564CD88F755749C3B89219" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalConductivity.m" - "TargetName" = "8:thermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_61C9DB5B055E4231B975615A8859A10A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\run_examples.py" - "TargetName" = "8:run_examples.py" - "Tag" = "8:" - "Folder" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6221061E3BD647AF89BF4AD1785DC9EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satVapor.m" - "TargetName" = "8:setState_satVapor.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6263283A4DC1424893235D92CA5C7F32" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Elements.h" - "TargetName" = "8:Elements.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6349662626C947BC91332BE085230672" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domain_hndl.m" - "TargetName" = "8:domain_hndl.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_637A29A294854BEB94243A2E2BE72725" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_63F7E804AA36436E9766AD90A1559698" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_641E5DD328FC499FA9E9E2BA97E138D6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_64BFD140F3C9407497F177F7920CF70C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_655DC211FDA743B8AAE2A254B8D24127" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\rxnpath1.py" - "TargetName" = "8:rxnpath1.py" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6693B16E7E2A4AE3ADC494334E18058F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\importPhase.h" - "TargetName" = "8:importPhase.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6725A6F15136415BB26BADDD3CF96F66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\GRI30.h" - "TargetName" = "8:GRI30.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6728976522BA4F4BBC490ED099A22916" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\WaterPropsIAPWS.h" - "TargetName" = "8:WaterPropsIAPWS.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_675DF947A58B4BAB9DCCF837D18044E9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\setCoverages.m" - "TargetName" = "8:setCoverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_67B4668A9613497EAD89E4D9D5CDA7B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMdot.m" - "TargetName" = "8:setMdot.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_67EEC6CEAEB7420BBA0A70992A33175D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\adiabatic.py" - "TargetName" = "8:adiabatic.py" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_698CE4C4A1BF440CBD28B8785A3D9F19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\flame2.py" - "TargetName" = "8:flame2.py" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_698E1FE2069C44AD8727EDCB59AFF2F4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DenseMatrix.h" - "TargetName" = "8:DenseMatrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A93CB70A0AC47D28DF27073F49C6A76" - { - "SourcePath" = "8:..\\..\\..\\License.rtf" - "TargetName" = "8:License.rtf" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A9D618F4BAD480B82EE6F7A7EBFC5F4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ckr_defs.h" - "TargetName" = "8:ckr_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A9E2F67751E4036B32A3F73F389F4B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AAD2BE4779D4141B7F3175116575B70" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molecularWeights.m" - "TargetName" = "8:molecularWeights.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AC7C33351854C93B3A9E0ADCECF0100" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\rotor.h" - "TargetName" = "8:rotor.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AEC5D1E91784853A899657570B75158" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6B4133DAEDD847D9ADB436F3A9E515BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\private\\funcmethods.m" - "TargetName" = "8:funcmethods.m" - "Tag" = "8:" - "Folder" = "8:_208069FD964F475CAB363ACBD7A943C9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6B62C2B086DE4A74ABFDB909919F3B1B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\reactionpaths.h" - "TargetName" = "8:reactionpaths.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6BB63A2172964772A16E8C5DC8FCB473" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementName.m" - "TargetName" = "8:elementName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6BF0F3B78ACB42BEB1F321B053DE8255" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D020030302F41549FD1141A91CA6BA2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_uv.m" - "TargetName" = "8:ignite_uv.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D0E6800917A4CEABC5B55639C33C7FE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\FuncEval.h" - "TargetName" = "8:FuncEval.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D7DFA49CD7F422597521F6BC18DBEAA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6DE44E9F30F44007B2E7B044619759A2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\spectralUtilities.h" - "TargetName" = "8:spectralUtilities.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6E40F711DE6E4C15977B10FEBD1145B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\addPhase.m" - "TargetName" = "8:addPhase.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6EAB3FC0E0224271BA4985CA3779D862" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\LiquidTransportParams.h" - "TargetName" = "8:LiquidTransportParams.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6F1E0DC55B9845DAB4FE758F0B54914C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\adddir.m" - "TargetName" = "8:adddir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6F68661FA8524882AF0A5D77FA5A6124" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6FF6BF505F0442DF81B97A7B0DACFF53" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\gridPoints.m" - "TargetName" = "8:gridPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_70297F7EB1434F9FAA59A5A015747606" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Kinetics.h" - "TargetName" = "8:Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7086E515306342B7A4A3EB7E47148FEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_70F7102F07A84B8DB4E3D5FD338F5540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\MultiPhase.h" - "TargetName" = "8:MultiPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_71188FBDBE8C4C52A89AFDD622B108B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PureFluidPhase.h" - "TargetName" = "8:PureFluidPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_713B640959AC45A78E7B9AE581F86E14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropies_R.m" - "TargetName" = "8:entropies_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_715760DB29D349BC81FFA61C5AE33F17" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7189BBF81A8B46F596C2D94D52CA15DC" - { - "SourcePath" = "8:..\\demos\\NASA_coeffs.vcproj" - "TargetName" = "8:NASA_coeffs.vcproj" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_71FEE454B6604E2592820EDDBF4B9B3B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72C19E279C1048D59F0DDED03719FF90" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesName.m" - "TargetName" = "8:speciesName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72F9F17B043C4818960ED80D5809861A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\KOH.cti" - "TargetName" = "8:KOH.cti" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_73514E9BC5F44C509C562E01E8A958C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\nChildren.m" - "TargetName" = "8:nChildren.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7371B6545BE04A179D3611DBA99BC2CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Phase.h" - "TargetName" = "8:Phase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_738E966D4DA74FCE8C40B58983F4DBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\Interface.m" - "TargetName" = "8:Interface.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_73F2A9908B3D4174BFE10B56DECDF6AF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\CKReader.h" - "TargetName" = "8:CKReader.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_748B480FBFE048E8908EF0D5DC978E87" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_defs.h" - "TargetName" = "8:vcs_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_749CE2B462D64C4D80F72A3266FF5844" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\Makefile.install" - "TargetName" = "8:Makefile.install" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_751FCF7F6799471992B6C1D080421B25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_75BE33EC2FDD4D92831EC94E3583F2E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\stflame1.py" - "TargetName" = "8:stflame1.py" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_76175107E4CC4459ABF6F887224C85F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactormethods.cpp" - "TargetName" = "8:reactormethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7631AE376A6E4745A31A258B2EFEBEF7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_764D7127961644B186D3F90292091805" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setTimeStep.m" - "TargetName" = "8:setTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77579BAF22FE4F6BBA6F6E55C2227394" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77A9AA9EC6624BD592C9D29EC6F94989" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setParameters.m" - "TargetName" = "8:setParameters.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77EAFF9FBF464DF08EFF37113E7DFC96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conhp.m" - "TargetName" = "8:conhp.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_788EDA9BF8E84FAA87DB7C2751076A9B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78A88A902EE84766911446EF648B4A20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorBase.h" - "TargetName" = "8:ReactorBase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78CF2DC24832474C9EC5304ABA596D6E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\char.m" - "TargetName" = "8:char.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\xmlmethods.cpp" - "TargetName" = "8:xmlmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78EAF772B5414C25BD4EB77E1CE069A4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_species_thermo.h" - "TargetName" = "8:vcs_species_thermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_793996EB3E1F479CA275A7CEB5851658" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_795887D785084824B7284296DC74B527" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_79674E6058F048B1B7D3CFFBCBC41561" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setValveCoeff.m" - "TargetName" = "8:setValveCoeff.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A44C47D4CAD464A97B0209D14C65139" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A639317418840CC95575AFDA89539F7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\times.m" - "TargetName" = "8:times.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A9AF6339376421580BF6E8028871929" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7AE8B40AFA7241769B5BE31427ED582B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Contents.m" - "TargetName" = "8:Contents.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7B7753AD699149308A9D8CED65455D7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentIndex.m" - "TargetName" = "8:componentIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7BE4FD7D976D4900BD24BD9AB7501E99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7CC6FCB9F695423782EC53DADE5D585A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7CDF724656054425BFB271F06BD2367C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_ConstVol.h" - "TargetName" = "8:VPSSMgr_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7D3DAEB7E7C647309752BD3A02876B72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\coverages.m" - "TargetName" = "8:coverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7D867A3EE9034A2ABB13B35762290436" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Wall.h" - "TargetName" = "8:Wall.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7DD2BAB195754859931B7B5AE308FAFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7DE48AD20C384ABD9117F64B463DAD1F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E12BAE0A2924E5B83533AABB0BAC4DB" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\liquidvapor.cti" - "TargetName" = "8:liquidvapor.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E40B44934374E2C986A8908F00523D8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ImplicitChem.h" - "TargetName" = "8:ImplicitChem.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E6FC70ED43A4A3293D06D67EBA76D30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\combustor_blessed_0.csv" - "TargetName" = "8:combustor_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7EA80C1EF9194C0B8790BBFE6CFF7C10" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\IDA_Solver.h" - "TargetName" = "8:IDA_Solver.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7F2FA130741D4EC0BE2D86966108FCDD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\RxnRates.h" - "TargetName" = "8:RxnRates.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7F82322C27494517A818285E796783B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7FC1EE2D828D4E0C9A209479895AE0D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\private\\domain_methods.m" - "TargetName" = "8:domain_methods.m" - "Tag" = "8:" - "Folder" = "8:_D75DB80C0EC34E90A1753028F279B4CE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8106318CEF394350AED3B89BE5973CD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\SymmPlane.m" - "TargetName" = "8:SymmPlane.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_812FFA9EA6DC43FA8D244219CD7096F8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_81812B7D110C414C960813023A134932" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\multiplier.m" - "TargetName" = "8:multiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_818FC04B27FA48F991F1F27AF1A02D2B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\NasaPoly1.h" - "TargetName" = "8:NasaPoly1.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_82CA2F512C5343BDAB3341734D58FBFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8316AAAC7D124D08AC76B1E9B1B71597" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\AdsorbateThermo.h" - "TargetName" = "8:AdsorbateThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8354660D2436459FBA8CB92DB7B6E337" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\concentrations.m" - "TargetName" = "8:concentrations.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8392F052F9604AD6A99C28412715DA30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\SquareMatrix.h" - "TargetName" = "8:SquareMatrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_848A110B76D949EDB0ADED7CE6454C31" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8549950E280A4786AA6D4BDC9AF44DFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_net.m" - "TargetName" = "8:stoich_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_854DF9ED3FF741069B2D162A049D5E64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85C910D16AEF4A4C9569503ED54C2E97" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85D870ADC88A4F87A4AD54AC91BE3F54" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\stoich.py" - "TargetName" = "8:stoich.py" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85DB813C30EC48A8A5B8C91E10645CEE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\SolidTransport.h" - "TargetName" = "8:SolidTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8621C91C5A2D4D9EA50AED521E7FB7CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8644F7E4286B44BF849798AA1F3EF62A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\stringUtils.h" - "TargetName" = "8:stringUtils.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_86801790ACD14519AA60F61CEE1E1518" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87132C070E1540D8A4B033B0E98880B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\private\\mixturemethods.m" - "TargetName" = "8:mixturemethods.m" - "Tag" = "8:" - "Folder" = "8:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8729B2D3CFC043EAB78F286D76787B78" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87399508B62F47D0BC5E993FD3590D0C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\XML_Writer.h" - "TargetName" = "8:XML_Writer.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8768926E874F4BFA9F36BBCC563882F3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_878CBA68A74A4569983B332DCCEEE813" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\LatticePhase.h" - "TargetName" = "8:LatticePhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87CEEEEB6DBF409FACD5794BCBD35B3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setupGrid.m" - "TargetName" = "8:setupGrid.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87D616A7501545E899208A74F7D28235" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\solveSP.h" - "TargetName" = "8:solveSP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8801CCC3E95F4B098645DB0BF445E0F1" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_gas.cti" - "TargetName" = "8:nasa_gas.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_883D69622DD84D3A8A0D79D522CDA96B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mole.m" - "TargetName" = "8:gibbs_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_883ED26352B04EDEAD89A3CF9C86A55D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\PropertyCalculator.h" - "TargetName" = "8:PropertyCalculator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_88C7677DFAD94E838F62E0F1663FA36A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\NASA_coeffs.cpp" - "TargetName" = "8:NASA_coeffs.cpp" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_896518E51E604EB388922C7AB451EA56" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPStandardStateTP.h" - "TargetName" = "8:VPStandardStateTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_89B32FBB4FF441CFBCF0F830E202A7A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\surfmethods.cpp" - "TargetName" = "8:surfmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_89F1C726748E4E57ACFDFC467114BD09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mass.m" - "TargetName" = "8:entropy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A0AEE06B352402FA6E6C5A73E042713" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ConstPressureReactor.h" - "TargetName" = "8:ConstPressureReactor.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A432F8B24A842C0A70A2D8FD906E798" - { - "SourcePath" = "8:..\\demos\\kinetics1.vcproj" - "TargetName" = "8:kinetics1.vcproj" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A44A594199C4334B78F3AA5D6532ADD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\xml.h" - "TargetName" = "8:xml.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A5883FE50804063BBC8EE8DA9BE78DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\saveSoln.m" - "TargetName" = "8:saveSoln.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A9B2D52CB344031AF51FA1589C12A9D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Element.h" - "TargetName" = "8:Element.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8AB8441158004A009E974813884A8FDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8B0D72F9F1AE422C81E4923414EB4C13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8B6199C9EA65475D9FC6C0CE792EA501" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon.cti" - "TargetName" = "8:silicon.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C16EDF915404D23BB491F51467D0612" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\WaterSSTP.h" - "TargetName" = "8:WaterSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C7D8CEB11024B759FC6F809723ADF7A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxisymmetricFlow.m" - "TargetName" = "8:AxisymmetricFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C7FD926CFA648FB9CE0ED24957F591B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C9645906D2B4435BF0DDC85F14F5CF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentName.m" - "TargetName" = "8:componentName.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CB8ABF1BC42493F8C6451072245546C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CCF6467ECF34EE59611670E3645C719" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\Domain1D.m" - "TargetName" = "8:Domain1D.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CDB9C24D5594BB2BEC1EE74C8FED863" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Reaction.h" - "TargetName" = "8:Reaction.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D346FD7000B4F0AAF57691DB6BD9CDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFractions.m" - "TargetName" = "8:moleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D3C554266D94991816CFFDB66F29AAE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite.m" - "TargetName" = "8:ignite.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D419E40A1674FC9A198BCD3410D643D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Reservoir.m" - "TargetName" = "8:Reservoir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9038E6B538DE4653AF9E77498DC5C9ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setMaxJacAge.m" - "TargetName" = "8:setMaxJacAge.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_904FCD6D55B842029CEF52AEFDEA4256" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\global.h" - "TargetName" = "8:global.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_907955714C5E41C3A0C82F4633DEBAC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\constants.m" - "TargetName" = "8:constants.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9084333D5B164E6FBDFA7096FCC75845" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\air.cti" - "TargetName" = "8:air.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_910E00C9C1E6469BB7A10318D60163F9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS_Water.h" - "TargetName" = "8:PDSS_Water.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9124D54F67494EA18B08E5CCB0DA12B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\npflame1_blessed_0.csv" - "TargetName" = "8:npflame1_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_917A158208544EE3B58F022E82B35395" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_91D267E7F9ED49DDAAF7222744E6628A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine\\Makefile.install" - "TargetName" = "8:Makefile.install" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_928A4CF19A3E4474AA4EF038E37FE2B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DAE_Solver.h" - "TargetName" = "8:DAE_Solver.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_92A6D3125FA44E7B8795DE4EE0D738BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\save.m" - "TargetName" = "8:save.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9315EDEB72EF4E0799CBBD629C797E65" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_931815CAC9E94D25949A7DBDC05A5E09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\logger.h" - "TargetName" = "8:logger.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_934D9F093D1E4D64A3E1AE1B319163A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_General.h" - "TargetName" = "8:VPSSMgr_General.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_936D7ED327F842769055274860C7B7CE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr.h" - "TargetName" = "8:VPSSMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_93900A98FABF44F5BE2F6F23E3EDA13A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_set.m" - "TargetName" = "8:kinetics_set.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_94F7E346CF344C0291219A51568B2A11" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ConstDensityThermo.h" - "TargetName" = "8:ConstDensityThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_95518B1185B344D8A9E17D449E22A07A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_955D5137DD3645A68F22AC7081F4BBD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\flame_fixed_T.py" - "TargetName" = "8:flame_fixed_T.py" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_95AD84099D86441F9B0C251039B1A63F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\IdealGasMix.h" - "TargetName" = "8:IdealGasMix.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_966477D37CF5451993EFF07CFB2EE25B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\isReversible.m" - "TargetName" = "8:isReversible.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_96CCEAC6BE924D6AB858949535654A72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctfunctions.cpp" - "TargetName" = "8:ctfunctions.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9742F8FA66744C10BDA33C445BB1B5A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97AB3E7B353E4703B550348C63AEFC2D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97B185B78C154874B77D2049B3300B41" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Oxygen.m" - "TargetName" = "8:Oxygen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97C3AF757D4E47FAA20861128A24C4C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97E864DEE6A144A78B68D9A3BE9A0413" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\geterr.m" - "TargetName" = "8:geterr.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97F452B2E24D4B78B4AB754AAB4D9247" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97F7FCC94E42453B981D376F37B97503" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\critProperties.py" - "TargetName" = "8:critProperties.py" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_987750730309466A9EC1C2E3A5B1D20F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_98A1AAE4D6A54C8697F75F0890873F23" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SurfPhase.h" - "TargetName" = "8:SurfPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_98AF00ED289F450889C13394489C3D4B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\StFlow.h" - "TargetName" = "8:StFlow.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_992BC758B7374D8D9CA69B550F538255" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportFactory.h" - "TargetName" = "8:TransportFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_999E3B46B59C4234A7124019401DB7B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\stflame1_1_blessed_0.csv" - "TargetName" = "8:stflame1_1_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99BD8AC4084D439CA80816A89387CF06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\phaseMoles.m" - "TargetName" = "8:phaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99F4B3534D1A4C88BFE4FB5D2F216E23" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\plotSolution.m" - "TargetName" = "8:plotSolution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9A1598ED1AED4AF7BE7E8B3C1839F085" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\mdp_allo.h" - "TargetName" = "8:mdp_allo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9AD65BFB57C24804AF9B53D18E3051AD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9B587B77A381433887EC3C60A2DEEC56" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9C0C04F635C34CAAB690617751FEF9A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9C83B54D3B124108AED04884A3931252" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\MultiJac.h" - "TargetName" = "8:MultiJac.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D045060258445C7988DB84395305E71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D6C72386A0B4D3489A13633E229F95D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setArea.m" - "TargetName" = "8:setArea.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D9C52DB234A43C88C442298E232C316" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ArrayViewer.h" - "TargetName" = "8:ArrayViewer.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9E2FD424808A4D3A9297C8DE4EBF6A52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9E7A52340F9643268D1F2F8864729809" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\run_examples.m" - "TargetName" = "8:run_examples.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9F0C5F7640E84C648A16A5663DC11CF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\write.cpp" - "TargetName" = "8:write.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A00E186E9C8E4BCD92EEF18A7870AB64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\wallmethods.cpp" - "TargetName" = "8:wallmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A0858150B00A472BA6EAE71AEBABDE58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setEnergy.m" - "TargetName" = "8:setEnergy.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A08E2857F1B1474E9AAF6D683CC3A7D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A0C6574C5F6E41E18AB6AF904617B8D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\CKParser.h" - "TargetName" = "8:CKParser.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A0F47D115D1140D78EA15ED301A96FDF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\multiphase_plasma.py" - "TargetName" = "8:multiphase_plasma.py" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A11208A3D61940228E848C672615C531" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut5.m" - "TargetName" = "8:tut5.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A1A7D85419B04E1892896FD2723CBE05" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\minTemp.m" - "TargetName" = "8:minTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A241F7A927984443A3BB7B186910ADED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\InterfaceKinetics.h" - "TargetName" = "8:InterfaceKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\.cvsignore" - "TargetName" = "8:.cvsignore" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2B810BE7C004166A16F019DFEBC09A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setKinetics.m" - "TargetName" = "8:setKinetics.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2ED793453A54C92AD356FF69DBFAFF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2ctml.m" - "TargetName" = "8:ck2ctml.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A386FFD174A848B8A6383A013CA12077" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPhaseMoles.m" - "TargetName" = "8:setPhaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A3D6752BC31B442CA999E19F8AA5B2E5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2cti.m" - "TargetName" = "8:ck2cti.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A4C093C7C647401E895109DA2F564C52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\child.m" - "TargetName" = "8:child.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A5136AB1792B4B98937DAC7FD6AE4E90" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ctexceptions.h" - "TargetName" = "8:ctexceptions.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A513873E6AEC441CB417942FBA4FE3A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmethods.cpp" - "TargetName" = "8:ctmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A52F55B639B6498B993D0C8831EC29A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A56B4B64A8E2482883F4F76F278103DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A5898A75EFDA4A008CE657485600DB0F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\adiabatic_flame.py" - "TargetName" = "8:adiabatic_flame.py" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A5965821A5034D3CB9417024DA48CF5C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A6399AF77EE147919D73E720D70C79FF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\gasconstant.m" - "TargetName" = "8:gasconstant.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A691E3B32AF54F4AB5F4B48577183263" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A694168142B64AB28E79B5E6E5357979" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mole.m" - "TargetName" = "8:cp_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A6CD4A6404154996835A7D9B2301BCFF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7C06AF14B3343C09C52E321CD45D0A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor1.m" - "TargetName" = "8:reactor1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7F216F3691F4406AD4BF685C2009EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut3.py" - "TargetName" = "8:tut3.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A8313B076DCE4F47BC5AB1C18D54D1E8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A84BEECAB2D34EFCA56FAE2792F51D7D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\KineticsFactory.h" - "TargetName" = "8:KineticsFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A88814C184944C9FA3E00A2DE301BB17" - { - "SourcePath" = "8:..\\demos\\Rankine.vcproj" - "TargetName" = "8:Rankine.vcproj" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A8BE7E9B8E89418B9C209C26C2481E52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionData.h" - "TargetName" = "8:ReactionData.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A932A0AF2C944F8F9067A24C25B978CE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GasKinetics.h" - "TargetName" = "8:GasKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A95FA829E1D342E0BD407CA2FF074E9A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\MolalityVPSSTP.h" - "TargetName" = "8:MolalityVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A98B9A585D4F41858169AD80172314EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\onedimmethods.cpp" - "TargetName" = "8:onedimmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A9E3A786A2954BC687EB209593DFAA31" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\kinetics1.cpp" - "TargetName" = "8:kinetics1.cpp" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA0F97AADCE24AC29EF73E7D6C696C54" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA23BF6053F542538AF0B7FB48C0B4F4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\adiabatic_blessed_0.csv" - "TargetName" = "8:adiabatic_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA6BB20D43F142F693E09AB9671A7F46" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA7D54EA12024486AA1ACD45D323E74F" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.cti" - "TargetName" = "8:gri30.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB701B636CC24D9F9CAA71C6B897E7AF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_DoubleStarStar.h" - "TargetName" = "8:vcs_DoubleStarStar.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ABE7E862C38241F19744114841629864" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE01A18492C447D89BA1FE02869A18DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\equil_Kc.m" - "TargetName" = "8:equil_Kc.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE235390D3E7456BBC816F28EF0EDE5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satTemperature.m" - "TargetName" = "8:satTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE6136D7D3F341089B23CF2FE032F852" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\flame2_blessed_0.csv" - "TargetName" = "8:flame2_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AEC8DE39CE7B4849B1AC9407148408B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AEF2EA186F5D4A0486766CEC08F7A180" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AF2F612EC55F42C181F990BB5BF85D09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\soundSpeed.py" - "TargetName" = "8:soundSpeed.py" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AF505C309B83425BB0ACBC40586DC467" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_types.h" - "TargetName" = "8:VPSSMgr_types.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B0990FEE057B4CEB8E819D4F36FC023E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFlux.m" - "TargetName" = "8:massFlux.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B103E721182F4DD6AD7F65CF565F83C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\EdgeKinetics.h" - "TargetName" = "8:EdgeKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B16017E037F7472DA99F97FA0994567E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\ratecoeffs.py" - "TargetName" = "8:ratecoeffs.py" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B25E14F3380641BFA793B8AC5538DE69" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B26DE6FA1DBA4CD7A54798EFD42761C7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Reservoir.h" - "TargetName" = "8:Reservoir.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2C4715A10D6448C8785A77EC8E23AFB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\plus.m" - "TargetName" = "8:plus.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2E109695C4F4E329F991DAB91EC054E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\piston_blessed_0.csv" - "TargetName" = "8:piston_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalDiffCoeffs.m" - "TargetName" = "8:thermalDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B310C19F9C7F4CE6891A34139EB0D630" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut1.m" - "TargetName" = "8:tut1.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B3217183190C4EF5AA058E2F2DD49E5B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B34D82DAE3934AE8B7A86ADC89132428" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_set.m" - "TargetName" = "8:phase_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B37B9EC7F5E24483ABF63844CB762A5D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solve.m" - "TargetName" = "8:solve.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B383C9B0D56149A18C3933E52A659729" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\private\\trans_get.m" - "TargetName" = "8:trans_get.m" - "Tag" = "8:" - "Folder" = "8:_3FCDEC5F15154A079645D0817951A946" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B3B4F39E240F4463BB09201FC8B32CD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\reactor1.py" - "TargetName" = "8:reactor1.py" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B42AB8E6DFE545408B9760D0D10919CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc_blessed_0.csv" - "TargetName" = "8:sofc_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut1.py" - "TargetName" = "8:tut1.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4FB5F4843A24E41B7FADE7050CD9910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mass.m" - "TargetName" = "8:gibbs_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4FE641E9EE14B3A98EB023B9B281012" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5F13C260D704D10A1AA9E9C428FD17C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ct_defs.h" - "TargetName" = "8:ct_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5F44ACDAC4142C9B086E996419F26D6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B6B7A55B6F78408B87B10B799DE5A19A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\surf_pfr.py" - "TargetName" = "8:surf_pfr.py" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B6BB322EEC614D6381014E64306652A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\LogPrintCtrl.h" - "TargetName" = "8:LogPrintCtrl.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B700B3135C044AE1A0E11F64951C15B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\funcmethods.cpp" - "TargetName" = "8:funcmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B74214D38A5B4B88B5E169B9E638C59B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\functors.py" - "TargetName" = "8:functors.py" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B7E71DDEC9694BB3913A5A951D071C79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_Exception.h" - "TargetName" = "8:vcs_Exception.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B7FE7CDB0F4C4BDAB730BB096498F836" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS_ConstVol.h" - "TargetName" = "8:PDSS_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B7FE86B0D0F1439F8BD9FDA7DC0BC6E8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine\\rankine.cpp" - "TargetName" = "8:rankine.cpp" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B813F357BF6E4672A6C5C6420233E416" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\npflame_init.m" - "TargetName" = "8:npflame_init.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\private\\stack_methods.m" - "TargetName" = "8:stack_methods.m" - "Tag" = "8:" - "Folder" = "8:_57614C30E82048A8B1CDA4FC95D7707F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B8531EBC9C4146A18DBDEE03537C7895" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\water.cti" - "TargetName" = "8:water.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B8DC8835383B4D81865DE6728E152C6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B90B2A45F38546C7B27A422537B6A0D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\thermo_hndl.m" - "TargetName" = "8:thermo_hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B92716F1835748778D2EA2A170A3463C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Group.h" - "TargetName" = "8:Group.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B931BA0672394A6D8134E66E8381B7D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\equil_koh_blessed_0.csv" - "TargetName" = "8:equil_koh_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B980912F97654A708BB58521244643F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\maxTemp.m" - "TargetName" = "8:maxTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9D00A7B741A4394B6D20DFBAD7B67B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Constituent.h" - "TargetName" = "8:Constituent.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9F7ACBBB03641A189D48B3F96B177AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA1757667DBF4ECE82D987268736B4D7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesNames.m" - "TargetName" = "8:speciesNames.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA434DDB92844939B4727EA0D07F28F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\lapack.h" - "TargetName" = "8:lapack.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA56A809F849463387B0C35C554D3FDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destructionRates.m" - "TargetName" = "8:destructionRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA805C53980C41769659D085C5C8E0B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\PureFluid.h" - "TargetName" = "8:PureFluid.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\multiDiffCoeffs.m" - "TargetName" = "8:multiDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BBA24149F4C04977B6A07924A49D7352" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destruction_rates.m" - "TargetName" = "8:destruction_rates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC01A169AEE24DEDB532037D3A25C69E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\value.m" - "TargetName" = "8:value.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC48260E6FE744BCB551169FC8E965F8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\IdealMolalSoln.h" - "TargetName" = "8:IdealMolalSoln.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC7DFDE6592D463B95C307DBE7305593" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\integrators.h" - "TargetName" = "8:integrators.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC7FECC38DA64F6DBD2CEB31BECB4861" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Resid1D.h" - "TargetName" = "8:Resid1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD197F0310024D04B386D3ED22B580F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_get.m" - "TargetName" = "8:kinetics_get.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD35BC44FB8F441B8E358D9D364CA587" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Water.m" - "TargetName" = "8:Water.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD9ECC0B46EC450CAF842508F8F7BE33" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS_HKFT.h" - "TargetName" = "8:PDSS_HKFT.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDB11450018647D880BBB295E0BBF169" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut6.m" - "TargetName" = "8:tut6.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BECC05E6C8EB47B68F6344A00F04C46D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BF2D5197C57A4E03833752A2F4532AA8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mass.m" - "TargetName" = "8:cv_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BFE5589963E74E2E9883E4AE5826D851" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solution.m" - "TargetName" = "8:solution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C03B6B3C637C45749F3ACF29F4FCEDF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Methane.m" - "TargetName" = "8:Methane.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C04EEE51536C4B64BB1758CBB7873B34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\private\\wallmethods.m" - "TargetName" = "8:wallmethods.m" - "Tag" = "8:" - "Folder" = "8:_978963BB80B74B24B2062E400EF7C9EC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C065BAA069514382B51E468B5A1978A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactornetmethods.cpp" - "TargetName" = "8:reactornetmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C094488877694ABCA56EEADA30F0C108" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C0D8D2C4874C4694895DE76AF8ED8E8D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\kinetics.h" - "TargetName" = "8:kinetics.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C0E4D3E9F985430CB96D8E96014865FD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C1510D42AA964597A8CB449C6B94E86B" - { - "SourcePath" = "8:..\\demos\\CanteraDemos.sln" - "TargetName" = "8:CanteraDemos.sln" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C27608223A4A46CFB21A58073E99629E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\diamond_blessed_0.csv" - "TargetName" = "8:diamond_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C357D956140243B5A87AA9011DAF1207" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\reactor2.py" - "TargetName" = "8:reactor2.py" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C3750F20EDFA48D78E02F27034D02209" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_set.m" - "TargetName" = "8:thermo_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C38225F7A000426CB7E955945C9466E0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\MassFlowController.m" - "TargetName" = "8:MassFlowController.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C4F6F46B0B0344169A6195BE5062914C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C51F790219A544D29B9BCBC4B83E1C3E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ResidEval.h" - "TargetName" = "8:ResidEval.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C54B99BA758A4FB3B844DE919B277DDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C620775E0B56481695BDA176D6BBF60A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C649E5027371431DB5A5440812C57540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut4.py" - "TargetName" = "8:tut4.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6896DE4391E40FF980A950DDE8B43D1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\surface.h" - "TargetName" = "8:surface.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6B45FFC93CC4A3F864E363E7B18206D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\reactor_hndl.m" - "TargetName" = "8:reactor_hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6F4B29F1A3B4B59A21287716572E0B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\massFlowRate.m" - "TargetName" = "8:massFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C71939C1027C4474B690DDDF4B0E8FB7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmatutils.h" - "TargetName" = "8:ctmatutils.h" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7406B26D83F4CF48E24ED78245654ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7D02D2B4C444A0C90BD6F8C6B232C91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\trans_hndl.m" - "TargetName" = "8:trans_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7FFE7D762304EA08B7376CADFF4D8C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_Water_ConstVol.h" - "TargetName" = "8:VPSSMgr_Water_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C8198F923CDB401EAF223744653A6806" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\equilibrium.h" - "TargetName" = "8:equilibrium.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C844497867604180ABCB21CF50308A75" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\L_matrix.h" - "TargetName" = "8:L_matrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C9AC5BC6DB9742B79D0BFF153CA39421" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SP.m" - "TargetName" = "8:setState_SP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CA734CBAEC8440EC8CB32AF7EF8D71AA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\ChemEquil.h" - "TargetName" = "8:ChemEquil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB3A0AE176934F52AE20A613C2070534" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\area.m" - "TargetName" = "8:area.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB46B6FEE22A4C689CB244EF428600BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut3.m" - "TargetName" = "8:tut3.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC3803859B7F43B18EBE799C9C56933F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\periodic_cstr.m" - "TargetName" = "8:periodic_cstr.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC71BE47DD434D7CA2713A9087A88C14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCBD553838A74D2AA8E5C4392EB0B6F4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCDF5C1EFB75477BB295929481C75CC7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\IncompressibleSolid.h" - "TargetName" = "8:IncompressibleSolid.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCE9C76D878344F4BF560E0136E1BCF3" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\graphite.cti" - "TargetName" = "8:graphite.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCF420B39E734D4384125DFE122E8F6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ph.m" - "TargetName" = "8:ph.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD3DBDD9333C4033AE1B724282BBBFBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\kineticsmethods.cpp" - "TargetName" = "8:kineticsmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD777AD5FF1D420DB9723E6EEC27D521" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\rankine.m" - "TargetName" = "8:rankine.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CDBE3C6855AE4501803B9EDA7BFEA691" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_net.m" - "TargetName" = "8:rop_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CEC3CD033FB94DFA8810C8142FED85B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CECCCB3C56494F61A90C39EE70F3DFC9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF28519F63C34802AB33F9342405FD3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF5084794E3343669C4337B95A9F7BF1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_SpeciesProperties.h" - "TargetName" = "8:vcs_SpeciesProperties.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF7BF165F4004E0DBBFF446A66A985DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\soundspeed.m" - "TargetName" = "8:soundspeed.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFA9B0302ABC430A9DBA2BC2132B6B73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nPhases.m" - "TargetName" = "8:nPhases.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFAF2622550E48AA9B0F502BD4022FB5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFE3C277A2DF41018E63BE547F53452D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFE69F411CF84BE7ABCD4B895EF13C62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setThermalResistance.m" - "TargetName" = "8:setThermalResistance.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D0A9D802F4924B3B8C0429DFF0D37C9E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\EdgePhase.h" - "TargetName" = "8:EdgePhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D0D86929159D4E008C467978E92A6B0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\OneDim.h" - "TargetName" = "8:OneDim.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D0E38FA5FFFD42BC9507FFC804B3B271" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D128F9F54CA949C09B3FA61A199B060F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMassFractions.m" - "TargetName" = "8:setMassFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D151A04263364A9B8005377D79AEC239" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setFixedTempProfile.m" - "TargetName" = "8:setFixedTempProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D1CD893E014F4FBE842B4B0E2CDDE652" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D200B29D2F7E429AB771E6E92961E4C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_hp.m" - "TargetName" = "8:ignite_hp.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D2176F7DD848403DBC973A3676B579CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\advanceCoverages.m" - "TargetName" = "8:advanceCoverages.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D238C397E41B4DC684CF79761C4B85D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GasKineticsWriter.h" - "TargetName" = "8:GasKineticsWriter.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D29E08866CBB44D0A548B5F8A7D90584" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\flowControllers.h" - "TargetName" = "8:flowControllers.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D2BB3D54E2B2459596E3FCC0C5648A63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SpeciesThermo.h" - "TargetName" = "8:SpeciesThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D3EDAA4023284820AFC142093DE1AAE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Nitrogen.m" - "TargetName" = "8:Nitrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D418D6CC07974B16B70C9B93970427FC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\clockWC.h" - "TargetName" = "8:clockWC.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D428726607B744478982A6F3AEBB5937" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\DiatomicMolecule.h" - "TargetName" = "8:DiatomicMolecule.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D49889111E484F5090ED91A8EFF57DD0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\mass.m" - "TargetName" = "8:mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D523D656E59A4F36A5799882AD52FE63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D53FFA2FD41F4B55B55A5F34D59755C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\critProperties.py" - "TargetName" = "8:critProperties.py" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D5E167B7033D49188854ABA54CB6A543" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\combustor.cpp" - "TargetName" = "8:combustor.cpp" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6635B71ADB94BA0AC25AF10E53EAA56" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\diamond.cti" - "TargetName" = "8:diamond.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D669B0F109D24B248427555BFC1EFFC9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\State.h" - "TargetName" = "8:State.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D68C5368AA4548E2B31B6E44C6CF18CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6F8538106594E289818596061BE2EA6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\kinetics_hndl.m" - "TargetName" = "8:kinetics_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D75087C07C804BA994309398BC48603F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\addReactor.m" - "TargetName" = "8:addReactor.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D75AC18CFD714D179B403F394FEE5C6B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MixTransport.h" - "TargetName" = "8:MixTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D7EDA76276BA47C5B427D5289E602655" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Constituents.h" - "TargetName" = "8:Constituents.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D8DE5B3E74534CEFBF787CCC4124FF6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PseudoBinaryVPSSTP.h" - "TargetName" = "8:PseudoBinaryVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D9342B2A479345D79B17511A69B5E867" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D9EFEFA2064D49EDA49FBE09DEBC3C72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA59B07FBF1F42CDB8AEF8B24809BF08" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\combustor_blessed_0.csv" - "TargetName" = "8:combustor_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA790596462048CFAECE85420D41D74F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialVolume.m" - "TargetName" = "8:setInitialVolume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA8A6A14EA7A4B87A06CA40B37404208" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB5649A025C244CCAD4CFC7607B09A28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_p.m" - "TargetName" = "8:stoich_p.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB58150AE7CE4F5390C9322D5F5E7235" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\PID_Controller.h" - "TargetName" = "8:PID_Controller.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB6C4271795545FA80082707D6121026" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpies_RT.m" - "TargetName" = "8:enthalpies_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB6D039C3ED14EE58F469C211EE0336C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\units.h" - "TargetName" = "8:units.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBC0EC09DC684F47B0DC34BF7958EA66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\isentropic.m" - "TargetName" = "8:isentropic.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBECDA96409E46C5A16D99CCCFC2E0DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mole.m" - "TargetName" = "8:intEnergy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC239E2B54624CCF8D26F85C98393DC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_Water_HKFT.h" - "TargetName" = "8:VPSSMgr_Water_HKFT.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC32635C462B40BEBEEC9176E79A9BB8" - { - "SourcePath" = "8:..\\..\\..\\winconfig.h" - "TargetName" = "8:winconfig.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC87F8DA14754002A1931C3C5DC89AD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DCE0313BBE4C4DFEA23ACDBB6863B390" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DD6D9600C356455D95BD2C44C50214DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DDCBFEDCC6144933941BE8B0EEBB9614" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE2D53C1D99340B28D76F985871A1D04" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxiStagnFlow.m" - "TargetName" = "8:AxiStagnFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE4BC3661787450DADE7B47CFFFDAFB3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE5BB9FAA411472B8901537165DFD827" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame1.m" - "TargetName" = "8:flame1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE6ED970A6634704843FC2D976DDB51F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\HMWSoln.h" - "TargetName" = "8:HMWSoln.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DEE4FC947E1543ECA3C5D0A1B5D82606" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isFlow.m" - "TargetName" = "8:isFlow.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF09D62385DE48A0A9A5E36414AAEADF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\Integrator.h" - "TargetName" = "8:Integrator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF631F75976846E58594E4C6FD1630C4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF6E93BE4C85423FBB21EA3F783E0724" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF78E69F06884ED8B21785EFA82570F8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF7C83B26513481DA856DE8F3DAEF744" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E00C0F5054204111B95C89CE4CF7CFA7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportParams.h" - "TargetName" = "8:TransportParams.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E07080A8272044BDAD3242DFA62A3AD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E0D128147681418496692C77F4B1BECB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\Reactor.m" - "TargetName" = "8:Reactor.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E148F8C2F82A48D3A68E9E2C2CDAD846" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1570450F26743789099E1D664EA2930" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.cti" - "TargetName" = "8:sofc.cti" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E18D9C95AB9747609535A99DD2D81155" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\catcomb.m" - "TargetName" = "8:catcomb.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\reactor_ode.m" - "TargetName" = "8:reactor_ode.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1E6F5ED150E4549979E0E3F9E6D2F67" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\onedim.h" - "TargetName" = "8:onedim.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1FAFCCB6A854D248F54F164889FAB3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setRefineCriteria.m" - "TargetName" = "8:setRefineCriteria.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2073E8B81F74741B1D1EA05FBDD0F79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mole.m" - "TargetName" = "8:enthalpy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2B4EF18B90E479E8D1311CBCE13431E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2DB44B0AA4245D8BFE17D1B069BAE0F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Inlet1D.h" - "TargetName" = "8:Inlet1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2DDE31CAC874AE0B9F7F9145248BE6B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\rp_blessed_0.txt" - "TargetName" = "8:rp_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E31FFA0A95B14807BA4DA5176F48A0AE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mass.m" - "TargetName" = "8:cp_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3B3CBF11A49408DA2A465DD552AE300" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_RT.m" - "TargetName" = "8:gibbs_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3DDA7E632494939B2882BD6741CFD9D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\air.m" - "TargetName" = "8:air.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3F58F53501F4CAA92527C64B08D9EBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\phasemethods.cpp" - "TargetName" = "8:phasemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E40175C04F974A7BA19133984051989B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\flame2.py" - "TargetName" = "8:flame2.py" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4171B5DBA664372BB43F3B40B2E1236" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ThermoFactory.h" - "TargetName" = "8:ThermoFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4A483565C5E40B79805552DC4B5292C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\StoichManager.h" - "TargetName" = "8:StoichManager.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4A964C652EF407CA753B3CA1219015B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop.m" - "TargetName" = "8:rop.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E54668B3A3FB42CF85A71689A715F19B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\Func.m" - "TargetName" = "8:Func.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E646FA76573448CAA4749B18614EF782" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\enableEnergy.m" - "TargetName" = "8:enableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E716C1A77B764B6697138BC0DAE3E30C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E78FD6989E1D4799AAAD31ACD43B0C1D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\FtnTransport.h" - "TargetName" = "8:FtnTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E855F8CECB234B9291EC3600C31564E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8AFB1C8F7A342D5A03F305B3E0230C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setThermoMgr.m" - "TargetName" = "8:setThermoMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8E0F24BF6014C208A93130FC1761DE6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\rtol.m" - "TargetName" = "8:rtol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8E78948E8974A1DB4C3D6E63AF58602" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\rdivide.m" - "TargetName" = "8:rdivide.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8FE474C601D4386BBB0CA9599FF45BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E90BD26B31DB42D59ABCCF0A14CCCB52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\NonlinearSolver.h" - "TargetName" = "8:NonlinearSolver.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E91E1B960A5D482C848F0DD9A292A0D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\Makefile.install" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA0930AEA1074763823B836B96A138A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\sort.h" - "TargetName" = "8:sort.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setCoverageEqs.m" - "TargetName" = "8:setCoverageEqs.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA8E4A02700F48B3A6136CD0055D6CFD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB7840FED8294FFDB3111C6B3DD32833" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Domain1D.h" - "TargetName" = "8:Domain1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB82DBEEDAE14B51840A9D7153E52BBB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Metal.h" - "TargetName" = "8:Metal.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EBB20B541FE543F7A695E466975C6495" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SpeciesThermoFactory.h" - "TargetName" = "8:SpeciesThermoFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC2FDC1A744E4A1AA4793CB10F18D176" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critPressure.m" - "TargetName" = "8:critPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC476B2533A1437FA80321BB3090234E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isSurface.m" - "TargetName" = "8:isSurface.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC5F3263FCAA48CEB25E23414F082818" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC6786EBE72E46B694D473463C72A2BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SpeciesThermoInterpType.h" - "TargetName" = "8:SpeciesThermoInterpType.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC9C8B8C68CC4B6FBF2202B0935A6396" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\IdealGasMix.m" - "TargetName" = "8:IdealGasMix.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ECA3396FBFD54A94B2DFB33B080F0D4E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ECAF852C95DD46A39B119046E569A5F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Nasa9Poly1.h" - "TargetName" = "8:Nasa9Poly1.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ECED5D161C3348B98B263CFECA0A7DCF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ctml.h" - "TargetName" = "8:ctml.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED40FDD34E984498ADC37D88B43AEAA4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\NasaPoly2.h" - "TargetName" = "8:NasaPoly2.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED67782207C047F4A5935DCE2E79F151" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\combustor.py" - "TargetName" = "8:combustor.py" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED90DA83729C417BBEAA629FC6CE1095" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame2.m" - "TargetName" = "8:flame2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EDC27F3DB4874D0B80C408E935F92FD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setFlatProfile.m" - "TargetName" = "8:setFlatProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EF07839F9BC941BA9127CF08C90303D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl1.m" - "TargetName" = "8:prandtl1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EFA30E0040CD47D995300679F7C2846B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\StoichSubstanceSSTP.h" - "TargetName" = "8:StoichSubstanceSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F01B5FE1A51E45AFBA508244A268A056" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F0281BD9BD9F406A803EEBD30E07211E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F15D7C13B4D94173A06FC05BFE08B4A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\Mixture.m" - "TargetName" = "8:Mixture.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F18978587EE441EA8B9B276B9FE566FD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\isentropic.py" - "TargetName" = "8:isentropic.py" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F1C2DC4D3F4541478F3128EC742FC67D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critDensity.m" - "TargetName" = "8:critDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F227BC16EE9F47A7BCF4A15B34565073" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\Makefile" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F2A92891BD6D4A87BB614760C33A483D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ck2ct.h" - "TargetName" = "8:ck2ct.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F2E355F7534548FA97DD0E22363A0107" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\vec_functions.h" - "TargetName" = "8:vec_functions.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F325A9398503407384F1B46B1B65BE34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\z.m" - "TargetName" = "8:z.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F33D31C689BD40F2AF95AD8905B4CA5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DASPK.h" - "TargetName" = "8:DASPK.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F3A73DE374274D23B5B71D3950610F46" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\thermo.h" - "TargetName" = "8:thermo.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\oneatm.m" - "TargetName" = "8:oneatm.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F40D33926EF24D48B642AFADF0905175" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\transport1.m" - "TargetName" = "8:transport1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F42D9F9BF66C46B3A5C9271FA5F371BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setExpansionRateCoeff.m" - "TargetName" = "8:setExpansionRateCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F47B7B39692A4CFFA8EADC42095D740D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\RateCoeffMgr.h" - "TargetName" = "8:RateCoeffMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F495A54DE04C4B39B5F52C4AA64E7060" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_solve.h" - "TargetName" = "8:vcs_solve.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4E64CA79CC5489294D5EB5751985163" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_r.m" - "TargetName" = "8:stoich_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4F48A978F924204A75079994744E641" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\MetalPhase.h" - "TargetName" = "8:MetalPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4FB2F3079254D76B2DF7DF3B7391098" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\electrolytes.h" - "TargetName" = "8:electrolytes.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F52E35C2A75341B5B07D033F7072C765" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F5B0599D33DE4EA882B0C846B85FD66E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ctlapack.h" - "TargetName" = "8:ctlapack.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F622D25373114C90976CCE00B20B11FD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\StoichSubstance.h" - "TargetName" = "8:StoichSubstance.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F6A52BC1EC8D44989142E90DB7AAD1D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState.m" - "TargetName" = "8:setState.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F6E4EBD5FFCA494C8355AF6764844103" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F70CE7A5A1844D3A99121A7A41ACAAF7" - { - "SourcePath" = "8:..\\..\\..\\tools\\templates\\cxx\\demo.cpp" - "TargetName" = "8:demo.cpp" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F81A7E5426654A1891028EF1BDDF87CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F862E9C9A48D4C569698C90E1EC6850B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8688399972140A18AEE3821A3076DA9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\Wall.m" - "TargetName" = "8:Wall.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F88CE78D01A1484A9A363ECD019F9ABB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_prob.h" - "TargetName" = "8:vcs_prob.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8CAB1B1AAE143949246B033BF6572AA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolecularWeight.m" - "TargetName" = "8:meanMolecularWeight.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8E58FC7A5A74126B5F8D78607815377" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\Array.h" - "TargetName" = "8:Array.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8FB0389B5924D9585AA8CB15F4A2BE5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ThermoPhase.h" - "TargetName" = "8:ThermoPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F9D283B3D2094812A29561F09605DE12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\DustyGasTransport.h" - "TargetName" = "8:DustyGasTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F9E5B7A73F134E42B0EE70B7A917FFE1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\atomicMasses.m" - "TargetName" = "8:atomicMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FA43C5DB9C7546E7BB93ED688744AC52" - { - "SourcePath" = "8:..\\..\\..\\bin\\mixmaster.py" - "TargetName" = "8:mixmaster.py" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBB083851DA2463CA4F1366F4904110A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nPoints.m" - "TargetName" = "8:nPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBC9FE116DDD46DEB48CF787395219C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ImplicitSurfChem.h" - "TargetName" = "8:ImplicitSurfChem.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\writeStats.m" - "TargetName" = "8:writeStats.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBFB14FD38C7494B8A4C46E34805BC91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\surf_pfr_blessed_0.csv" - "TargetName" = "8:surf_pfr_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FC806BD642A04A1EB4946516ADF8D34E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\CVode.h" - "TargetName" = "8:CVode.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FC86845237DD456CBCC89B92C093E444" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FD0456378D394DF48B3AB5BD0502EBB1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\FalloffMgr.h" - "TargetName" = "8:FalloffMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FDB8A6CE75A943ECA1F4D7DFB8F69902" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\equil.h" - "TargetName" = "8:equil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\surfreactor.m" - "TargetName" = "8:surfreactor.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FFFDE78FD53C4E159AF3540A42F61677" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Enhanced3BConc.h" - "TargetName" = "8:Enhanced3BConc.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{3C67513D-01DD-4637-8A68-80971EB9504F}:_78A5B9A56B3C482CBD8EAE207FE469D5" - { - "DefaultLocation" = "8:[PersonalFolder][ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_15DF1B45927A43108F6FD8BF7AB29E7A" - { - "Name" = "8:bin" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_554600D4C1ED49AB9B3F8AA14A61A393" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - { - "Name" = "8:lib" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DB5A91AA0717429F8150BEDF3E9C5883" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A0F7AAB1D684CA7825C61ED7C1B1510" - { - "Name" = "8:tutorials" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9EE8F68C07DC4618A6A96B6CC2F6F4DD" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0961E3795854450CB636397255DAA0B7" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD44CF949673422BAA32D14476046641" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_6458A3FFB8B14932A9224D66420736A4" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_07358AF408BA4439926F97BCFC4B2D4F" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3C5C7E20E5A44A629E7E36FC49B00666" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:MATLABCHECKBOX = 1" - "Transitive" = "11:FALSE" - "Property" = "8:_D5D9F0F73161444D859B49722CB836BB" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_5443CF3FEC1C4919A396E1213F7EE741" - { - "Name" = "8:toolbox" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6F2DCE9A4AA04C11955BD805A807D800" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EB2EB0FBE19246E88A9FC85FC50A0261" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CD16B7D343A04A8A8A960BC7DF6EA2C3" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_121EEBBD5CFE412CACD796AD0EF6FACB" - { - "Name" = "8:@ReactorNet" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D25A4392A14645B6856AC0586A697940" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EF7FFF45863048E0BAC8024E5E97D77C" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6A482636047A4CC39874C6CAC1A5EF83" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_1F3BBA95030B48589E34A16DD6877FCD" - { - "Name" = "8:@Wall" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FFC5ABCD0DFE4C64AA3A3119E28770C2" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_978963BB80B74B24B2062E400EF7C9EC" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_14F46BDFA3354434A8AFFDE6EB01D8B2" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_2069E985BE1F4CA4B39E0FF4C857A89D" - { - "Name" = "8:@Func" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BE26BC62A5E847FEB871B25C40EFE75C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_208069FD964F475CAB363ACBD7A943C9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_707701DD38634631A3D20827FC5AFA22" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3D735E99070D4A9C816814209321A420" - { - "Name" = "8:@XML_Node" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1813C288DD40450E9298CE06190DC28A" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_57DD5A7770D14DCB9F09381FB3D030F7" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B241B483BFD649A7B4FA5ADD1E48CB30" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_5980613DA74C49ABB29CF7F4DE8AB8E7" - { - "Name" = "8:@ThermoPhase" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FC38217CD0FB41838729EA5473177414" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_447495742352464D81706C05F55520E9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_115FA39FE4BB4AF98CC450D2C74A832C" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_69556754D0874D01BDA2D9D85F5828AB" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_57FC5782E53444E0BDBD66445370F485" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_978580DBC0A748D790712BBA0B9F1CC8" - { - "Name" = "8:@Solution" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5F863499C9764D489DC234E3476D8220" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_9B31506F5B4F443F832FD3FAB7762E64" - { - "Name" = "8:@Mixture" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5B0B4B544BB7475F8D95A7351BBB5D9B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D683DE5C1C054AF3B3A8A608F8739204" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A330CA11C4BC435B95427DEA56FD503A" - { - "Name" = "8:@Kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_38EC5A2AC0344396A365C0523516B935" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_56A5C77F96C948C3BE617599F99A4FBA" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8F8646357F9D4DFAAEEFB9D3E80E74AE" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A50BD9722A014DC391E5474262EFD7BC" - { - "Name" = "8:@Transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9609451B0BA44ECCBD59EAC256BB8FF6" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_3FCDEC5F15154A079645D0817951A946" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0AE702ED16684776A58F4024099D5B16" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B73A689A75AA49FE9E67D8BC3DE5A587" - { - "Name" = "8:@Reactor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6491ED6A6FD4419EA3AEF94895C5862D" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D663477510C5436ABAF316F6D1E24D8B" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6B68DDB908574065B114EE838055D3A9" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E30E67F5102146D39202747276B874EA" - { - "Name" = "8:1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BEB5629A74864C33BFBE85775BDF46E9" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_45FC9BD502EB46D8A920CD02D93C3848" - { - "Name" = "8:@Domain1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C30A197B3595470A87A00E99059B4FC7" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D75DB80C0EC34E90A1753028F279B4CE" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_68A85998C36844B181D4B77A3DDF4225" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_BC662E8F11194A61A8CAA2E8666C6C9F" - { - "Name" = "8:@Stack" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8AF1FDE1D7B24A50BF4A2F6F6E8F680B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_57614C30E82048A8B1CDA4FC95D7707F" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2E20167746334C26B769B9EBA08C08DD" - "Folders" - { - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F7AA24452AD2470EBD83A85CC5DB9C43" - { - "Name" = "8:@Interface" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D74B7A317604458496D56195B17245D4" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_653D9B351BDC4DD6B1AC64034FB114A1" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_12B0318E56C647B4B7CC27D5344E95EB" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F91A2400AD764EFB800A2F62CE34346C" - { - "Name" = "8:@FlowDevice" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD955CAF1DF74ADD917984BE9557C60F" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_A0CD6A9C146B405D99355A87F6B7C47D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1980519B8CAC42038A2C793D12949EB2" - "Folders" - { - } - } - } - } - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_459DD0AF25C34F349354CA380B58D1B1" - { - "Name" = "8:include" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_864A875C734E4F7993EF599A792089AF" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0A794889F1894108860FAF5B5C19F2FA" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B07B49F047FC40469C9073136E5D2AFF" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_E012FB4758FF455E92C3DDA25362EAA7" - { - "Name" = "8:kernel" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_352275D48884496D8522F3217A13F3E6" - "Folders" - { - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_46C8AF45EE22482E8A160E14A2420774" - { - "Name" = "8:data" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_64E07C739FB4417C9F46987FB8046C1D" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B5AFB668A86B4992A1E2A55DAE0CAA16" - { - "Name" = "8:templates" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_62F15E8A639B40A680E06DA189388AC0" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D97B8D9B527F4A4DAEE139297609ECEC" - { - "Name" = "8:demos" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_70CA7BFF862F455CABE89474DDC8C8FC" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_1E1FE4A0C7774B9D9C081E2DB4033D90" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6D0630638BBD4E29B840B324B4436948" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0890042B73B444F889F091DA6D68E910" - { - "Name" = "8:surface_chemistry" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7FDCBB9A8592442FB42D4EAC7D3E53D2" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_30C49B8557964DAAA5648B72B486BC0B" - { - "Name" = "8:diamond_cvd" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CD5998C3AA514C3F9D8E350B7AF5182F" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A189A372257B4D2C98AC054F152082AD" - { - "Name" = "8:catcomb_stagflow" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_399B14FE027144C088EA5D752CD26E05" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_1616A26BEFEB4172AA40AC8ED7A8DC71" - { - "Name" = "8:liquid_vapor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C2F7106B0C584CBFB1CD9EAE69B563FA" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - { - "Name" = "8:critProperties" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_448EDC4CC83B4FEDADF2588F31B25388" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_6EE0A973C3154AF889BC747660A3DDA6" - { - "Name" = "8:rankine" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0FD260E59E584BFA9D24F853D4A45C4E" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_16393A44970E4B7FBB528A637EFFCF96" - { - "Name" = "8:transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_562525EA42174B63807DD27EA3AAF879" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A41B4ED54254F0BBA9CB3DDBA13165A" - { - "Name" = "8:kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F799EEA7F7224C0A855895023F8B3072" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_782A3716E7024C07B7E1786A6FE5D350" - { - "Name" = "8:reactors" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A52D5AC4A0DA4CF483D3E640BC1A5DA0" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_41BE50E702034B8C9B8D2A4DE46C52C1" - { - "Name" = "8:reactor2_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6412A81825374E6E826D1B646E96CE24" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_862D1191D2FA47FDBFB0D20643AE2810" - { - "Name" = "8:piston_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_99B345421BB245F58B4DA9FB52ACE08E" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - { - "Name" = "8:mix2_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4E58B33F5F65432689D27BF980D3557A" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B7CA7580B6FE4EBCAC388C5D16971D37" - { - "Name" = "8:surf_pfr_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9F36D7A44DE545179026B4E34D467D59" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_CEAF34861F46422B868255409BD206EB" - { - "Name" = "8:functors_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B2447D4E250A49168D4862CB0FD92145" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_EC6DCD68540E416F9C134117A56B0A60" - { - "Name" = "8:combustor_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BEDF13CB9C8D4564BBC43FB231DE09C4" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F38CA433DA0045498BDE87595F79F7ED" - { - "Name" = "8:sensitivity_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_75AE7C55505B4136A868BE9DB0C833E4" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F5B8CA7CC3804769839EBE6C8689F404" - { - "Name" = "8:mix1_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DDFF0DEC413C4781B8ADD5B64F0BFA8B" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_FFAAB2E584E943F89B7A8A54812FF5E0" - { - "Name" = "8:reactor1_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8C062A19E942435296F9D104811208DE" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_92296F507AEB4419BC7BA3118B2C6409" - { - "Name" = "8:gasdynamics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D902ADED94764BD5A6F420077708B493" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_168B35477AF641A0B1FC3CA609528ED8" - { - "Name" = "8:soundSpeed" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FFDA88FFC7DF473A98F62C584558AAA7" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - { - "Name" = "8:isentropic" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_012C7C24E9854546A6D9100EAD67751F" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_94D018F7686D4C8690B65C153B0E887F" - { - "Name" = "8:misc" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1D24D49031EB459B974D7D13D5644D3B" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_96B5AA517B204067BBA02150611C7875" - { - "Name" = "8:equilibrium" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8D8BB4AF59F64F88B994C19CC5EB233C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0976E47E00BC4F85A2393D8678A18D6D" - { - "Name" = "8:multiphase_plasma" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_67362A358639403EA42173D586FD992C" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_4BB35C35F43D41B3B6DB55DE61916248" - { - "Name" = "8:stoich_flame" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4DB8FE1DA6464EE087D1C85D09CCB548" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_8E4436C4886441AE8BB0E460DFA8BE7F" - { - "Name" = "8:adiabatic_flame" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7989BD54B4E641BDB10AE593994219B3" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B86834CB836F4AB2B3D29D6BDF9C35A6" - { - "Name" = "8:simple_test" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_22B3BAF5C13B4AF8AF215DF801DD3046" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_ACBA4EEB967B49369C5B078365A8DAA6" - { - "Name" = "8:flames" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0A2A0C303015456C841FAB6074A18B6F" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_22760F0D8ABC4AB8A5B0948B2CCEF635" - { - "Name" = "8:free_h2_air" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BF73867B624E475B8B0DE5A9375C8632" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3823235E9E3E445CBD912A80B866DA0B" - { - "Name" = "8:stfame1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_3582CFF8397947419FC216A757E77A4E" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_496FD029390C4E4095219F8C5BD1246F" - { - "Name" = "8:adiabatic_flame" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D61C1C54DF2D4449A5D4396B00A84C64" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_5A9326FD6A214497A76F171E934D8729" - { - "Name" = "8:flame2" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F1A9ADFAE8044E1DA1199836DA6DC838" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_AC712E75B97F4766953A8ACF332D3F1C" - { - "Name" = "8:flame1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8CFD385224704C63B6A1C100C26C5395" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_C466AACC518A400CA4AA80226796F0D1" - { - "Name" = "8:npflame1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_345BD77AACE24A81BDD5700796F2E20F" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D7ADDA3C318D49EBABB7636C3B80ECD7" - { - "Name" = "8:flame_fixed_T" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DA35FF699B954BDC9FFAEFD518E4071E" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - { - "Name" = "8:fuel_cells" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A46073D5774A4A7488FE7ED41BD60D59" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_33E4779AB0C24751BA2645F9F51A39D3" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_45FAD6A5DFB047C2994B1D14F63B7703" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_91BFCC5A92684F63A014CEC3B9265F1A" - { - "Name" = "8:C++" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4550D17AF47F43D38272308352CF8718" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_335A9AE259D245E8840177A55C54701B" - { - "Name" = "8:NASA_coeffs" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6ECD8DEC64D04108B9357B5FFB3CBD8E" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_42895A51CFC946CC8F5C162E27B7CEA5" - { - "Name" = "8:rankine" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_E8977A1C8EEE4380A587A77D385169F4" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_977472896DA345AC9C1D2C3999F9A4A2" - { - "Name" = "8:flamespeed" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7B3B00D492B044BEBA59911B7C814970" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_996658E24E89485D8D6ED952560576DF" - { - "Name" = "8:kinetics1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F05750F1C83E4A10A40290572D9130DA" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E345C75CD39149EC856898DE24D48746" - { - "Name" = "8:combustor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9512C0F75C404EE1A8CDAFE1C98937B4" - "Folders" - { - } - } - } - } - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_C18AD6B27F144D1EA3F43513268152DB" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_4BFAA71B92694D76A142F5C3ED00F20A" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_446477146DAB4A47A7AFC9902BF72A7E" - "Folders" - { - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_CB299B68C1E8487BA1E6C1DE65DE88C8" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:Cantera" - "ProductCode" = "8:{52E4E337-4FCE-42FC-9AC9-6EEECE8C231E}" - "PackageCode" = "8:{EA5FC533-4107-4BFF-A046-F5EDD74A7220}" - "UpgradeCode" = "8:{1E20CBE3-A0E1-4DF5-AC48-85FF68A24B77}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:FALSE" - "DetectNewerInstalledVersion" = "11:TRUE" - "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:1.8.0" - "Manufacturer" = "8:cantera" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:http://www.cantera.org" - "Title" = "8:Cantera" - "Subject" = "8:" - "ARPCONTACT" = "8:cantera" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - "TargetPlatform" = "3:0" - "PreBuildEvent" = "8:" - "PostBuildEvent" = "8:" - "RunPostBuildEvent" = "3:0" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_A15FA43938034D689F29E65C6E8955DA" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_5BDB66062CEB415CB4959F307FD0D508" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_F857B3D1747440C9A23BF58734C6212F" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_C66D7959D9B84EB48504D18245ED499E" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_11B1D446B20C4613916F260F22FB3817" - { - "Name" = "8:MATLAB Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_6F6F7A9D0A9540169C31BFC498809033" - { - "Name" = "8:Cantera Folder" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_99B1AD3DF5084F17BBA2DA9A8E4A758E" - { - "Name" = "8:C++ Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_C1510D42AA964597A8CB449C6B94E86B" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_B3E018B74C474749A9DF614C49D87F87" - { - "Name" = "8:Cantera" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_CB299B68C1E8487BA1E6C1DE65DE88C8" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_C74524C318E34B64BC7F9CF0751E1641" - { - "Name" = "8:data" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "WorkingFolder" = "8:" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_D36F249B6C63494C8991429C3423DCBF" - { - "Name" = "8:Python Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - } - "UserInterface" - { - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_0ED84EDEFD4A4D698882BFE1F333E307" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_29BC7A20906B4BB591C50CBADAC4F8D7" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_08E53ECD734042D6A31CA37D0355381E" - { - "Sequence" = "3:200" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_35FDF6BB662A42B1A92CE5FD019F169A" - { - "Sequence" = "3:500" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_ABC3AFA2024F4562A020AE6343D51300" - { - "Sequence" = "3:300" - "DisplayName" = "8:License Agreement" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdLicenseDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "EulaText" - { - "Name" = "8:EulaText" - "DisplayName" = "8:#1008" - "Description" = "8:#1108" - "Type" = "3:6" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:2" - "Value" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "UsePlugInResources" = "11:TRUE" - } - "Sunken" - { - "Name" = "8:Sunken" - "DisplayName" = "8:#1007" - "Description" = "8:#1107" - "Type" = "3:5" - "ContextData" = "8:4;True=4;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:4" - "DefaultValue" = "3:4" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_FA729FED55DB423CB796E6380C3BBDF8" - { - "Sequence" = "3:400" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "InstallAllUsersVisible" - { - "Name" = "8:InstallAllUsersVisible" - "DisplayName" = "8:#1059" - "Description" = "8:#1159" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_519E224B02474BA2B8DC4CD4EAE2ACF7" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2C3380451FE74068AF488EF4B6F73D94" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_6E2FF8B7EC244C94908291296E19523E" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8F2D5F455ECB44B3859CD8D454A71C60" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_61D8CE962B314E818663A48C0415867E" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_24A74643C5964C87A797E1A643FF0D0B" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_75F14606DECA4813841F459E15C791FC" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C1A3D09CAB0840249EFCEC6855096B18" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_CA30C9165C5C49C68248727A03AA7A6A" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C87AD3FA8C0A43F7A829C50FC5F1F1CD" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8D56619ED59C40F9B3C655569D7BE0E9" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_E8083BADF0444BC18403655940B69C5C" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7D3124C107AA4B8AB2828C5E89BCA5AA" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - } - "MergeModule" - { - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_3083E770891548348F700E253FA8A634" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:Microsoft_VC80_DebugCRT_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_997965EBD0414DD3B8F2CD9270032C7B" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:policy_8_0_microsoft_vc80_debugcrt_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "ProjectOutput" - { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_08587955063141779B605860D7FF04D3" - { - "SourcePath" = "8:..\\debug\\ck2cti.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_14738B23CCC74201B3F3619639554DD1" - { - "SourcePath" = "8:..\\debug\\cti2ctml.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{4F5B4442-98E5-4B11-9239-CDF5148C1902}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_1861CF609E4C4EE2B209A26A6705ACD5" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctcxx.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{E342202C-F877-43D0-8E66-D2A7794AC900}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_218EB718190641D592079146D7F47C17" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\SUNDIALS_SHARED.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_262DC17B610648E5A48002B469EC6A57" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\zeroD.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_2CC0F0BF60B24FF39FF09E9CFDF038BB" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\base.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D76CE458-2A16-42DD-AE25-E282886C358F}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_3CCADD10D5934D599E6AAFF04D6353B2" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctf2c.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_4396FC89207E4A7B985CAAC11722BD68" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\kinetics.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{8CB43708-231A-4F80-B777-5F0A90CDB604}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_5138C167F7FC48EBA02A031F6F05DD67" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_8F6B0F5E781842E89113C86D1380E727" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\equil.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5B4B5866-2B50-4E34-9F00-B5C12677B4B5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9AC9ABAE8E744589A8EABDBC4C1B063F" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\CVODES.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_B137545CCE204222B6876022AB4E6EAD" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\oneD.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_CC9CBF448698418B83091250EA8BD78C" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\NVEC_SER.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_DA6641D60355480A978E4B4464AA5DF4" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctblas.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_DD3B996C17714923935F9497EC38D611" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctmath.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{127547E3-416C-4C12-82E9-52F912142FB5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_EE7C6EE3A3154788B22D1EF05798FD2E" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\tpx.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_EF86BEE203814AFB81EFC961B7A3E77E" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctlapack.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{2701B198-FEC1-45A8-BC20-AACA46B64986}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_F002FBC310564DAAB051DE2CC004A129" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\transport.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_F56FE241FFE6446197BDA67DD816F1E4" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\numerics.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AD56DAD7-108B-4E82-993E-1EC6A0DFD209}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_F602133B4312461CA85ABCBC52B27AF0" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\thermo.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - "VJSharpPlugin" - { - } - } -} diff --git a/win32/vc8/SetupCantera/SetupCanteraLite.vdproj b/win32/vc8/SetupCantera/SetupCanteraLite.vdproj deleted file mode 100755 index 84df670cc..000000000 --- a/win32/vc8/SetupCantera/SetupCanteraLite.vdproj +++ /dev/null @@ -1,11949 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:800" -"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupCanteraLite" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_0067AAD709D94D2693870A06ECD55183" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0170832FE2DB4AE0BF9768C53BE03A84" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_022EDF1564FF4680B6AA609CE897983A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_02F0ACFAB9234F7F822B893C7DC32F1F" - "OwnerKey" = "8:_08587955063141779B605860D7FF04D3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_02F0ACFAB9234F7F822B893C7DC32F1F" - "OwnerKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04C83EB86A3C45AB93638133493E5923" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_051107F9F8CE4364AC76D00D23F8B7C5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05690F470DFA457FBF7C925A8420EE5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05EE24E611E74A1C88CE22420CA5500D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0700963A1F1B41FFABC3911498DB18B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08587955063141779B605860D7FF04D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0936663A9C31411CA21989F4FA39A5F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_09812E60422340BF9B92C7BF4CDE6FC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_099E198F6C01436DB271857F1309977D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A01A5CC173A4619BBAE80DFCE7B23B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2F83F932A74CAABB87DEEAC1B9536C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0ACC7910CC8A46E38521F8A78AF253D2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B0170BC983349DD945697DB4576507A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B09C9A0BF24498399548814F95D1EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C8BFBA19BE949699F417570F8C69B5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C9010E357C748BEB820CF0E830F09DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D0FFCC38C4645D997283F1C5CED5E06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D47388E1B474AF08F6DA0FE72025C42" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DDF1766C6A04C76AE6AF7FBC35E471B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1049E82786DB4EB2BDEFF972136B0F19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_105638BB017C47DA814720D4C027908E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11553AE6EA7A424D9621E724DFECC70F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11AF9ACB25D6477DAE6906C2F6F688CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11E4F38118B54DC680D5CB741B29BE8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11EE4F61EA0740F1BE63419C7A48F185" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_125E1AC217CC40BD8F4534E875CB9D0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12BF22BA87424178B29DB07E669C3501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1420A489C89E4859ACE78FD5DD27C00A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14580E5B948E47509A941AA338014D25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15D3C38D37A94D67B313EC3B57DA2AC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1603140AC6F7489CA14D3F41F58E9379" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C0D130AB2748E6890B937071A27A0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C40536EB0A45658DF4EC29D7CBBFF9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16DD6B492C274AC6BA6ED913C513A10B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_17873678EB8F4A3AB2296EB4E4483220" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_18712B731C5F4CED9DD70EC680C9BE15" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1889FAD37671415E95CCA5B1BCAC9E32" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_188F8F797CE24E7C9FC6BD62D2B5D37F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A3D179D05C74A909F2B5B6E254459BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A66CE0396934BBDBA728386725B2310" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A758A2D9CC24D13A732C1F61D692657" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1AA05F39A2464BDD922D26B58FE78BC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B053CD5461740CB891855B80F250AED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D0B3F7CDFF14AD2A879AF1565D65509" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D7106B99F8D451CA0562A6C57C2CC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DF1B93159BE475CA0438F31722F856B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F6340B91C654BDAB4FDCA7B545A9ADD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_219FDC3ACB2A4C81935851A9CAA7E1EF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21EB392DF37A421CABBDA197A9226C0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_232F4C7716264866BDEA07B97B583460" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_23CE4DDD38054CA49B17BEEF4D728230" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254CA5A242F04444AB0F18F9ECDD091B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254F288B4BAC4BDFB4B21E76747FF336" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2656FD40F3784C588D4004D409B0F80E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26A7FE2928CE45CDB52C4B3326A33951" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26E683AE357D4F70A3DC3C57295541D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26F0BA63411646978592D51F26AEA36D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27549892F823435798B476FC52F3F012" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27DE8E5E29574E81B2D3ACC4E87B9637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_290E7C7E5DF64841B1F913EEFE006069" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29200BDEF8B44EC69E128788F4E09B16" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A1589369A874D0EBFFE3F6D98426A49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A962975342142978B3DE11A20C9AA52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2AA7C0041FC74F718A561EF0696DCB45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D09076E55604C73A82892D474E11779" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2DEE49E2A7B4424E824CE5D0FB2846A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EC7B0A350C34DF0B88C45A54FBFCC99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_30A47D7D93D84874A41E1782FDBCEAAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31AD332AA56C4DF190FE6D941FAAFBFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31E9E8DFB7144795A05AEEE66B279AB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32A08E26D90A41869BE37A47450DADCC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32EAE5622F7540E4AC357D8D1CE10D8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33DBCAB550F1494AA40EFC4ABEFBADC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34722C3A5A5F4217AD66444E408BD476" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_362E5E6B9766498182C5008280A41BD2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36C2D841FA684319BDF30F2B68589637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_372176D2A2AF406DBD625F54972DD57C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3778A89EFC6C475E8AFE84940043B8DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37B9F5E138A645AAA6CE6C3A36E5361F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37DD28283FAE43A78586C3D99D999022" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_385C8980D3A44A2093CD638714277678" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_389AC795E7E842888394BE52A051FA12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39B2C611CD84448489F8AAFF5BD8AB28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3A49848C6AC948D8A7CB60B10FE0D83A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3AC42291E06E4768B0D87839DC9B9E77" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3B00646190674532ABC512E89130A0D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CFA6387302F446AB7938595154FF208" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D56811387944E55AD39C984228C4EAB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3DCD90FBD1DF4FA588238C70E0BADBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E35E9D3EC6141BBA820F7D01B815B64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F96D57E8F9E461F8C90E0ACB1C937D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FE261F2E167434D804087B6019EB309" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF4115C0C3E4C1686E79FBDDD2387B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_406AF99237D3409BB85917A5A60F74ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_40E56E51E02745B4AEBA40660CEC686A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4112A1F6C299475E8562339C3C38AA30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_411BB46D848848E492899FDC17C2D1CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41BB99990E1246928D44C3F17942116E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_426E85F25D874E3F8F14D31E41AACF51" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42A0DE2343CF4D5FB768588C28368E2F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_436F32BB3B714A24A6B5FD1BC342A9D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43C69E8F23BD4919BB63BD40909B3759" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4401025D0D424A86B6C25A9B34792A95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44512354EA8C4577A9085C81B028A63A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4479546E1AAE44FFAEFC0A710BA2E8FA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44DD06CC20DF420A998E2F1D0B980A99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_451FADB3D70145F9BF8D235E092B637A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4555B1D563634B6AAE88E0051E34DCE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_46756B27C91E4C17A9F3C06BCC6D9011" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_47F3CF4BEA29482B95C1AFFF8F6C8145" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_480527309EA14538802C74D4B190DBBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A677774412940DEAF6AF1EDC27A3C58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B3F9D28B70C4E339662B2029BC4027B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BB20697D6B74F4C8917A9D04AA4A240" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C18112956A24BF6A1BF387E433469DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C432477911B4A8596B03914FF5916C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D71E06EFE884CABA33151E1C5263C86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DCD79F33434471C82E0AF768F55ABDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EEA2D8311E542998617CB07AF269FD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51E2B9E78A964BD383DD8FD460AA4BEF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52519B41A4064DEEB452445FD3550B6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_533E20A890AF4129A378968FF67AF0A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53EA1C41778744F09879AEAE0BAA0233" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53F7FA910CDC4CDEBD4257B5798B1B68" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54A0EE28997D4BAFA2E782BD6448A658" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_589104AC830A4577B736D1106E7955A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_58EB415F05014A608F1D6B281082D92F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59166DBD45564A4195E8A079862D7DF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59245571144542D38FEC0EC1F00503B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59AA52C5E25745589B34218C6B13216B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A494D5F32BD411D861645EF9D5CDB73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AE86752EC8A4B54BA6494A9F33FFC71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5CF936560FF2465682DB2D4643C37441" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5D50FACA9AE548919661678B7562D727" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6006C6D0EC294FC39274776F6EA12BCD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_60D94AAFB6AA45F89A490D537326B0A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_61151103C608408DB35D78567822421D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_611E4F1900564CD88F755749C3B89219" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6221061E3BD647AF89BF4AD1785DC9EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6349662626C947BC91332BE085230672" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_655DC211FDA743B8AAE2A254B8D24127" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_675DF947A58B4BAB9DCCF837D18044E9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67B4668A9613497EAD89E4D9D5CDA7B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A9E2F67751E4036B32A3F73F389F4B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AAD2BE4779D4141B7F3175116575B70" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AEC5D1E91784853A899657570B75158" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B4133DAEDD847D9ADB436F3A9E515BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BB63A2172964772A16E8C5DC8FCB473" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D020030302F41549FD1141A91CA6BA2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D7DFA49CD7F422597521F6BC18DBEAA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E40F711DE6E4C15977B10FEBD1145B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6F1E0DC55B9845DAB4FE758F0B54914C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FF6BF505F0442DF81B97A7B0DACFF53" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7086E515306342B7A4A3EB7E47148FEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_713B640959AC45A78E7B9AE581F86E14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73514E9BC5F44C509C562E01E8A958C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_738E966D4DA74FCE8C40B58983F4DBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76175107E4CC4459ABF6F887224C85F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_764D7127961644B186D3F90292091805" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76E915885B634DC6B57F89520C4788A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77A9AA9EC6624BD592C9D29EC6F94989" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77EAFF9FBF464DF08EFF37113E7DFC96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78CF2DC24832474C9EC5304ABA596D6E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_795887D785084824B7284296DC74B527" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79674E6058F048B1B7D3CFFBCBC41561" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A639317418840CC95575AFDA89539F7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A85089C17D248A7A8A12641C4F86125" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A9AF6339376421580BF6E8028871929" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7AE8B40AFA7241769B5BE31427ED582B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B7753AD699149308A9D8CED65455D7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7BE4FD7D976D4900BD24BD9AB7501E99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CC6FCB9F695423782EC53DADE5D585A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D3DAEB7E7C647309752BD3A02876B72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7DD2BAB195754859931B7B5AE308FAFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E12BAE0A2924E5B83533AABB0BAC4DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F82322C27494517A818285E796783B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7FC1EE2D828D4E0C9A209479895AE0D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8106318CEF394350AED3B89BE5973CD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_811F3F47C3D94B628C68557B0EB6B36B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_81812B7D110C414C960813023A134932" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_820901EF2B7645DA9A49A95F3E9DE675" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_82CA2F512C5343BDAB3341734D58FBFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8354660D2436459FBA8CB92DB7B6E337" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8549950E280A4786AA6D4BDC9AF44DFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_854DF9ED3FF741069B2D162A049D5E64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87132C070E1540D8A4B033B0E98880B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87CEEEEB6DBF409FACD5794BCBD35B3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8801CCC3E95F4B098645DB0BF445E0F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_883D69622DD84D3A8A0D79D522CDA96B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89B32FBB4FF441CFBCF0F830E202A7A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89F1C726748E4E57ACFDFC467114BD09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A5883FE50804063BBC8EE8DA9BE78DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B0D72F9F1AE422C81E4923414EB4C13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B6199C9EA65475D9FC6C0CE792EA501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7D8CEB11024B759FC6F809723ADF7A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7FD926CFA648FB9CE0ED24957F591B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C9645906D2B4435BF0DDC85F14F5CF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CB8ABF1BC42493F8C6451072245546C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CCF6467ECF34EE59611670E3645C719" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D346FD7000B4F0AAF57691DB6BD9CDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D3C554266D94991816CFFDB66F29AAE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D419E40A1674FC9A198BCD3410D643D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9038E6B538DE4653AF9E77498DC5C9ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_907955714C5E41C3A0C82F4633DEBAC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9084333D5B164E6FBDFA7096FCC75845" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_92A6D3125FA44E7B8795DE4EE0D738BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_93900A98FABF44F5BE2F6F23E3EDA13A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_966477D37CF5451993EFF07CFB2EE25B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_96CCEAC6BE924D6AB858949535654A72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_979C4C61FFCC47BF9DD9142A747D70F3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97AB3E7B353E4703B550348C63AEFC2D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97B185B78C154874B77D2049B3300B41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E71EC4B7404230AA4186AE74AE88F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E864DEE6A144A78B68D9A3BE9A0413" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_997EF831DA8A4F9C99259C70FFD9E6C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99BD8AC4084D439CA80816A89387CF06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F4B3534D1A4C88BFE4FB5D2F216E23" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9B44971E00A5481BBA5AFD0A2166D16F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C0C04F635C34CAAB690617751FEF9A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D045060258445C7988DB84395305E71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D6C72386A0B4D3489A13633E229F95D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E7A52340F9643268D1F2F8864729809" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F0C5F7640E84C648A16A5663DC11CF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A00E186E9C8E4BCD92EEF18A7870AB64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0858150B00A472BA6EAE71AEBABDE58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A11208A3D61940228E848C672615C531" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1555851966F4CBDB4BE3837641C843A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1A7D85419B04E1892896FD2723CBE05" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B810BE7C004166A16F019DFEBC09A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2ED793453A54C92AD356FF69DBFAFF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A386FFD174A848B8A6383A013CA12077" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A3D6752BC31B442CA999E19F8AA5B2E5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A44EA116D8BD401B9F5CB43FD0A516EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A4C093C7C647401E895109DA2F564C52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A513873E6AEC441CB417942FBA4FE3A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A571DB581B7B4085B6EE29881A27A2D8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6399AF77EE147919D73E720D70C79FF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A694168142B64AB28E79B5E6E5357979" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7C06AF14B3343C09C52E321CD45D0A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7F216F3691F4406AD4BF685C2009EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A98B9A585D4F41858169AD80172314EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA7D54EA12024486AA1ACD45D323E74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AD850F3126CA46F9AEB85D4851B8149F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE01A18492C447D89BA1FE02869A18DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE235390D3E7456BBC816F28EF0EDE5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AEF2EA186F5D4A0486766CEC08F7A180" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B0990FEE057B4CEB8E819D4F36FC023E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B25E14F3380641BFA793B8AC5538DE69" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2C4715A10D6448C8785A77EC8E23AFB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B310C19F9C7F4CE6891A34139EB0D630" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3217183190C4EF5AA058E2F2DD49E5B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B34D82DAE3934AE8B7A86ADC89132428" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B37B9EC7F5E24483ABF63844CB762A5D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B383C9B0D56149A18C3933E52A659729" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4FB5F4843A24E41B7FADE7050CD9910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B700B3135C044AE1A0E11F64951C15B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7ADCE96BBE64258BC9786A36007F18B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B813F357BF6E4672A6C5C6420233E416" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8531EBC9C4146A18DBDEE03537C7895" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B90B2A45F38546C7B27A422537B6A0D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B980912F97654A708BB58521244643F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA1757667DBF4ECE82D987268736B4D7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA56A809F849463387B0C35C554D3FDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BBA24149F4C04977B6A07924A49D7352" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC01A169AEE24DEDB532037D3A25C69E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD197F0310024D04B386D3ED22B580F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD35BC44FB8F441B8E358D9D364CA587" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDB11450018647D880BBB295E0BBF169" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BF2D5197C57A4E03833752A2F4532AA8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BFE5589963E74E2E9883E4AE5826D851" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C03B6B3C637C45749F3ACF29F4FCEDF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C04EEE51536C4B64BB1758CBB7873B34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C065BAA069514382B51E468B5A1978A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C094488877694ABCA56EEADA30F0C108" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C21C0E1658844265AABB721C6F59AB24" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C3750F20EDFA48D78E02F27034D02209" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C38225F7A000426CB7E955945C9466E0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C54B99BA758A4FB3B844DE919B277DDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C649E5027371431DB5A5440812C57540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6B45FFC93CC4A3F864E363E7B18206D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6F4B29F1A3B4B59A21287716572E0B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C71939C1027C4474B690DDDF4B0E8FB7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7406B26D83F4CF48E24ED78245654ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7D02D2B4C444A0C90BD6F8C6B232C91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C9AC5BC6DB9742B79D0BFF153CA39421" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB2FCC33698242D0BFDAA47D5C4B0F63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB3A0AE176934F52AE20A613C2070534" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB46B6FEE22A4C689CB244EF428600BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC3803859B7F43B18EBE799C9C56933F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC71BE47DD434D7CA2713A9087A88C14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCE9C76D878344F4BF560E0136E1BCF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCF420B39E734D4384125DFE122E8F6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD3DBDD9333C4033AE1B724282BBBFBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD777AD5FF1D420DB9723E6EEC27D521" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CDBE3C6855AE4501803B9EDA7BFEA691" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEC3CD033FB94DFA8810C8142FED85B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CECCCB3C56494F61A90C39EE70F3DFC9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF28519F63C34802AB33F9342405FD3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF7BF165F4004E0DBBFF446A66A985DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFA9B0302ABC430A9DBA2BC2132B6B73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE3C277A2DF41018E63BE547F53452D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE69F411CF84BE7ABCD4B895EF13C62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D128F9F54CA949C09B3FA61A199B060F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D151A04263364A9B8005377D79AEC239" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D200B29D2F7E429AB771E6E92961E4C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2176F7DD848403DBC973A3676B579CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3284BDBAC7847909EAF138FCCDD512F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3EDAA4023284820AFC142093DE1AAE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D49889111E484F5090ED91A8EFF57DD0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D523D656E59A4F36A5799882AD52FE63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6635B71ADB94BA0AC25AF10E53EAA56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D68C5368AA4548E2B31B6E44C6CF18CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6F8538106594E289818596061BE2EA6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D75087C07C804BA994309398BC48603F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA790596462048CFAECE85420D41D74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA9C782985C041509BE9C4A7CB68A4A8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB5649A025C244CCAD4CFC7607B09A28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB6C4271795545FA80082707D6121026" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBC0EC09DC684F47B0DC34BF7958EA66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBECDA96409E46C5A16D99CCCFC2E0DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC87F8DA14754002A1931C3C5DC89AD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DDCBFEDCC6144933941BE8B0EEBB9614" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE2D53C1D99340B28D76F985871A1D04" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE5BB9FAA411472B8901537165DFD827" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DEE4FC947E1543ECA3C5D0A1B5D82606" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF6E93BE4C85423FBB21EA3F783E0724" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF7C83B26513481DA856DE8F3DAEF744" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E07080A8272044BDAD3242DFA62A3AD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0D128147681418496692C77F4B1BECB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E148F8C2F82A48D3A68E9E2C2CDAD846" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1570450F26743789099E1D664EA2930" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E18D9C95AB9747609535A99DD2D81155" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1FAFCCB6A854D248F54F164889FAB3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2073E8B81F74741B1D1EA05FBDD0F79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2B4EF18B90E479E8D1311CBCE13431E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E31FFA0A95B14807BA4DA5176F48A0AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3B3CBF11A49408DA2A465DD552AE300" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3D9492FF8AB48679A4B287D1CE30AD6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3DDA7E632494939B2882BD6741CFD9D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3F58F53501F4CAA92527C64B08D9EBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4A964C652EF407CA753B3CA1219015B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E54668B3A3FB42CF85A71689A715F19B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E646FA76573448CAA4749B18614EF782" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E716C1A77B764B6697138BC0DAE3E30C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E855F8CECB234B9291EC3600C31564E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E885D5C620AE4F7B824607C2AE4001AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8AFB1C8F7A342D5A03F305B3E0230C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E0F24BF6014C208A93130FC1761DE6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E78948E8974A1DB4C3D6E63AF58602" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8FE474C601D4386BBB0CA9599FF45BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA8E4A02700F48B3A6136CD0055D6CFD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB1CB1838E7449B4B3F05EF3BA026DC8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB89828AF09E40FFA26D353F1088C41B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC2FDC1A744E4A1AA4793CB10F18D176" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC476B2533A1437FA80321BB3090234E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC9C8B8C68CC4B6FBF2202B0935A6396" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED90DA83729C417BBEAA629FC6CE1095" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDC27F3DB4874D0B80C408E935F92FD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF07839F9BC941BA9127CF08C90303D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F15D7C13B4D94173A06FC05BFE08B4A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1C2DC4D3F4541478F3128EC742FC67D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F325A9398503407384F1B46B1B65BE34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F40D33926EF24D48B642AFADF0905175" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F42D9F9BF66C46B3A5C9271FA5F371BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4E64CA79CC5489294D5EB5751985163" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6A52BC1EC8D44989142E90DB7AAD1D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8688399972140A18AEE3821A3076DA9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8CAB1B1AAE143949246B033BF6572AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8ED7A133CD24494B63DBFF35207D7A4" - "OwnerKey" = "8:_02F0ACFAB9234F7F822B893C7DC32F1F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9E5B7A73F134E42B0EE70B7A917FFE1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FA43C5DB9C7546E7BB93ED688744AC52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBB083851DA2463CA4F1366F4904110A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\SetupCanteraLite.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\Cantera.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "File" - { - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0067AAD709D94D2693870A06ECD55183" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_condensed.cti" - "TargetName" = "8:nasa_condensed.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0170832FE2DB4AE0BF9768C53BE03A84" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\setMultiplier.m" - "TargetName" = "8:setMultiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_022EDF1564FF4680B6AA609CE897983A" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\h2o2.cti" - "TargetName" = "8:h2o2.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_04C83EB86A3C45AB93638133493E5923" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\argon.cti" - "TargetName" = "8:argon.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_051107F9F8CE4364AC76D00D23F8B7C5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite2.m" - "TargetName" = "8:ignite2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05690F470DFA457FBF7C925A8420EE5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\mix_hndl.m" - "TargetName" = "8:mix_hndl.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05EE24E611E74A1C88CE22420CA5500D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\equil.m" - "TargetName" = "8:equil.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0700963A1F1B41FFABC3911498DB18B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich.py" - "TargetName" = "8:stoich.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0936663A9C31411CA21989F4FA39A5F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond.py" - "TargetName" = "8:diamond.py" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_09812E60422340BF9B92C7BF4CDE6FC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston.py" - "TargetName" = "8:piston.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_099E198F6C01436DB271857F1309977D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_get.m" - "TargetName" = "8:phase_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A01A5CC173A4619BBAE80DFCE7B23B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolarMass.m" - "TargetName" = "8:meanMolarMass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Hydrogen.m" - "TargetName" = "8:Hydrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A2F83F932A74CAABB87DEEAC1B9536C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0ACC7910CC8A46E38521F8A78AF253D2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ThermoPhase.m" - "TargetName" = "8:ThermoPhase.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B0170BC983349DD945697DB4576507A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\atol.m" - "TargetName" = "8:atol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B09C9A0BF24498399548814F95D1EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setThermalConductivity.m" - "TargetName" = "8:setThermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C8BFBA19BE949699F417570F8C69B5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SV.m" - "TargetName" = "8:setState_SV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C9010E357C748BEB820CF0E830F09DF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setDensity.m" - "TargetName" = "8:setDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0D0FFCC38C4645D997283F1C5CED5E06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setMaxTimeStep.m" - "TargetName" = "8:setMaxTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0D47388E1B474AF08F6DA0FE72025C42" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\rankine.py" - "TargetName" = "8:rankine.py" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0DDF1766C6A04C76AE6AF7FBC35E471B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\netProdRates.m" - "TargetName" = "8:netProdRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1049E82786DB4EB2BDEFF972136B0F19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satPressure.m" - "TargetName" = "8:satPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_105638BB017C47DA814720D4C027908E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\private\\surfmethods.m" - "TargetName" = "8:surfmethods.m" - "Tag" = "8:" - "Folder" = "8:_653D9B351BDC4DD6B1AC64034FB114A1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11553AE6EA7A424D9621E724DFECC70F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarDensity.m" - "TargetName" = "8:molarDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11AF9ACB25D6477DAE6906C2F6F688CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11E4F38118B54DC680D5CB741B29BE8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\volume.m" - "TargetName" = "8:volume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11EE4F61EA0740F1BE63419C7A48F185" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_HP.m" - "TargetName" = "8:setState_HP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_125E1AC217CC40BD8F4534E875CB9D0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_12BF22BA87424178B29DB07E669C3501" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1420A489C89E4859ACE78FD5DD27C00A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\Transport.m" - "TargetName" = "8:Transport.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14580E5B948E47509A941AA338014D25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_15D3C38D37A94D67B313EC3B57DA2AC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\private\\flowdevicemethods.m" - "TargetName" = "8:flowdevicemethods.m" - "Tag" = "8:" - "Folder" = "8:_A0CD6A9C146B405D99355A87F6B7C47D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1603140AC6F7489CA14D3F41F58E9379" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\buildwin.m" - "TargetName" = "8:buildwin.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16C0D130AB2748E6890B937071A27A0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\ydot.m" - "TargetName" = "8:ydot.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16C40536EB0A45658DF4EC29D7CBBFF9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByID.m" - "TargetName" = "8:findByID.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16DD6B492C274AC6BA6ED913C513A10B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\thermomethods.cpp" - "TargetName" = "8:thermomethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_17873678EB8F4A3AB2296EB4E4483220" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isInlet.m" - "TargetName" = "8:isInlet.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_18712B731C5F4CED9DD70EC680C9BE15" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1889FAD37671415E95CCA5B1BCAC9E32" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_r.m" - "TargetName" = "8:rop_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_188F8F797CE24E7C9FC6BD62D2B5D37F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic.py" - "TargetName" = "8:isentropic.py" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A3D179D05C74A909F2B5B6E254459BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Inlet.m" - "TargetName" = "8:Inlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A66CE0396934BBDBA728386725B2310" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\KOH.cti" - "TargetName" = "8:KOH.cti" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A758A2D9CC24D13A732C1F61D692657" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1AA05F39A2464BDD922D26B58FE78BC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2.py" - "TargetName" = "8:flame2.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B053CD5461740CB891855B80F250AED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl2.m" - "TargetName" = "8:prandtl2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\GRI30.m" - "TargetName" = "8:GRI30.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D0B3F7CDFF14AD2A879AF1565D65509" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mole.m" - "TargetName" = "8:entropy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D7106B99F8D451CA0562A6C57C2CC3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importInterface.m" - "TargetName" = "8:importInterface.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1DF1B93159BE475CA0438F31722F856B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1.py" - "TargetName" = "8:reactor1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1F6340B91C654BDAB4FDCA7B545A9ADD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainType.m" - "TargetName" = "8:domainType.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_219FDC3ACB2A4C81935851A9CAA7E1EF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_R.m" - "TargetName" = "8:cp_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21EB392DF37A421CABBDA197A9226C0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\diffflame.m" - "TargetName" = "8:diffflame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_232F4C7716264866BDEA07B97B583460" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_UV.m" - "TargetName" = "8:setState_UV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_23CE4DDD38054CA49B17BEEF4D728230" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\ready.m" - "TargetName" = "8:ready.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_254CA5A242F04444AB0F18F9ECDD091B" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\ptcombust.cti" - "TargetName" = "8:ptcombust.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_254F288B4BAC4BDFB4B21E76747FF336" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\attrib.m" - "TargetName" = "8:attrib.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2656FD40F3784C588D4004D409B0F80E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Outlet.m" - "TargetName" = "8:Outlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26A7FE2928CE45CDB52C4B3326A33951" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setHeatTransferCoeff.m" - "TargetName" = "8:setHeatTransferCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26E683AE357D4F70A3DC3C57295541D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conuv.m" - "TargetName" = "8:conuv.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26F0BA63411646978592D51F26AEA36D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rxnEqs.m" - "TargetName" = "8:rxnEqs.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27549892F823435798B476FC52F3F012" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarMasses.m" - "TargetName" = "8:molarMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27DE8E5E29574E81B2D3ACC4E87B9637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\addChild.m" - "TargetName" = "8:addChild.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_290E7C7E5DF64841B1F913EEFE006069" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_29200BDEF8B44EC69E128788F4E09B16" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A1589369A874D0EBFFE3F6D98426A49" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A962975342142978B3DE11A20C9AA52" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\elements.xml" - "TargetName" = "8:elements.xml" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2AA7C0041FC74F718A561EF0696DCB45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2D09076E55604C73A82892D474E11779" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\restore.m" - "TargetName" = "8:restore.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2DEE49E2A7B4424E824CE5D0FB2846A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setKineticsMgr.m" - "TargetName" = "8:setKineticsMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EC7B0A350C34DF0B88C45A54FBFCC99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut7.m" - "TargetName" = "8:tut7.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_30A47D7D93D84874A41E1782FDBCEAAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\creationRates.m" - "TargetName" = "8:creationRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31AD332AA56C4DF190FE6D941FAAFBFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\vaporFraction.m" - "TargetName" = "8:vaporFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31E9E8DFB7144795A05AEEE66B279AB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\viscosity.m" - "TargetName" = "8:viscosity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32A08E26D90A41869BE37A47450DADCC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\binDiffCoeffs.m" - "TargetName" = "8:binDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32EAE5622F7540E4AC357D8D1CE10D8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\isIdealGas.m" - "TargetName" = "8:isIdealGas.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33DBCAB550F1494AA40EFC4ABEFBADC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Psat.m" - "TargetName" = "8:setState_Psat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_34722C3A5A5F4217AD66444E408BD476" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Surface.m" - "TargetName" = "8:Surface.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_362E5E6B9766498182C5008280A41BD2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\Solution.m" - "TargetName" = "8:Solution.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_36C2D841FA684319BDF30F2B68589637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\FlowDevice.m" - "TargetName" = "8:FlowDevice.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_372176D2A2AF406DBD625F54972DD57C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nTotalSpecies.m" - "TargetName" = "8:nTotalSpecies.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3778A89EFC6C475E8AFE84940043B8DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setSpeciesMoles.m" - "TargetName" = "8:setSpeciesMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37B9F5E138A645AAA6CE6C3A36E5361F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37DD28283FAE43A78586C3D99D999022" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon_carbide.cti" - "TargetName" = "8:silicon_carbide.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_385C8980D3A44A2093CD638714277678" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_389AC795E7E842888394BE52A051FA12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\wall_hndl.m" - "TargetName" = "8:wall_hndl.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_39B2C611CD84448489F8AAFF5BD8AB28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nReactions.m" - "TargetName" = "8:nReactions.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3A49848C6AC948D8A7CB60B10FE0D83A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\disableEnergy.m" - "TargetName" = "8:disableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3AC42291E06E4768B0D87839DC9B9E77" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut2.m" - "TargetName" = "8:tut2.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3B00646190674532ABC512E89130A0D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut4.m" - "TargetName" = "8:tut4.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setBounds.m" - "TargetName" = "8:setBounds.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CFA6387302F446AB7938595154FF208" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.xml" - "TargetName" = "8:gri30.xml" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3D56811387944E55AD39C984228C4EAB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\insert.m" - "TargetName" = "8:insert.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3DCD90FBD1DF4FA588238C70E0BADBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\function1.py" - "TargetName" = "8:function1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3E35E9D3EC6141BBA820F7D01B815B64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.py" - "TargetName" = "8:sofc.py" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3F96D57E8F9E461F8C90E0ACB1C937D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setMassFlowRate.m" - "TargetName" = "8:setMassFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\dustygas.py" - "TargetName" = "8:dustygas.py" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FE261F2E167434D804087B6019EB309" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silane.cti" - "TargetName" = "8:silane.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FF4115C0C3E4C1686E79FBDDD2387B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\private\\reactornetmethods.m" - "TargetName" = "8:reactornetmethods.m" - "Tag" = "8:" - "Folder" = "8:_EF7FFF45863048E0BAC8024E5E97D77C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_406AF99237D3409BB85917A5A60F74ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_40E56E51E02745B4AEBA40660CEC686A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\Stack.m" - "TargetName" = "8:Stack.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4112A1F6C299475E8562339C3C38AA30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite3.m" - "TargetName" = "8:ignite3.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_411BB46D848848E492899FDC17C2D1CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\flowdevicemethods.cpp" - "TargetName" = "8:flowdevicemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_41BB99990E1246928D44C3F17942116E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setID.m" - "TargetName" = "8:setID.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_426E85F25D874E3F8F14D31E41AACF51" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42A0DE2343CF4D5FB768588C28368E2F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByName.m" - "TargetName" = "8:findByName.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_436F32BB3B714A24A6B5FD1BC342A9D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_43C69E8F23BD4919BB63BD40909B3759" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut2.py" - "TargetName" = "8:tut2.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4401025D0D424A86B6C25A9B34792A95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Valve.m" - "TargetName" = "8:Valve.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44512354EA8C4577A9085C81B028A63A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Tsat.m" - "TargetName" = "8:setState_Tsat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4479546E1AAE44FFAEFC0A710BA2E8FA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\resid.m" - "TargetName" = "8:resid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44DD06CC20DF420A998E2F1D0B980A99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_f.m" - "TargetName" = "8:rop_f.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_451FADB3D70145F9BF8D235E092B637A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\transportmethods.cpp" - "TargetName" = "8:transportmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4555B1D563634B6AAE88E0051E34DCE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_46756B27C91E4C17A9F3C06BCC6D9011" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeeds.py" - "TargetName" = "8:soundSpeeds.py" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_47F3CF4BEA29482B95C1AFFF8F6C8145" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\private\\reactormethods.m" - "TargetName" = "8:reactormethods.m" - "Tag" = "8:" - "Folder" = "8:_D663477510C5436ABAF316F6D1E24D8B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_480527309EA14538802C74D4B190DBBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A677774412940DEAF6AF1EDC27A3C58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\cleanup.m" - "TargetName" = "8:cleanup.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B3F9D28B70C4E339662B2029BC4027B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4BB20697D6B74F4C8917A9D04AA4A240" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\mixDiffCoeffs.m" - "TargetName" = "8:mixDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C18112956A24BF6A1BF387E433469DC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\write.m" - "TargetName" = "8:write.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C432477911B4A8596B03914FF5916C4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\reactornet_hndl.m" - "TargetName" = "8:reactornet_hndl.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4D71E06EFE884CABA33151E1C5263C86" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_get.m" - "TargetName" = "8:thermo_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DCD79F33434471C82E0AF768F55ABDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\importFromFile.m" - "TargetName" = "8:importFromFile.m" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4EEA2D8311E542998617CB07AF269FD1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critTemperature.m" - "TargetName" = "8:critTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_51E2B9E78A964BD383DD8FD460AA4BEF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_52519B41A4064DEEB452445FD3550B6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame.m" - "TargetName" = "8:flame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_533E20A890AF4129A378968FF67AF0A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\reactionEqn.m" - "TargetName" = "8:reactionEqn.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53EA1C41778744F09879AEAE0BAA0233" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satLiquid.m" - "TargetName" = "8:setState_satLiquid.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53F7FA910CDC4CDEBD4257B5798B1B68" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFraction.m" - "TargetName" = "8:moleFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54A0EE28997D4BAFA2E782BD6448A658" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importPhase.m" - "TargetName" = "8:importPhase.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_589104AC830A4577B736D1106E7955A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\eosType.m" - "TargetName" = "8:eosType.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_58EB415F05014A608F1D6B281082D92F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\grid.m" - "TargetName" = "8:grid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59166DBD45564A4195E8A079862D7DF4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59245571144542D38FEC0EC1F00503B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor2.m" - "TargetName" = "8:reactor2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59AA52C5E25745589B34218C6B13216B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\XML_Node.m" - "TargetName" = "8:XML_Node.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\Kinetics.m" - "TargetName" = "8:Kinetics.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A494D5F32BD411D861645EF9D5CDB73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5AE86752EC8A4B54BA6494A9F33FFC71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\ReactorNet.m" - "TargetName" = "8:ReactorNet.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5CF936560FF2465682DB2D4643C37441" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mole.m" - "TargetName" = "8:cv_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5D50FACA9AE548919661678B7562D727" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\polynom.m" - "TargetName" = "8:polynom.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6006C6D0EC294FC39274776F6EA12BCD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nAtoms.m" - "TargetName" = "8:nAtoms.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_60D94AAFB6AA45F89A490D537326B0A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\refPressure.m" - "TargetName" = "8:refPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_61151103C608408DB35D78567822421D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setValue.m" - "TargetName" = "8:setValue.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_611E4F1900564CD88F755749C3B89219" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalConductivity.m" - "TargetName" = "8:thermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6221061E3BD647AF89BF4AD1785DC9EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satVapor.m" - "TargetName" = "8:setState_satVapor.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6349662626C947BC91332BE085230672" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domain_hndl.m" - "TargetName" = "8:domain_hndl.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_655DC211FDA743B8AAE2A254B8D24127" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\rxnpath1.py" - "TargetName" = "8:rxnpath1.py" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_675DF947A58B4BAB9DCCF837D18044E9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\setCoverages.m" - "TargetName" = "8:setCoverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_67B4668A9613497EAD89E4D9D5CDA7B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMdot.m" - "TargetName" = "8:setMdot.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A93CB70A0AC47D28DF27073F49C6A76" - { - "SourcePath" = "8:..\\..\\..\\License.rtf" - "TargetName" = "8:License.rtf" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A9E2F67751E4036B32A3F73F389F4B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AAD2BE4779D4141B7F3175116575B70" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molecularWeights.m" - "TargetName" = "8:molecularWeights.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AEC5D1E91784853A899657570B75158" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6B4133DAEDD847D9ADB436F3A9E515BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\private\\funcmethods.m" - "TargetName" = "8:funcmethods.m" - "Tag" = "8:" - "Folder" = "8:_208069FD964F475CAB363ACBD7A943C9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6BB63A2172964772A16E8C5DC8FCB473" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementName.m" - "TargetName" = "8:elementName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D020030302F41549FD1141A91CA6BA2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_uv.m" - "TargetName" = "8:ignite_uv.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D7DFA49CD7F422597521F6BC18DBEAA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6E40F711DE6E4C15977B10FEBD1145B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\addPhase.m" - "TargetName" = "8:addPhase.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6F1E0DC55B9845DAB4FE758F0B54914C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\adddir.m" - "TargetName" = "8:adddir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6FF6BF505F0442DF81B97A7B0DACFF53" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\gridPoints.m" - "TargetName" = "8:gridPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7086E515306342B7A4A3EB7E47148FEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_713B640959AC45A78E7B9AE581F86E14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropies_R.m" - "TargetName" = "8:entropies_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesName.m" - "TargetName" = "8:speciesName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_73514E9BC5F44C509C562E01E8A958C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\nChildren.m" - "TargetName" = "8:nChildren.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_738E966D4DA74FCE8C40B58983F4DBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\Interface.m" - "TargetName" = "8:Interface.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_76175107E4CC4459ABF6F887224C85F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactormethods.cpp" - "TargetName" = "8:reactormethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_764D7127961644B186D3F90292091805" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setTimeStep.m" - "TargetName" = "8:setTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_76E915885B634DC6B57F89520C4788A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic.py" - "TargetName" = "8:adiabatic.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77A9AA9EC6624BD592C9D29EC6F94989" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setParameters.m" - "TargetName" = "8:setParameters.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77EAFF9FBF464DF08EFF37113E7DFC96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conhp.m" - "TargetName" = "8:conhp.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78CF2DC24832474C9EC5304ABA596D6E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\char.m" - "TargetName" = "8:char.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\xmlmethods.cpp" - "TargetName" = "8:xmlmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_795887D785084824B7284296DC74B527" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_79674E6058F048B1B7D3CFFBCBC41561" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setValveCoeff.m" - "TargetName" = "8:setValveCoeff.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A639317418840CC95575AFDA89539F7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\times.m" - "TargetName" = "8:times.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A85089C17D248A7A8A12641C4F86125" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple.py" - "TargetName" = "8:simple.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A9AF6339376421580BF6E8028871929" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7AE8B40AFA7241769B5BE31427ED582B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Contents.m" - "TargetName" = "8:Contents.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7B7753AD699149308A9D8CED65455D7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentIndex.m" - "TargetName" = "8:componentIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7BE4FD7D976D4900BD24BD9AB7501E99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7CC6FCB9F695423782EC53DADE5D585A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7D3DAEB7E7C647309752BD3A02876B72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\coverages.m" - "TargetName" = "8:coverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7DD2BAB195754859931B7B5AE308FAFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E12BAE0A2924E5B83533AABB0BAC4DB" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\liquidvapor.cti" - "TargetName" = "8:liquidvapor.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7F82322C27494517A818285E796783B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7FC1EE2D828D4E0C9A209479895AE0D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\private\\domain_methods.m" - "TargetName" = "8:domain_methods.m" - "Tag" = "8:" - "Folder" = "8:_D75DB80C0EC34E90A1753028F279B4CE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8106318CEF394350AED3B89BE5973CD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\SymmPlane.m" - "TargetName" = "8:SymmPlane.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_811F3F47C3D94B628C68557B0EB6B36B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor.py" - "TargetName" = "8:combustor.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_81812B7D110C414C960813023A134932" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\multiplier.m" - "TargetName" = "8:multiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_820901EF2B7645DA9A49A95F3E9DE675" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ctmethods.mexw32" - "TargetName" = "8:ctmethods.mexw32" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_82CA2F512C5343BDAB3341734D58FBFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8354660D2436459FBA8CB92DB7B6E337" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\concentrations.m" - "TargetName" = "8:concentrations.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8549950E280A4786AA6D4BDC9AF44DFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_net.m" - "TargetName" = "8:stoich_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_854DF9ED3FF741069B2D162A049D5E64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87132C070E1540D8A4B033B0E98880B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\private\\mixturemethods.m" - "TargetName" = "8:mixturemethods.m" - "Tag" = "8:" - "Folder" = "8:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87CEEEEB6DBF409FACD5794BCBD35B3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setupGrid.m" - "TargetName" = "8:setupGrid.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8801CCC3E95F4B098645DB0BF445E0F1" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_gas.cti" - "TargetName" = "8:nasa_gas.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_883D69622DD84D3A8A0D79D522CDA96B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mole.m" - "TargetName" = "8:gibbs_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_89B32FBB4FF441CFBCF0F830E202A7A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\surfmethods.cpp" - "TargetName" = "8:surfmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_89F1C726748E4E57ACFDFC467114BD09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mass.m" - "TargetName" = "8:entropy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A5883FE50804063BBC8EE8DA9BE78DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\saveSoln.m" - "TargetName" = "8:saveSoln.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8B0D72F9F1AE422C81E4923414EB4C13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8B6199C9EA65475D9FC6C0CE792EA501" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon.cti" - "TargetName" = "8:silicon.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C7D8CEB11024B759FC6F809723ADF7A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxisymmetricFlow.m" - "TargetName" = "8:AxisymmetricFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C7FD926CFA648FB9CE0ED24957F591B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C9645906D2B4435BF0DDC85F14F5CF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentName.m" - "TargetName" = "8:componentName.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CB8ABF1BC42493F8C6451072245546C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CCF6467ECF34EE59611670E3645C719" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\Domain1D.m" - "TargetName" = "8:Domain1D.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D346FD7000B4F0AAF57691DB6BD9CDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFractions.m" - "TargetName" = "8:moleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D3C554266D94991816CFFDB66F29AAE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite.m" - "TargetName" = "8:ignite.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D419E40A1674FC9A198BCD3410D643D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Reservoir.m" - "TargetName" = "8:Reservoir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9038E6B538DE4653AF9E77498DC5C9ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setMaxJacAge.m" - "TargetName" = "8:setMaxJacAge.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_907955714C5E41C3A0C82F4633DEBAC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\constants.m" - "TargetName" = "8:constants.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9084333D5B164E6FBDFA7096FCC75845" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\air.cti" - "TargetName" = "8:air.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_92A6D3125FA44E7B8795DE4EE0D738BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\save.m" - "TargetName" = "8:save.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_93900A98FABF44F5BE2F6F23E3EDA13A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_set.m" - "TargetName" = "8:kinetics_set.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_966477D37CF5451993EFF07CFB2EE25B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\isReversible.m" - "TargetName" = "8:isReversible.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_96CCEAC6BE924D6AB858949535654A72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctfunctions.cpp" - "TargetName" = "8:ctfunctions.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_979C4C61FFCC47BF9DD9142A747D70F3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\dist\\Cantera-1.7.0.win32-py2.5.exe" - "TargetName" = "8:Cantera-1.7.0.win32-py2.5.exe" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97AB3E7B353E4703B550348C63AEFC2D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97B185B78C154874B77D2049B3300B41" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Oxygen.m" - "TargetName" = "8:Oxygen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97E71EC4B7404230AA4186AE74AE88F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\tdata.dat" - "TargetName" = "8:tdata.dat" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97E864DEE6A144A78B68D9A3BE9A0413" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\geterr.m" - "TargetName" = "8:geterr.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_997EF831DA8A4F9C99259C70FFD9E6C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\fixed_T_flame.py" - "TargetName" = "8:fixed_T_flame.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99BD8AC4084D439CA80816A89387CF06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\phaseMoles.m" - "TargetName" = "8:phaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99F4B3534D1A4C88BFE4FB5D2F216E23" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\plotSolution.m" - "TargetName" = "8:plotSolution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9B44971E00A5481BBA5AFD0A2166D16F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\ratecoeffs.py" - "TargetName" = "8:ratecoeffs.py" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9C0C04F635C34CAAB690617751FEF9A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D045060258445C7988DB84395305E71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D6C72386A0B4D3489A13633E229F95D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setArea.m" - "TargetName" = "8:setArea.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9E7A52340F9643268D1F2F8864729809" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\run_examples.m" - "TargetName" = "8:run_examples.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9F0C5F7640E84C648A16A5663DC11CF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\write.cpp" - "TargetName" = "8:write.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A00E186E9C8E4BCD92EEF18A7870AB64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\wallmethods.cpp" - "TargetName" = "8:wallmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A0858150B00A472BA6EAE71AEBABDE58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setEnergy.m" - "TargetName" = "8:setEnergy.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A11208A3D61940228E848C672615C531" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut5.m" - "TargetName" = "8:tut5.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A1555851966F4CBDB4BE3837641C843A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2.py" - "TargetName" = "8:reactor2.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A1A7D85419B04E1892896FD2723CBE05" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\minTemp.m" - "TargetName" = "8:minTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\.cvsignore" - "TargetName" = "8:.cvsignore" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2B810BE7C004166A16F019DFEBC09A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setKinetics.m" - "TargetName" = "8:setKinetics.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2ED793453A54C92AD356FF69DBFAFF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2ctml.m" - "TargetName" = "8:ck2ctml.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A386FFD174A848B8A6383A013CA12077" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPhaseMoles.m" - "TargetName" = "8:setPhaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A3D6752BC31B442CA999E19F8AA5B2E5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2cti.m" - "TargetName" = "8:ck2cti.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A44EA116D8BD401B9F5CB43FD0A516EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1.py" - "TargetName" = "8:npflame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A4C093C7C647401E895109DA2F564C52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\child.m" - "TargetName" = "8:child.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A513873E6AEC441CB417942FBA4FE3A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmethods.cpp" - "TargetName" = "8:ctmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A571DB581B7B4085B6EE29881A27A2D8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\free_h2_air.py" - "TargetName" = "8:free_h2_air.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A6399AF77EE147919D73E720D70C79FF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\gasconstant.m" - "TargetName" = "8:gasconstant.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A694168142B64AB28E79B5E6E5357979" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mole.m" - "TargetName" = "8:cp_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7C06AF14B3343C09C52E321CD45D0A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor1.m" - "TargetName" = "8:reactor1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7F216F3691F4406AD4BF685C2009EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut3.py" - "TargetName" = "8:tut3.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A98B9A585D4F41858169AD80172314EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\onedimmethods.cpp" - "TargetName" = "8:onedimmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA7D54EA12024486AA1ACD45D323E74F" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.cti" - "TargetName" = "8:gri30.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AD850F3126CA46F9AEB85D4851B8149F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1.py" - "TargetName" = "8:mix1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE01A18492C447D89BA1FE02869A18DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\equil_Kc.m" - "TargetName" = "8:equil_Kc.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE235390D3E7456BBC816F28EF0EDE5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satTemperature.m" - "TargetName" = "8:satTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AEF2EA186F5D4A0486766CEC08F7A180" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B0990FEE057B4CEB8E819D4F36FC023E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFlux.m" - "TargetName" = "8:massFlux.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B25E14F3380641BFA793B8AC5538DE69" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2C4715A10D6448C8785A77EC8E23AFB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\plus.m" - "TargetName" = "8:plus.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalDiffCoeffs.m" - "TargetName" = "8:thermalDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B310C19F9C7F4CE6891A34139EB0D630" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut1.m" - "TargetName" = "8:tut1.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B3217183190C4EF5AA058E2F2DD49E5B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B34D82DAE3934AE8B7A86ADC89132428" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_set.m" - "TargetName" = "8:phase_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B37B9EC7F5E24483ABF63844CB762A5D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solve.m" - "TargetName" = "8:solve.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B383C9B0D56149A18C3933E52A659729" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\private\\trans_get.m" - "TargetName" = "8:trans_get.m" - "Tag" = "8:" - "Folder" = "8:_3FCDEC5F15154A079645D0817951A946" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut1.py" - "TargetName" = "8:tut1.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4FB5F4843A24E41B7FADE7050CD9910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mass.m" - "TargetName" = "8:gibbs_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B700B3135C044AE1A0E11F64951C15B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\funcmethods.cpp" - "TargetName" = "8:funcmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B7ADCE96BBE64258BC9786A36007F18B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame.py" - "TargetName" = "8:adiabatic_flame.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B813F357BF6E4672A6C5C6420233E416" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\npflame_init.m" - "TargetName" = "8:npflame_init.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\private\\stack_methods.m" - "TargetName" = "8:stack_methods.m" - "Tag" = "8:" - "Folder" = "8:_57614C30E82048A8B1CDA4FC95D7707F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B8531EBC9C4146A18DBDEE03537C7895" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\water.cti" - "TargetName" = "8:water.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B90B2A45F38546C7B27A422537B6A0D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\thermo_hndl.m" - "TargetName" = "8:thermo_hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B980912F97654A708BB58521244643F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\maxTemp.m" - "TargetName" = "8:maxTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA1757667DBF4ECE82D987268736B4D7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesNames.m" - "TargetName" = "8:speciesNames.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA56A809F849463387B0C35C554D3FDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destructionRates.m" - "TargetName" = "8:destructionRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\multiDiffCoeffs.m" - "TargetName" = "8:multiDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BBA24149F4C04977B6A07924A49D7352" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destruction_rates.m" - "TargetName" = "8:destruction_rates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC01A169AEE24DEDB532037D3A25C69E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\value.m" - "TargetName" = "8:value.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD197F0310024D04B386D3ED22B580F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_get.m" - "TargetName" = "8:kinetics_get.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD35BC44FB8F441B8E358D9D364CA587" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Water.m" - "TargetName" = "8:Water.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDB11450018647D880BBB295E0BBF169" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut6.m" - "TargetName" = "8:tut6.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BF2D5197C57A4E03833752A2F4532AA8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mass.m" - "TargetName" = "8:cv_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BFE5589963E74E2E9883E4AE5826D851" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solution.m" - "TargetName" = "8:solution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C03B6B3C637C45749F3ACF29F4FCEDF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Methane.m" - "TargetName" = "8:Methane.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C04EEE51536C4B64BB1758CBB7873B34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\private\\wallmethods.m" - "TargetName" = "8:wallmethods.m" - "Tag" = "8:" - "Folder" = "8:_978963BB80B74B24B2062E400EF7C9EC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C065BAA069514382B51E468B5A1978A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactornetmethods.cpp" - "TargetName" = "8:reactornetmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C094488877694ABCA56EEADA30F0C108" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C21C0E1658844265AABB721C6F59AB24" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1.py" - "TargetName" = "8:stflame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C3750F20EDFA48D78E02F27034D02209" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_set.m" - "TargetName" = "8:thermo_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C38225F7A000426CB7E955945C9466E0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\MassFlowController.m" - "TargetName" = "8:MassFlowController.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C54B99BA758A4FB3B844DE919B277DDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C649E5027371431DB5A5440812C57540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut4.py" - "TargetName" = "8:tut4.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6B45FFC93CC4A3F864E363E7B18206D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\reactor_hndl.m" - "TargetName" = "8:reactor_hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6F4B29F1A3B4B59A21287716572E0B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\massFlowRate.m" - "TargetName" = "8:massFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C71939C1027C4474B690DDDF4B0E8FB7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmatutils.h" - "TargetName" = "8:ctmatutils.h" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7406B26D83F4CF48E24ED78245654ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7D02D2B4C444A0C90BD6F8C6B232C91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\trans_hndl.m" - "TargetName" = "8:trans_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C9AC5BC6DB9742B79D0BFF153CA39421" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SP.m" - "TargetName" = "8:setState_SP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB2FCC33698242D0BFDAA47D5C4B0F63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb.py" - "TargetName" = "8:catcomb.py" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB3A0AE176934F52AE20A613C2070534" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\area.m" - "TargetName" = "8:area.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB46B6FEE22A4C689CB244EF428600BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut3.m" - "TargetName" = "8:tut3.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC3803859B7F43B18EBE799C9C56933F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\periodic_cstr.m" - "TargetName" = "8:periodic_cstr.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC71BE47DD434D7CA2713A9087A88C14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCE9C76D878344F4BF560E0136E1BCF3" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\graphite.cti" - "TargetName" = "8:graphite.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCF420B39E734D4384125DFE122E8F6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ph.m" - "TargetName" = "8:ph.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD3DBDD9333C4033AE1B724282BBBFBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\kineticsmethods.cpp" - "TargetName" = "8:kineticsmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD777AD5FF1D420DB9723E6EEC27D521" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\rankine.m" - "TargetName" = "8:rankine.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CDBE3C6855AE4501803B9EDA7BFEA691" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_net.m" - "TargetName" = "8:rop_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CEC3CD033FB94DFA8810C8142FED85B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CECCCB3C56494F61A90C39EE70F3DFC9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF28519F63C34802AB33F9342405FD3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF7BF165F4004E0DBBFF446A66A985DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\soundspeed.m" - "TargetName" = "8:soundspeed.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFA9B0302ABC430A9DBA2BC2132B6B73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nPhases.m" - "TargetName" = "8:nPhases.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFE3C277A2DF41018E63BE547F53452D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFE69F411CF84BE7ABCD4B895EF13C62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setThermalResistance.m" - "TargetName" = "8:setThermalResistance.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D128F9F54CA949C09B3FA61A199B060F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMassFractions.m" - "TargetName" = "8:setMassFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D151A04263364A9B8005377D79AEC239" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setFixedTempProfile.m" - "TargetName" = "8:setFixedTempProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D200B29D2F7E429AB771E6E92961E4C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_hp.m" - "TargetName" = "8:ignite_hp.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D2176F7DD848403DBC973A3676B579CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\advanceCoverages.m" - "TargetName" = "8:advanceCoverages.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D3284BDBAC7847909EAF138FCCDD512F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2.py" - "TargetName" = "8:mix2.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D3EDAA4023284820AFC142093DE1AAE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Nitrogen.m" - "TargetName" = "8:Nitrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D49889111E484F5090ED91A8EFF57DD0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\mass.m" - "TargetName" = "8:mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D523D656E59A4F36A5799882AD52FE63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6635B71ADB94BA0AC25AF10E53EAA56" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\diamond.cti" - "TargetName" = "8:diamond.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D68C5368AA4548E2B31B6E44C6CF18CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6F8538106594E289818596061BE2EA6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\kinetics_hndl.m" - "TargetName" = "8:kinetics_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D75087C07C804BA994309398BC48603F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\addReactor.m" - "TargetName" = "8:addReactor.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA790596462048CFAECE85420D41D74F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialVolume.m" - "TargetName" = "8:setInitialVolume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA9C782985C041509BE9C4A7CB68A4A8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1.py" - "TargetName" = "8:flame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB5649A025C244CCAD4CFC7607B09A28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_p.m" - "TargetName" = "8:stoich_p.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB6C4271795545FA80082707D6121026" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpies_RT.m" - "TargetName" = "8:enthalpies_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBC0EC09DC684F47B0DC34BF7958EA66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\isentropic.m" - "TargetName" = "8:isentropic.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBECDA96409E46C5A16D99CCCFC2E0DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mole.m" - "TargetName" = "8:intEnergy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC87F8DA14754002A1931C3C5DC89AD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DDCBFEDCC6144933941BE8B0EEBB9614" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE2D53C1D99340B28D76F985871A1D04" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxiStagnFlow.m" - "TargetName" = "8:AxiStagnFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE5BB9FAA411472B8901537165DFD827" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame1.m" - "TargetName" = "8:flame1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DEE4FC947E1543ECA3C5D0A1B5D82606" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isFlow.m" - "TargetName" = "8:isFlow.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF6E93BE4C85423FBB21EA3F783E0724" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF7C83B26513481DA856DE8F3DAEF744" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E07080A8272044BDAD3242DFA62A3AD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E0D128147681418496692C77F4B1BECB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\Reactor.m" - "TargetName" = "8:Reactor.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E148F8C2F82A48D3A68E9E2C2CDAD846" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1570450F26743789099E1D664EA2930" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.cti" - "TargetName" = "8:sofc.cti" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E18D9C95AB9747609535A99DD2D81155" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\catcomb.m" - "TargetName" = "8:catcomb.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\reactor_ode.m" - "TargetName" = "8:reactor_ode.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1FAFCCB6A854D248F54F164889FAB3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setRefineCriteria.m" - "TargetName" = "8:setRefineCriteria.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2073E8B81F74741B1D1EA05FBDD0F79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mole.m" - "TargetName" = "8:enthalpy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2B4EF18B90E479E8D1311CBCE13431E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E31FFA0A95B14807BA4DA5176F48A0AE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mass.m" - "TargetName" = "8:cp_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3B3CBF11A49408DA2A465DD552AE300" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_RT.m" - "TargetName" = "8:gibbs_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3D9492FF8AB48679A4B287D1CE30AD6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity1.py" - "TargetName" = "8:sensitivity1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3DDA7E632494939B2882BD6741CFD9D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\air.m" - "TargetName" = "8:air.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3F58F53501F4CAA92527C64B08D9EBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\phasemethods.cpp" - "TargetName" = "8:phasemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4A964C652EF407CA753B3CA1219015B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop.m" - "TargetName" = "8:rop.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E54668B3A3FB42CF85A71689A715F19B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\Func.m" - "TargetName" = "8:Func.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E646FA76573448CAA4749B18614EF782" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\enableEnergy.m" - "TargetName" = "8:enableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E716C1A77B764B6697138BC0DAE3E30C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E855F8CECB234B9291EC3600C31564E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E885D5C620AE4F7B824607C2AE4001AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties.py" - "TargetName" = "8:critProperties.py" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8AFB1C8F7A342D5A03F305B3E0230C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setThermoMgr.m" - "TargetName" = "8:setThermoMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8E0F24BF6014C208A93130FC1761DE6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\rtol.m" - "TargetName" = "8:rtol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8E78948E8974A1DB4C3D6E63AF58602" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\rdivide.m" - "TargetName" = "8:rdivide.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8FE474C601D4386BBB0CA9599FF45BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setCoverageEqs.m" - "TargetName" = "8:setCoverageEqs.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA8E4A02700F48B3A6136CD0055D6CFD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB1CB1838E7449B4B3F05EF3BA026DC8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\plotting.py" - "TargetName" = "8:plotting.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB89828AF09E40FFA26D353F1088C41B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma.py" - "TargetName" = "8:multiphase_plasma.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC2FDC1A744E4A1AA4793CB10F18D176" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critPressure.m" - "TargetName" = "8:critPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC476B2533A1437FA80321BB3090234E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isSurface.m" - "TargetName" = "8:isSurface.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC9C8B8C68CC4B6FBF2202B0935A6396" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\IdealGasMix.m" - "TargetName" = "8:IdealGasMix.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED90DA83729C417BBEAA629FC6CE1095" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame2.m" - "TargetName" = "8:flame2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EDC27F3DB4874D0B80C408E935F92FD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setFlatProfile.m" - "TargetName" = "8:setFlatProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EF07839F9BC941BA9127CF08C90303D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl1.m" - "TargetName" = "8:prandtl1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F15D7C13B4D94173A06FC05BFE08B4A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\Mixture.m" - "TargetName" = "8:Mixture.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F1C2DC4D3F4541478F3128EC742FC67D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critDensity.m" - "TargetName" = "8:critDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F325A9398503407384F1B46B1B65BE34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\z.m" - "TargetName" = "8:z.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\oneatm.m" - "TargetName" = "8:oneatm.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F40D33926EF24D48B642AFADF0905175" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\transport1.m" - "TargetName" = "8:transport1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F42D9F9BF66C46B3A5C9271FA5F371BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setExpansionRateCoeff.m" - "TargetName" = "8:setExpansionRateCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4E64CA79CC5489294D5EB5751985163" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_r.m" - "TargetName" = "8:stoich_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F6A52BC1EC8D44989142E90DB7AAD1D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState.m" - "TargetName" = "8:setState.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8688399972140A18AEE3821A3076DA9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\Wall.m" - "TargetName" = "8:Wall.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8CAB1B1AAE143949246B033BF6572AA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolecularWeight.m" - "TargetName" = "8:meanMolecularWeight.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F9E5B7A73F134E42B0EE70B7A917FFE1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\atomicMasses.m" - "TargetName" = "8:atomicMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FA43C5DB9C7546E7BB93ED688744AC52" - { - "SourcePath" = "8:..\\..\\..\\bin\\mixmaster.py" - "TargetName" = "8:mixmaster.py" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBB083851DA2463CA4F1366F4904110A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nPoints.m" - "TargetName" = "8:nPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\writeStats.m" - "TargetName" = "8:writeStats.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\surfreactor.m" - "TargetName" = "8:surfreactor.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{1525181F-901A-416C-8A58-119130FE478E}:_1DE66EEE44224B05A700D4E2E93A0FB7" - { - "Name" = "8:#1914" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:SystemFolder" - "Folders" - { - } - } - "{3C67513D-01DD-4637-8A68-80971EB9504F}:_78A5B9A56B3C482CBD8EAE207FE469D5" - { - "DefaultLocation" = "8:[PersonalFolder][ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_15DF1B45927A43108F6FD8BF7AB29E7A" - { - "Name" = "8:bin" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_554600D4C1ED49AB9B3F8AA14A61A393" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A0F7AAB1D684CA7825C61ED7C1B1510" - { - "Name" = "8:tutorials" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9EE8F68C07DC4618A6A96B6CC2F6F4DD" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0961E3795854450CB636397255DAA0B7" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD44CF949673422BAA32D14476046641" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_6458A3FFB8B14932A9224D66420736A4" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_07358AF408BA4439926F97BCFC4B2D4F" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3C5C7E20E5A44A629E7E36FC49B00666" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:MATLABCHECKBOX = 1" - "Transitive" = "11:FALSE" - "Property" = "8:_D5D9F0F73161444D859B49722CB836BB" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_5443CF3FEC1C4919A396E1213F7EE741" - { - "Name" = "8:toolbox" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6F2DCE9A4AA04C11955BD805A807D800" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EB2EB0FBE19246E88A9FC85FC50A0261" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CD16B7D343A04A8A8A960BC7DF6EA2C3" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_121EEBBD5CFE412CACD796AD0EF6FACB" - { - "Name" = "8:@ReactorNet" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D25A4392A14645B6856AC0586A697940" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EF7FFF45863048E0BAC8024E5E97D77C" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6A482636047A4CC39874C6CAC1A5EF83" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_1F3BBA95030B48589E34A16DD6877FCD" - { - "Name" = "8:@Wall" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FFC5ABCD0DFE4C64AA3A3119E28770C2" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_978963BB80B74B24B2062E400EF7C9EC" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_14F46BDFA3354434A8AFFDE6EB01D8B2" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_2069E985BE1F4CA4B39E0FF4C857A89D" - { - "Name" = "8:@Func" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BE26BC62A5E847FEB871B25C40EFE75C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_208069FD964F475CAB363ACBD7A943C9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_707701DD38634631A3D20827FC5AFA22" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3D735E99070D4A9C816814209321A420" - { - "Name" = "8:@XML_Node" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1813C288DD40450E9298CE06190DC28A" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_57DD5A7770D14DCB9F09381FB3D030F7" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B241B483BFD649A7B4FA5ADD1E48CB30" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_5980613DA74C49ABB29CF7F4DE8AB8E7" - { - "Name" = "8:@ThermoPhase" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FC38217CD0FB41838729EA5473177414" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_447495742352464D81706C05F55520E9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_115FA39FE4BB4AF98CC450D2C74A832C" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_69556754D0874D01BDA2D9D85F5828AB" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_57FC5782E53444E0BDBD66445370F485" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_978580DBC0A748D790712BBA0B9F1CC8" - { - "Name" = "8:@Solution" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5F863499C9764D489DC234E3476D8220" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_9B31506F5B4F443F832FD3FAB7762E64" - { - "Name" = "8:@Mixture" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5B0B4B544BB7475F8D95A7351BBB5D9B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D683DE5C1C054AF3B3A8A608F8739204" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A330CA11C4BC435B95427DEA56FD503A" - { - "Name" = "8:@Kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_38EC5A2AC0344396A365C0523516B935" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_56A5C77F96C948C3BE617599F99A4FBA" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8F8646357F9D4DFAAEEFB9D3E80E74AE" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A50BD9722A014DC391E5474262EFD7BC" - { - "Name" = "8:@Transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9609451B0BA44ECCBD59EAC256BB8FF6" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_3FCDEC5F15154A079645D0817951A946" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0AE702ED16684776A58F4024099D5B16" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B73A689A75AA49FE9E67D8BC3DE5A587" - { - "Name" = "8:@Reactor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6491ED6A6FD4419EA3AEF94895C5862D" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D663477510C5436ABAF316F6D1E24D8B" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6B68DDB908574065B114EE838055D3A9" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E30E67F5102146D39202747276B874EA" - { - "Name" = "8:1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BEB5629A74864C33BFBE85775BDF46E9" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_45FC9BD502EB46D8A920CD02D93C3848" - { - "Name" = "8:@Domain1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C30A197B3595470A87A00E99059B4FC7" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D75DB80C0EC34E90A1753028F279B4CE" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_68A85998C36844B181D4B77A3DDF4225" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_BC662E8F11194A61A8CAA2E8666C6C9F" - { - "Name" = "8:@Stack" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8AF1FDE1D7B24A50BF4A2F6F6E8F680B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_57614C30E82048A8B1CDA4FC95D7707F" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2E20167746334C26B769B9EBA08C08DD" - "Folders" - { - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F7AA24452AD2470EBD83A85CC5DB9C43" - { - "Name" = "8:@Interface" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D74B7A317604458496D56195B17245D4" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_653D9B351BDC4DD6B1AC64034FB114A1" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_12B0318E56C647B4B7CC27D5344E95EB" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F91A2400AD764EFB800A2F62CE34346C" - { - "Name" = "8:@FlowDevice" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD955CAF1DF74ADD917984BE9557C60F" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_A0CD6A9C146B405D99355A87F6B7C47D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1980519B8CAC42038A2C793D12949EB2" - "Folders" - { - } - } - } - } - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D97B8D9B527F4A4DAEE139297609ECEC" - { - "Name" = "8:demos" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_70CA7BFF862F455CABE89474DDC8C8FC" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_1E1FE4A0C7774B9D9C081E2DB4033D90" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6D0630638BBD4E29B840B324B4436948" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0890042B73B444F889F091DA6D68E910" - { - "Name" = "8:surface_chemistry" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7FDCBB9A8592442FB42D4EAC7D3E53D2" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_1616A26BEFEB4172AA40AC8ED7A8DC71" - { - "Name" = "8:liquid_vapor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C2F7106B0C584CBFB1CD9EAE69B563FA" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_16393A44970E4B7FBB528A637EFFCF96" - { - "Name" = "8:transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_562525EA42174B63807DD27EA3AAF879" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A41B4ED54254F0BBA9CB3DDBA13165A" - { - "Name" = "8:kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F799EEA7F7224C0A855895023F8B3072" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_782A3716E7024C07B7E1786A6FE5D350" - { - "Name" = "8:reactors" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A52D5AC4A0DA4CF483D3E640BC1A5DA0" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_92296F507AEB4419BC7BA3118B2C6409" - { - "Name" = "8:gasdynamics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D902ADED94764BD5A6F420077708B493" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_94D018F7686D4C8690B65C153B0E887F" - { - "Name" = "8:misc" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1D24D49031EB459B974D7D13D5644D3B" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_96B5AA517B204067BBA02150611C7875" - { - "Name" = "8:equilibrium" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8D8BB4AF59F64F88B994C19CC5EB233C" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_ACBA4EEB967B49369C5B078365A8DAA6" - { - "Name" = "8:flames" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0A2A0C303015456C841FAB6074A18B6F" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - { - "Name" = "8:fuel_cells" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A46073D5774A4A7488FE7ED41BD60D59" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_33E4779AB0C24751BA2645F9F51A39D3" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_45FAD6A5DFB047C2994B1D14F63B7703" - "Folders" - { - } - } - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_C18AD6B27F144D1EA3F43513268152DB" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_4BFAA71B92694D76A142F5C3ED00F20A" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_446477146DAB4A47A7AFC9902BF72A7E" - "Folders" - { - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_CB299B68C1E8487BA1E6C1DE65DE88C8" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_D46FB0DFF1A641E9BFF64D43063070E6" - { - "Name" = "8:#1910" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:CommonFilesFolder" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_DF884E96ECD3496ABA2742BCED88AAF5" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D0580EB36EB74E3A86790E702522DD35" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_C549C449993E4410B91BDC9AF59B84C5" - { - "Name" = "8:data" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_64E07C739FB4417C9F46987FB8046C1D" - "Folders" - { - } - } - } - } - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:Cantera" - "ProductCode" = "8:{6318C429-3F69-486A-9987-4D1EE1CA9328}" - "PackageCode" = "8:{0468CAED-E609-40B8-90FF-0A935A842648}" - "UpgradeCode" = "8:{86C96BD0-4EFB-4B99-AB55-8EFAF9B39170}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:TRUE" - "DetectNewerInstalledVersion" = "11:TRUE" - "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:1.5.4" - "Manufacturer" = "8:cantera" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:http://www.cantera.org" - "Title" = "8:Cantera" - "Subject" = "8:" - "ARPCONTACT" = "8:cantera" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - "TargetPlatform" = "3:0" - "PreBuildEvent" = "8:" - "PostBuildEvent" = "8:" - "RunPostBuildEvent" = "3:0" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_A15FA43938034D689F29E65C6E8955DA" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_5BDB66062CEB415CB4959F307FD0D508" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_F857B3D1747440C9A23BF58734C6212F" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_C66D7959D9B84EB48504D18245ED499E" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_11B1D446B20C4613916F260F22FB3817" - { - "Name" = "8:MATLAB Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_6F6F7A9D0A9540169C31BFC498809033" - { - "Name" = "8:Cantera Folder" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_B3E018B74C474749A9DF614C49D87F87" - { - "Name" = "8:Cantera" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_CB299B68C1E8487BA1E6C1DE65DE88C8" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_C74524C318E34B64BC7F9CF0751E1641" - { - "Name" = "8:data" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "WorkingFolder" = "8:_DF884E96ECD3496ABA2742BCED88AAF5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_D36F249B6C63494C8991429C3423DCBF" - { - "Name" = "8:Python Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - } - "UserInterface" - { - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_0ED84EDEFD4A4D698882BFE1F333E307" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_29BC7A20906B4BB591C50CBADAC4F8D7" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_08E53ECD734042D6A31CA37D0355381E" - { - "Sequence" = "3:200" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_35FDF6BB662A42B1A92CE5FD019F169A" - { - "Sequence" = "3:500" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_ABC3AFA2024F4562A020AE6343D51300" - { - "Sequence" = "3:300" - "DisplayName" = "8:License Agreement" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdLicenseDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "EulaText" - { - "Name" = "8:EulaText" - "DisplayName" = "8:#1008" - "Description" = "8:#1108" - "Type" = "3:6" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:2" - "Value" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "UsePlugInResources" = "11:TRUE" - } - "Sunken" - { - "Name" = "8:Sunken" - "DisplayName" = "8:#1007" - "Description" = "8:#1107" - "Type" = "3:5" - "ContextData" = "8:4;True=4;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:4" - "DefaultValue" = "3:4" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_FA729FED55DB423CB796E6380C3BBDF8" - { - "Sequence" = "3:400" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "InstallAllUsersVisible" - { - "Name" = "8:InstallAllUsersVisible" - "DisplayName" = "8:#1059" - "Description" = "8:#1159" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_519E224B02474BA2B8DC4CD4EAE2ACF7" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2C3380451FE74068AF488EF4B6F73D94" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_6E2FF8B7EC244C94908291296E19523E" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8F2D5F455ECB44B3859CD8D454A71C60" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_61D8CE962B314E818663A48C0415867E" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_24A74643C5964C87A797E1A643FF0D0B" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_75F14606DECA4813841F459E15C791FC" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C1A3D09CAB0840249EFCEC6855096B18" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_CA30C9165C5C49C68248727A03AA7A6A" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C87AD3FA8C0A43F7A829C50FC5F1F1CD" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8D56619ED59C40F9B3C655569D7BE0E9" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_E8083BADF0444BC18403655940B69C5C" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7D3124C107AA4B8AB2828C5E89BCA5AA" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - } - "MergeModule" - { - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_02F0ACFAB9234F7F822B893C7DC32F1F" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:Microsoft_VC80_CRT_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_F8ED7A133CD24494B63DBFF35207D7A4" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:policy_8_0_microsoft_vc80_crt_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "ProjectOutput" - { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_08587955063141779B605860D7FF04D3" - { - "SourcePath" = "8:..\\..\\..\\build\\bin\\i686-pc-win32\\ck2cti.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_1DE66EEE44224B05A700D4E2E93A0FB7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - "VJSharpPlugin" - { - } - } -} diff --git a/win32/vc8/Sundials/CVODES/.cvsignore b/win32/vc8/Sundials/CVODES/.cvsignore deleted file mode 100644 index 69b3523a8..000000000 --- a/win32/vc8/Sundials/CVODES/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Release -Debug -*.user diff --git a/win32/vc8/Sundials/CVODES/CVODES.vcproj b/win32/vc8/Sundials/CVODES/CVODES.vcproj deleted file mode 100755 index a681bcb21..000000000 --- a/win32/vc8/Sundials/CVODES/CVODES.vcproj +++ /dev/null @@ -1,252 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/Sundials/NVEC_SER/.cvsignore b/win32/vc8/Sundials/NVEC_SER/.cvsignore deleted file mode 100644 index 69b3523a8..000000000 --- a/win32/vc8/Sundials/NVEC_SER/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Release -Debug -*.user diff --git a/win32/vc8/Sundials/NVEC_SER/NVEC_SER.vcproj b/win32/vc8/Sundials/NVEC_SER/NVEC_SER.vcproj deleted file mode 100755 index 13d8fb91f..000000000 --- a/win32/vc8/Sundials/NVEC_SER/NVEC_SER.vcproj +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/Sundials/SUNDIALS_SHARED/.cvsignore b/win32/vc8/Sundials/SUNDIALS_SHARED/.cvsignore deleted file mode 100644 index 69b3523a8..000000000 --- a/win32/vc8/Sundials/SUNDIALS_SHARED/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Release -Debug -*.user diff --git a/win32/vc8/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj b/win32/vc8/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj deleted file mode 100755 index 88f12c8a7..000000000 --- a/win32/vc8/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/base/base.vcproj b/win32/vc8/base/base.vcproj deleted file mode 100755 index a7188c9c0..000000000 --- a/win32/vc8/base/base.vcproj +++ /dev/null @@ -1,286 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/base_h/base_h.vcproj b/win32/vc8/base_h/base_h.vcproj deleted file mode 100755 index 2c4dbd5b7..000000000 --- a/win32/vc8/base_h/base_h.vcproj +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/base_h/docopy.cmd b/win32/vc8/base_h/docopy.cmd deleted file mode 100755 index b4e83bd20..000000000 --- a/win32/vc8/base_h/docopy.cmd +++ /dev/null @@ -1,22 +0,0 @@ -cd ..\..\..\Cantera\src\base - -copy Array.h ..\..\..\build\include\cantera\kernel -copy FactoryBase.h ..\..\..\build\include\cantera\kernel -copy XML_Writer.h ..\..\..\build\include\cantera\kernel -copy clockWC.h ..\..\..\build\include\cantera\kernel -copy config.h ..\..\..\build\include\cantera\kernel -copy ct_defs.h ..\..\..\build\include\cantera\kernel -copy ctexceptions.h ..\..\..\build\include\cantera\kernel -copy ctml.h ..\..\..\build\include\cantera\kernel -copy global.h ..\..\..\build\include\cantera\kernel -copy logger.h ..\..\..\build\include\cantera\kernel -copy plots.h ..\..\..\build\include\cantera\kernel -copy stringUtils.h ..\..\..\build\include\cantera\kernel -copy units.h ..\..\..\build\include\cantera\kernel -copy utilities.h ..\..\..\build\include\cantera\kernel -copy vec_functions.h ..\..\..\build\include\cantera\kernel -copy xml.h ..\..\..\build\include\cantera\kernel - -cd ../../.. -cd win32\vc8\base_h -echo 'ok' > status diff --git a/win32/vc8/cantera.sln b/win32/vc8/cantera.sln deleted file mode 100755 index dbdbbaa9a..000000000 --- a/win32/vc8/cantera.sln +++ /dev/null @@ -1,345 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oneD", "oneD\oneD.vcproj", "{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "transport", "transport\transport.vcproj", "{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zeroD", "zeroD\zeroD.vcproj", "{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "converters", "converters\converters.vcproj", "{5D8C2EA9-A90C-48A7-A541-180332B941DD}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tpx", "tpx\tpx.vcproj", "{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_blas", "f2c_blas\f2c_blas.vcproj", "{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_lapack", "f2c_lapack\f2c_lapack.vcproj", "{2701B198-FEC1-45A8-BC20-AACA46B64986}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctcxx", "cxxutils\cxxutils.vcproj", "{E342202C-F877-43D0-8E66-D2A7794AC900}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clib", "clib\clib.vcproj", "{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} = {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {12D156A1-1BF6-42DF-8572-416AC1E9FC03} = {12D156A1-1BF6-42DF-8572-416AC1E9FC03} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} = {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} - {8CB43708-231A-4F80-B777-5F0A90CDB604} = {8CB43708-231A-4F80-B777-5F0A90CDB604} - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} = {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} - {D76CE458-2A16-42DD-AE25-E282886C358F} = {D76CE458-2A16-42DD-AE25-E282886C358F} - {127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} = {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} = {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {D76CE458-2A16-42DD-AE25-E282886C358F} = {D76CE458-2A16-42DD-AE25-E282886C358F} - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_libs", "f2c_libs\f2c_libs.vcproj", "{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_math", "f2c_math\f2c_math.vcproj", "{127547E3-416C-4C12-82E9-52F912142FB5}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctpython", "ctpython\ctpython.vcproj", "{ED939A01-860D-4E92-A892-E195CB311AB7}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCantera", "SetupCantera\SetupCantera.vdproj", "{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctmatlab", "ctmatlab\ctmatlab.vcproj", "{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "config_h", "config_h\config_h.vcproj", "{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NVEC_SER", "Sundials\NVEC_SER\NVEC_SER.vcproj", "{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SUNDIALS_SHARED", "Sundials\SUNDIALS_SHARED\SUNDIALS_SHARED.vcproj", "{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CVODES", "Sundials\CVODES\CVODES.vcproj", "{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCanteraLite", "SetupCantera\SetupCanteraLite.vdproj", "{6F530573-5D0C-4FEC-AB81-70FE059BDE5D}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "base", "base\base.vcproj", "{D76CE458-2A16-42DD-AE25-E282886C358F}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "numerics", "numerics\numerics.vcproj", "{AD56DAD7-108B-4E82-993E-1EC6A0DFD209}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "thermo", "thermo\thermo.vcproj", "{5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kinetics", "kinetics\kinetics.vcproj", "{8CB43708-231A-4F80-B777-5F0A90CDB604}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "equil", "equil\equil.vcproj", "{5B4B5866-2B50-4E34-9F00-B5C12677B4B5}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "csvdiff", "csvdiff\csvdiff.vcproj", "{AF888A7A-C325-4312-9BE0-CDA1B1E540E9}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "base_h", "base_h\base_h.vcproj", "{108341B3-6686-47D0-A93F-CDE9E1EDC68F}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cti2ctml", "cti2ctml\cti2ctml.vcproj", "{4F5B4442-98E5-4B11-9239-CDF5148C1902}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupAlt", "SetupAlt\SetupAlt.vdproj", "{5CCFB08B-FFD7-436E-92C8-65A2CB3C83BD}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug|Win32.ActiveCfg = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug|Win32.Build.0 = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release|Win32.ActiveCfg = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release|Win32.Build.0 = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug|Win32.ActiveCfg = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug|Win32.Build.0 = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release|Win32.ActiveCfg = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release|Win32.Build.0 = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug|Win32.ActiveCfg = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug|Win32.Build.0 = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release|Win32.ActiveCfg = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release|Win32.Build.0 = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug|Win32.ActiveCfg = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug|Win32.Build.0 = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release|Win32.ActiveCfg = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release|Win32.Build.0 = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug|Win32.ActiveCfg = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug|Win32.Build.0 = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release|Win32.ActiveCfg = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release|Win32.Build.0 = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug|Win32.ActiveCfg = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug|Win32.Build.0 = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release|Win32.ActiveCfg = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release|Win32.Build.0 = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug|Win32.ActiveCfg = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug|Win32.Build.0 = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release|Win32.ActiveCfg = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release|Win32.Build.0 = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug|Win32.ActiveCfg = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug|Win32.Build.0 = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release|Win32.ActiveCfg = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release|Win32.Build.0 = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug|Win32.ActiveCfg = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug|Win32.Build.0 = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release|Win32.ActiveCfg = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release|Win32.Build.0 = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug|Win32.ActiveCfg = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug|Win32.Build.0 = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release|Win32.ActiveCfg = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release|Win32.Build.0 = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug|Win32.ActiveCfg = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug|Win32.Build.0 = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release|Win32.ActiveCfg = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release|Win32.Build.0 = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug|Win32.ActiveCfg = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug|Win32.Build.0 = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release|Win32.ActiveCfg = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release|Win32.Build.0 = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug|Win32.ActiveCfg = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release|Win32.ActiveCfg = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release|Win32.Build.0 = Release|Win32 - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Debug|Win32.ActiveCfg = Debug - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Debug|Win32.Build.0 = Debug - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release|Win32.ActiveCfg = Release - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release|Win32.Build.0 = Release - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug|Win32.ActiveCfg = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release|Win32.ActiveCfg = Release|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release|Win32.Build.0 = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug|Win32.ActiveCfg = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug|Win32.Build.0 = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release|Win32.ActiveCfg = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release|Win32.Build.0 = Release|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Debug|Win32.ActiveCfg = Debug|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Debug|Win32.Build.0 = Debug|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Release|Win32.ActiveCfg = Release|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Release|Win32.Build.0 = Release|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Debug|Win32.ActiveCfg = Debug|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Debug|Win32.Build.0 = Debug|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Release|Win32.ActiveCfg = Release|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Release|Win32.Build.0 = Release|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Debug|Win32.ActiveCfg = Debug|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Debug|Win32.Build.0 = Debug|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Release|Win32.ActiveCfg = Release|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Release|Win32.Build.0 = Release|Win32 - {6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Debug|Win32.ActiveCfg = Debug - {6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Release|Win32.ActiveCfg = Release - {D76CE458-2A16-42DD-AE25-E282886C358F}.Debug|Win32.ActiveCfg = Debug|Win32 - {D76CE458-2A16-42DD-AE25-E282886C358F}.Debug|Win32.Build.0 = Debug|Win32 - {D76CE458-2A16-42DD-AE25-E282886C358F}.Release|Win32.ActiveCfg = Release|Win32 - {D76CE458-2A16-42DD-AE25-E282886C358F}.Release|Win32.Build.0 = Release|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.Debug|Win32.ActiveCfg = Debug|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.Debug|Win32.Build.0 = Debug|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.Release|Win32.ActiveCfg = Release|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.Release|Win32.Build.0 = Release|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.Debug|Win32.ActiveCfg = Debug|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.Debug|Win32.Build.0 = Debug|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.Release|Win32.ActiveCfg = Release|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.Release|Win32.Build.0 = Release|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.Debug|Win32.ActiveCfg = Debug|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.Debug|Win32.Build.0 = Debug|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.Release|Win32.ActiveCfg = Release|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.Release|Win32.Build.0 = Release|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.Debug|Win32.ActiveCfg = Debug|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.Debug|Win32.Build.0 = Debug|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.Release|Win32.ActiveCfg = Release|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.Release|Win32.Build.0 = Release|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug|Win32.ActiveCfg = Debug|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug|Win32.Build.0 = Debug|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release|Win32.ActiveCfg = Release|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release|Win32.Build.0 = Release|Win32 - {108341B3-6686-47D0-A93F-CDE9E1EDC68F}.Debug|Win32.ActiveCfg = Debug|Win32 - {108341B3-6686-47D0-A93F-CDE9E1EDC68F}.Debug|Win32.Build.0 = Debug|Win32 - {108341B3-6686-47D0-A93F-CDE9E1EDC68F}.Release|Win32.ActiveCfg = Release|Win32 - {108341B3-6686-47D0-A93F-CDE9E1EDC68F}.Release|Win32.Build.0 = Release|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug|Win32.ActiveCfg = Debug|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug|Win32.Build.0 = Debug|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release|Win32.ActiveCfg = Release|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release|Win32.Build.0 = Release|Win32 - {5CCFB08B-FFD7-436E-92C8-65A2CB3C83BD}.Debug|Win32.ActiveCfg = Debug - {5CCFB08B-FFD7-436E-92C8-65A2CB3C83BD}.Release|Win32.ActiveCfg = Release - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/win32/vc8/cantera_examples.sln b/win32/vc8/cantera_examples.sln deleted file mode 100755 index ec2dfa8fc..000000000 --- a/win32/vc8/cantera_examples.sln +++ /dev/null @@ -1,55 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cti2ctml", "cti2ctml\cti2ctml.vcproj", "{4F5B4442-98E5-4B11-9239-CDF5148C1902}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "diamondSurf", "diamondSurf\diamondSurf.vcproj", "{D600ECB2-D432-4E4D-9D70-BF94AEF31485}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "silane_equil", "silane_equil\silane_equil.vcproj", "{290DC5E5-0016-4CCF-84D5-6B997DD3664A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "surfkin", "surfkin\surfkin.vcproj", "{7A87791C-32F6-48B5-ADBB-A8E77DE13E16}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cxx_examples", "cxx_examples\cxx_examples.vcproj", "{0E635864-A310-4468-9D97-9CE67B078C97}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "csvdiff", "csvdiff\csvdiff.vcproj", "{AF888A7A-C325-4312-9BE0-CDA1B1E540E9}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug|Win32.ActiveCfg = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug|Win32.Build.0 = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release|Win32.ActiveCfg = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release|Win32.Build.0 = Release|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug|Win32.ActiveCfg = Debug|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug|Win32.Build.0 = Debug|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release|Win32.ActiveCfg = Release|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release|Win32.Build.0 = Release|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Debug|Win32.ActiveCfg = Debug|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Debug|Win32.Build.0 = Debug|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Release|Win32.ActiveCfg = Release|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Release|Win32.Build.0 = Release|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Debug|Win32.ActiveCfg = Debug|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Debug|Win32.Build.0 = Debug|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Release|Win32.ActiveCfg = Release|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Release|Win32.Build.0 = Release|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug|Win32.ActiveCfg = Debug|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug|Win32.Build.0 = Debug|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release|Win32.ActiveCfg = Release|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release|Win32.Build.0 = Release|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Debug|Win32.ActiveCfg = Debug|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Debug|Win32.Build.0 = Debug|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Release|Win32.ActiveCfg = Release|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Release|Win32.Build.0 = Release|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug|Win32.ActiveCfg = Debug|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug|Win32.Build.0 = Debug|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release|Win32.ActiveCfg = Release|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/win32/vc8/cantera_no_sundials.sln b/win32/vc8/cantera_no_sundials.sln deleted file mode 100755 index 650a0169a..000000000 --- a/win32/vc8/cantera_no_sundials.sln +++ /dev/null @@ -1,180 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cvode", "cvode\cvode.vcproj", "{9BEC323F-1492-4AF0-8081-F8E3761D9FFC}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oneD", "oneD\oneD.vcproj", "{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cantera", "cantera\cantera.vcproj", "{E719804C-1351-4C44-BD5E-611AF464CD20}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "transport", "transport\transport.vcproj", "{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zeroD", "zeroD\zeroD.vcproj", "{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "converters", "converters\converters.vcproj", "{5D8C2EA9-A90C-48A7-A541-180332B941DD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tpx", "tpx\tpx.vcproj", "{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_blas", "f2c_blas\f2c_blas.vcproj", "{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_lapack", "f2c_lapack\f2c_lapack.vcproj", "{2701B198-FEC1-45A8-BC20-AACA46B64986}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctcxx", "cxxutils\cxxutils.vcproj", "{E342202C-F877-43D0-8E66-D2A7794AC900}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clib", "clib\clib.vcproj", "{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - ProjectSection(ProjectDependencies) = postProject - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC} = {9BEC323F-1492-4AF0-8081-F8E3761D9FFC} - {E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - ProjectSection(ProjectDependencies) = postProject - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_libs", "f2c_libs\f2c_libs.vcproj", "{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_math", "f2c_math\f2c_math.vcproj", "{127547E3-416C-4C12-82E9-52F912142FB5}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctpython", "ctpython\ctpython.vcproj", "{ED939A01-860D-4E92-A892-E195CB311AB7}" - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCantera", "SetupCantera\SetupCantera.vdproj", "{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctmatlab", "ctmatlab\ctmatlab.vcproj", "{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}" - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "config_h", "config_h\config_h.vcproj", "{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCanteraLite", "SetupCantera\SetupCanteraLite.vdproj", "{F7607AF2-705A-4046-B7EC-067DEE3BB79F}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Debug.ActiveCfg = Debug|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Debug.Build.0 = Debug|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Release.ActiveCfg = Release|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Release.Build.0 = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.ActiveCfg = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.Build.0 = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.ActiveCfg = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.Build.0 = Release|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.ActiveCfg = Debug|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.Build.0 = Debug|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Release.ActiveCfg = Release|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Release.Build.0 = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.ActiveCfg = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.Build.0 = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.ActiveCfg = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.Build.0 = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.ActiveCfg = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.Build.0 = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.ActiveCfg = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.Build.0 = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.ActiveCfg = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.Build.0 = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.ActiveCfg = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.Build.0 = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.ActiveCfg = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.Build.0 = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.ActiveCfg = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.Build.0 = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.ActiveCfg = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.Build.0 = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.ActiveCfg = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.Build.0 = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.ActiveCfg = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.Build.0 = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.ActiveCfg = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.Build.0 = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.ActiveCfg = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.Build.0 = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release.ActiveCfg = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release.Build.0 = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.ActiveCfg = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.Build.0 = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.ActiveCfg = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.Build.0 = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.ActiveCfg = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.Build.0 = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.ActiveCfg = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.Build.0 = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.ActiveCfg = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.Build.0 = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.ActiveCfg = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.Build.0 = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug.ActiveCfg = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug.Build.0 = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release.ActiveCfg = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release.Build.0 = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.ActiveCfg = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.Build.0 = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release.ActiveCfg = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release.Build.0 = Release|Win32 - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Debug.ActiveCfg = Debug - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release.ActiveCfg = Release - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.ActiveCfg = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.Build.0 = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.ActiveCfg = Release|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.Build.0 = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.ActiveCfg = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.Build.0 = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.ActiveCfg = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.Build.0 = Release|Win32 - {F7607AF2-705A-4046-B7EC-067DEE3BB79F}.Debug.ActiveCfg = Debug - {F7607AF2-705A-4046-B7EC-067DEE3BB79F}.Release.ActiveCfg = Release - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/win32/vc8/ck2cti/ck2cti.vcproj b/win32/vc8/ck2cti/ck2cti.vcproj deleted file mode 100755 index c57325efb..000000000 --- a/win32/vc8/ck2cti/ck2cti.vcproj +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/clib/clib.vcproj b/win32/vc8/clib/clib.vcproj deleted file mode 100755 index 724a659c2..000000000 --- a/win32/vc8/clib/clib.vcproj +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/config_h/config_h.vcproj b/win32/vc8/config_h/config_h.vcproj deleted file mode 100755 index 23b780f96..000000000 --- a/win32/vc8/config_h/config_h.vcproj +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/config_h/docopy.cmd b/win32/vc8/config_h/docopy.cmd deleted file mode 100755 index bc4c21360..000000000 --- a/win32/vc8/config_h/docopy.cmd +++ /dev/null @@ -1,10 +0,0 @@ -echo on -cd ..\..\.. -copy winconfig.h config.h -cd ext\f2c_libs -copy arith.hwin32 arith.h -copy sysdep1.h0 sysdep1.h -copy signal1.h0 signal1.h -cd ..\..\win32\vc8\config_h -echo ok -echo off diff --git a/win32/vc8/converters/converters.vcproj b/win32/vc8/converters/converters.vcproj deleted file mode 100755 index d054bb6f5..000000000 --- a/win32/vc8/converters/converters.vcproj +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/csvdiff/csvdiff.vcproj b/win32/vc8/csvdiff/csvdiff.vcproj deleted file mode 100755 index 8d76d5ed1..000000000 --- a/win32/vc8/csvdiff/csvdiff.vcproj +++ /dev/null @@ -1,216 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/cti2ctml/cti2ctml.vcproj b/win32/vc8/cti2ctml/cti2ctml.vcproj deleted file mode 100755 index 4e52e7b32..000000000 --- a/win32/vc8/cti2ctml/cti2ctml.vcproj +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/ctmatlab/ctmatlab.vcproj b/win32/vc8/ctmatlab/ctmatlab.vcproj deleted file mode 100755 index 5084ee484..000000000 --- a/win32/vc8/ctmatlab/ctmatlab.vcproj +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/ctmatlab/runmlab.cmd b/win32/vc8/ctmatlab/runmlab.cmd deleted file mode 100755 index 0355181b1..000000000 --- a/win32/vc8/ctmatlab/runmlab.cmd +++ /dev/null @@ -1,5 +0,0 @@ -cd ..\..\..\Cantera\matlab\cantera -echo 'delete me!' > ctmethods.mexw32 -echo 'delete me!' > ctmethods.dll -%MATLAB_CMD% -nodisplay -nosplash -nojvm -r buildwin -echo 'ok' > status diff --git a/win32/vc8/ctpython/ctpython.vcproj b/win32/vc8/ctpython/ctpython.vcproj deleted file mode 100755 index 75cf85cb6..000000000 --- a/win32/vc8/ctpython/ctpython.vcproj +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/ctpython/runpython.cmd b/win32/vc8/ctpython/runpython.cmd deleted file mode 100755 index edb0b07b1..000000000 --- a/win32/vc8/ctpython/runpython.cmd +++ /dev/null @@ -1,5 +0,0 @@ -cd ..\..\..\Cantera\python -%PYTHON_CMD% winsetup.py build -%PYTHON_CMD% winsetup.py bdist_wininst -%PYTHON_CMD% winsetup.py install -echo 'ok' > status diff --git a/win32/vc8/cvode/cvode.vcproj b/win32/vc8/cvode/cvode.vcproj deleted file mode 100755 index 543629dcc..000000000 --- a/win32/vc8/cvode/cvode.vcproj +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/cxx_examples/cxx_examples.vcproj b/win32/vc8/cxx_examples/cxx_examples.vcproj deleted file mode 100755 index 59dc8cf69..000000000 --- a/win32/vc8/cxx_examples/cxx_examples.vcproj +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/cxxutils/cxxutils.vcproj b/win32/vc8/cxxutils/cxxutils.vcproj deleted file mode 100755 index f98ceaf91..000000000 --- a/win32/vc8/cxxutils/cxxutils.vcproj +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/demos/CanteraDemos.sln b/win32/vc8/demos/CanteraDemos.sln deleted file mode 100755 index fc9c792d7..000000000 --- a/win32/vc8/demos/CanteraDemos.sln +++ /dev/null @@ -1,61 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "demo", "demo.vcproj", "{F0FBA57E-6E65-46E6-9DDD-2625E7082189}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "combustor", "combustor.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "flamespeed", "flamespeed.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kinetics1", "kinetics1.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NASA_coeffs", "NASA_coeffs.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Rankine", "Rankine.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Debug.ActiveCfg = Debug|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Debug.Build.0 = Debug|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Release.ActiveCfg = Release|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/win32/vc8/demos/NASA_coeffs.vcproj b/win32/vc8/demos/NASA_coeffs.vcproj deleted file mode 100755 index d2f08d3cd..000000000 --- a/win32/vc8/demos/NASA_coeffs.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/demos/Rankine.vcproj b/win32/vc8/demos/Rankine.vcproj deleted file mode 100755 index 72d74ffc6..000000000 --- a/win32/vc8/demos/Rankine.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/demos/ReadMe.txt b/win32/vc8/demos/ReadMe.txt deleted file mode 100755 index 91c0ae7cf..000000000 --- a/win32/vc8/demos/ReadMe.txt +++ /dev/null @@ -1,12 +0,0 @@ -The project setttings assume Cantera is installed in C:\CANTERA. -If this is not the case, edit the project properties before building. - -The project settings that differ from the defaults are: - -1) use of multithreaded DLL system libraries -2) specification of the Cantera libraries as additional - input for the linker -3) specification of the Cantera include and lib directories. - -These changes to the default project settings need to be made whenever -you create a new project that you want to link to Cantera. \ No newline at end of file diff --git a/win32/vc8/demos/combustor.vcproj b/win32/vc8/demos/combustor.vcproj deleted file mode 100755 index 19dbf9fa2..000000000 --- a/win32/vc8/demos/combustor.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/demos/demo.vcproj b/win32/vc8/demos/demo.vcproj deleted file mode 100755 index 1a94d3b8e..000000000 --- a/win32/vc8/demos/demo.vcproj +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/demos/flamespeed.vcproj b/win32/vc8/demos/flamespeed.vcproj deleted file mode 100755 index e6a7b1e7c..000000000 --- a/win32/vc8/demos/flamespeed.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/demos/kinetics1.vcproj b/win32/vc8/demos/kinetics1.vcproj deleted file mode 100755 index f55ac2420..000000000 --- a/win32/vc8/demos/kinetics1.vcproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/diamondSurf/diamondSurf.vcproj b/win32/vc8/diamondSurf/diamondSurf.vcproj deleted file mode 100755 index aad489c77..000000000 --- a/win32/vc8/diamondSurf/diamondSurf.vcproj +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/equil/equil.vcproj b/win32/vc8/equil/equil.vcproj deleted file mode 100755 index ad6164a5b..000000000 --- a/win32/vc8/equil/equil.vcproj +++ /dev/null @@ -1,391 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/f2c_blas/f2c_blas.vcproj b/win32/vc8/f2c_blas/f2c_blas.vcproj deleted file mode 100755 index 1e3cf5fa0..000000000 --- a/win32/vc8/f2c_blas/f2c_blas.vcproj +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/f2c_lapack/f2c_lapack.vcproj b/win32/vc8/f2c_lapack/f2c_lapack.vcproj deleted file mode 100755 index d332eca1d..000000000 --- a/win32/vc8/f2c_lapack/f2c_lapack.vcproj +++ /dev/null @@ -1,440 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/f2c_libs/f2c_libs.vcproj b/win32/vc8/f2c_libs/f2c_libs.vcproj deleted file mode 100755 index 19ce27bd4..000000000 --- a/win32/vc8/f2c_libs/f2c_libs.vcproj +++ /dev/null @@ -1,842 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/f2c_math/f2c_math.vcproj b/win32/vc8/f2c_math/f2c_math.vcproj deleted file mode 100755 index 62b3a26dd..000000000 --- a/win32/vc8/f2c_math/f2c_math.vcproj +++ /dev/null @@ -1,280 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/kinetics/kinetics.vcproj b/win32/vc8/kinetics/kinetics.vcproj deleted file mode 100755 index 9ba9ea9d4..000000000 --- a/win32/vc8/kinetics/kinetics.vcproj +++ /dev/null @@ -1,315 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/numerics/numerics.vcproj b/win32/vc8/numerics/numerics.vcproj deleted file mode 100755 index d067963eb..000000000 --- a/win32/vc8/numerics/numerics.vcproj +++ /dev/null @@ -1,292 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/oneD/oneD.vcproj b/win32/vc8/oneD/oneD.vcproj deleted file mode 100755 index 3b4aa3e5e..000000000 --- a/win32/vc8/oneD/oneD.vcproj +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/prepreconfig.vc++ b/win32/vc8/prepreconfig.vc++ deleted file mode 100755 index d7110fbcb..000000000 --- a/win32/vc8/prepreconfig.vc++ +++ /dev/null @@ -1,96 +0,0 @@ -#!/bin/sh -# -# -# Sample bourne shell wrapper around Cantera's configure -# shell command, used for building and installing Cantera -# using MS VC++, without fortran support. -# Copy this file to the top directory of the Cantera distribution. -# Edit a few directory locations indicated below. Then execute it -# after autoconf is run. -# -# Tell Cantera you will be using a VC++ compiler to compile and link -# all of the programs -# -USE_VISUAL_STUDIO="y" -export USE_VISUAL_STUDIO -# -# Specify the root directory: Will need adjusting -# -CANTERA_ROOT="/cygwin/c/vc_env/cantera-1.7_develop" -export CANTERA_ROOT -# -# Specify the install directory: Will need adjusting -# -CANTERA_INSTALL_DIR="C:/vc_env/Cantera" -export CANTERA_INSTALL_DIR -# -# -# PYTHON_CMD: This is the default location that Python24 -# puts its files. -# -PYTHON_CMD="c:/python26/python.exe" -export PYTHON_CMD -# -# WIN_PYTHON_CMD: This is the default location that Python26 -# puts its files. -# -WIN_PYTHON_CMD='C:/Python26/python' -export WIN_PYTHON_CMD -# -# These 2 next lines tells Cantera and Python where to install -# the Cantera python modules. -# -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR -# -PYTHON_SITE_PACKAGE_TOPDIR="C:/Python26" -export PYTHON_SITE_PACKAGE_TOPDIR -# -# No matlab toolbox in this script. However, if you have matlab -# on your machine, you can change the "n" to a "y". -BUILD_MATLAB_TOOLBOX="n" -export BUILD_MATLAB_TOOLBOX -# -# Indicate that you will be using the clib.dll -# -USE_DLL="y" -export USE_DLL -# -# HKM -> note config chokes on cl.exe . It can't interpret the -# needed command line arguments. -#CXX="cl.exe" -#export CXX -#CC="cl.exe" -#export CC -# -CXXFLAGS="-g" -export CXXFLAGS -# -# -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS -# -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -USE_SUNDIALS='y' -export USE_SUNDIALS -SUNDIALS_HOME='/cygdrive/c/vc_env/sundials' -export SUNDIALS_HOME - -# -# Call the configure command at the top of the Cantera distribution -# in a cygwin shell -# -./preconfig -# diff --git a/win32/vc8/silane_equil/silane_equil.vcproj b/win32/vc8/silane_equil/silane_equil.vcproj deleted file mode 100755 index e528ff432..000000000 --- a/win32/vc8/silane_equil/silane_equil.vcproj +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/spectra/spectra.vcproj b/win32/vc8/spectra/spectra.vcproj deleted file mode 100755 index f00a36d33..000000000 --- a/win32/vc8/spectra/spectra.vcproj +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/surfkin/surfkin.vcproj b/win32/vc8/surfkin/surfkin.vcproj deleted file mode 100755 index 367ed4bc7..000000000 --- a/win32/vc8/surfkin/surfkin.vcproj +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/thermo/thermo.vcproj b/win32/vc8/thermo/thermo.vcproj deleted file mode 100755 index ce04bfef3..000000000 --- a/win32/vc8/thermo/thermo.vcproj +++ /dev/null @@ -1,651 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/tpx/tpx.vcproj b/win32/vc8/tpx/tpx.vcproj deleted file mode 100755 index 6e170e64f..000000000 --- a/win32/vc8/tpx/tpx.vcproj +++ /dev/null @@ -1,272 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/transport/transport.vcproj b/win32/vc8/transport/transport.vcproj deleted file mode 100755 index a43ad54c5..000000000 --- a/win32/vc8/transport/transport.vcproj +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc8/zeroD/zeroD.vcproj b/win32/vc8/zeroD/zeroD.vcproj deleted file mode 100755 index bac43c2dc..000000000 --- a/win32/vc8/zeroD/zeroD.vcproj +++ /dev/null @@ -1,252 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/SetupCantera/SetupCantera.vdproj b/win32/vc9/SetupCantera/SetupCantera.vdproj deleted file mode 100755 index bf3bba8f7..000000000 --- a/win32/vc9/SetupCantera/SetupCantera.vdproj +++ /dev/null @@ -1,23890 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:800" -"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupCantera" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_000E0B5AC6264DA3BEC0448B32F52663" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0067AAD709D94D2693870A06ECD55183" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0170832FE2DB4AE0BF9768C53BE03A84" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_020F278C42CA4A2B96388903D1752C62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_022EDF1564FF4680B6AA609CE897983A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0259622D90D54F99BA22C55A83DE0DD3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_02F41A2FCFD346D8B7CDB9C14E5BB319" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0366A82A86EA4F1CB1AD5F4D462B3787" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_040D88A3581F47CEA206D1688FD6EA61" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04C83EB86A3C45AB93638133493E5923" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_051107F9F8CE4364AC76D00D23F8B7C5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05690F470DFA457FBF7C925A8420EE5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_056E63AF596746FA840673460F3467BA" - "OwnerKey" = "8:_0E292CD01C814FA9945C45A7BA9E1065" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_058317BC8A364FC684F4FCE559188827" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05BEF1452C824F2AA870077D31CF1BF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05CAF5CE4E764B92BCAA4DE1A10481E7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05EE24E611E74A1C88CE22420CA5500D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05FE255C00F74DAEB6BFC00A32066DFA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0660FE555E5B433194898E32C6ADD273" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0699BFFC081341CEAF618FBFBBA1241E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_06B3045D93A84917A8E324374A8211F6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08587955063141779B605860D7FF04D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08B40A34D407447EA66C614C4E897E1F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08C0F7C9789B4E3F8D09411C89DD0509" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_099E198F6C01436DB271857F1309977D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A01A5CC173A4619BBAE80DFCE7B23B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2F83F932A74CAABB87DEEAC1B9536C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0ACC7910CC8A46E38521F8A78AF253D2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B0170BC983349DD945697DB4576507A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B09C9A0BF24498399548814F95D1EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C8BFBA19BE949699F417570F8C69B5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C9010E357C748BEB820CF0E830F09DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0CC005AA0F0842E4A33867605A8E4A57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D0FFCC38C4645D997283F1C5CED5E06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DD6AFC117E344BD826ECC698152F9AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DDF1766C6A04C76AE6AF7FBC35E471B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0E292CD01C814FA9945C45A7BA9E1065" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0E91AE53B0354697B206E79EDEC8951D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1049E82786DB4EB2BDEFF972136B0F19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_105638BB017C47DA814720D4C027908E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1089BF66E6BD47E597259E9AF2B35F20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_111A0970D7DE4C99AFE08278C8345DD9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11553AE6EA7A424D9621E724DFECC70F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11AF9ACB25D6477DAE6906C2F6F688CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11E4F38118B54DC680D5CB741B29BE8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11EE4F61EA0740F1BE63419C7A48F185" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_125E1AC217CC40BD8F4534E875CB9D0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12BF22BA87424178B29DB07E669C3501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12F1E24910DD409E860D4F79A338EDAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_134B726C2CA94BF5A67C3ED7F799D502" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_138E90C26F6041339FF2678ABF07E5DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_13A678CB790646B69DF1451D34265FA3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_13B73567FBB1470E9244F3636ED90E55" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1420A489C89E4859ACE78FD5DD27C00A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14580E5B948E47509A941AA338014D25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14738B23CCC74201B3F3619639554DD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14AD021265F04D30B380659740DE2D56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14AE958921E548DBBD8DC6FA834FC532" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14D64F0F7ED94D29A7A8DAD77FCCED13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1549C4E9E5E0434983C533B9D0CB8B49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1556C8B42E0649DDAE01655F4D1C970E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15722A4BDFA44650ADE1764C5B1EBCC5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15D3C38D37A94D67B313EC3B57DA2AC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1605E31F88584B5BAA367FBA56A3EC57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_163414A541654AEB93A16D60F2652F7B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_164F9AE8646F49A28EDD39E09AC0B23E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C0D130AB2748E6890B937071A27A0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C40536EB0A45658DF4EC29D7CBBFF9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16DD6B492C274AC6BA6ED913C513A10B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_17873678EB8F4A3AB2296EB4E4483220" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_18712B731C5F4CED9DD70EC680C9BE15" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1889FAD37671415E95CCA5B1BCAC9E32" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_18DF044BD81E46C98CCC861C36FC01AB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_192952F5A5D249D78FC7B767AB938A1B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_19ADCC34CFAD4F88869FE56CD072F5CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A3D179D05C74A909F2B5B6E254459BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A68BCF036214AA58BDB24F63A44099F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A758A2D9CC24D13A732C1F61D692657" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A927F880A454469B90682B004B9D129" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A951008962D4A65A9A9653673049010" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B053CD5461740CB891855B80F250AED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B9B881AE09F4714B246FED31A2C52C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1CA7BB938C7D4C37BB5B6A9E4F73E489" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1CB5CF459BDE4DCEA0D61D95E6707D99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1CF9D451D1C24D9FBCD9719CC24D8956" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D0B3F7CDFF14AD2A879AF1565D65509" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D7106B99F8D451CA0562A6C57C2CC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DB52E3C2B4B4D63A2825ED896417F4D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DC1E7E2F3D94D77BA47749A06D1AD12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1E0D34F6C6104102A9D06C141F3F763E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1E985699F79A4F80AAB40741735DBEBE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F6340B91C654BDAB4FDCA7B545A9ADD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1FBA13F4B8CB4E1A81BB5FDA1194E6BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_204DB7F700684ABFA12A29185D6CB5B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_20D3DE8A9BA14C91A9C2FFE7EB36603E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2170A16C95844A6291342D840D1BB498" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_219FDC3ACB2A4C81935851A9CAA7E1EF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21EB392DF37A421CABBDA197A9226C0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2278673C1CB94B89B0F33D7D7588F290" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2279B9FC61AB4F3AB7F0A0F58F3BD071" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_22CC1F00E98946C0A5C82185C43DD97F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_22CEF13E79D94C419D5EF6986741612D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_232F4C7716264866BDEA07B97B583460" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_235972FD19834CC49568823B639F6056" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_238BB4062E2B488FB10D3107F74869C8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_23CE4DDD38054CA49B17BEEF4D728230" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_23F24F51C12448E8B99577D4D359CA48" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2423A94DD42C4B89A532018CA915F0CF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_248688162FD145F4AA11063A3A5ECFD6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_24B49E09AB96421BB8639B0CBCB23A1D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_24B6F64B4FD046B3A9F26BCFB9621B1F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254CA5A242F04444AB0F18F9ECDD091B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254F288B4BAC4BDFB4B21E76747FF336" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_256AD3D2AEC6410FBF4F5E3B945925A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_25A650A6EF324949A3604908CE2112E7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_25F3A3CA11F8464AAB68B5C04090FB61" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2656FD40F3784C588D4004D409B0F80E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26A7FE2928CE45CDB52C4B3326A33951" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26E683AE357D4F70A3DC3C57295541D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26F0BA63411646978592D51F26AEA36D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27549892F823435798B476FC52F3F012" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27DE8E5E29574E81B2D3ACC4E87B9637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_28BF9CA142EB4988A4B1366304D93917" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_290E7C7E5DF64841B1F913EEFE006069" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29200BDEF8B44EC69E128788F4E09B16" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_299CD5580EB645D191532FE4F24EC6CF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29CA5AAAF8D342359823BB1B4CC30E95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A0106C002434337907A10A979B6D97B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A1589369A874D0EBFFE3F6D98426A49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A358D00247749D8B1F2C9B3DD913939" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A962975342142978B3DE11A20C9AA52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2AA7C0041FC74F718A561EF0696DCB45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BB4BE1E38E641C2B265A596D043AF25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BB57D6845464ADFA0F107F511FFEEF5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BC84B66CFCB4348AB644025BE8CEA68" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BE3348DF5ED45EC944DDD5BFE78A865" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2BF22A40402F4580B200414A32936177" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2C2891784E02439F8A77C62FB10A7758" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2CADD379818D4D128CB3E53D3E566601" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D09076E55604C73A82892D474E11779" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D5D40F1EF034AD3A2757714B66F1A11" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2DEE49E2A7B4424E824CE5D0FB2846A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2E1D802885914276A918F17E040A09D1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2E96E842BF704E05B248FE9E9474674B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EC7B0A350C34DF0B88C45A54FBFCC99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2ED30B81981D48DD93B5D82BD4BD44BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2FAD4B54152F4F698FC2A1BAF8831599" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2FC09AAF5A4C4E998211176C5262A084" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_303F2BB4ADCE4E0F9B2B45747E66C057" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_30A47D7D93D84874A41E1782FDBCEAAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_30B3C39CD6444421B6418F00C5013828" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31AD332AA56C4DF190FE6D941FAAFBFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31E9E8DFB7144795A05AEEE66B279AB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32A08E26D90A41869BE37A47450DADCC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32EAE5622F7540E4AC357D8D1CE10D8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33C1BA231B1F42CDAD49F0298167D9BB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33DBCAB550F1494AA40EFC4ABEFBADC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3450E67DE4E1425B8B41AE70CA5BEEE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34722C3A5A5F4217AD66444E408BD476" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_349A87700DEA427C88D340397A9BF256" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_349F239FA90543188EEC8B24410296BE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_35C660FB7AD5450692D9BD8417AE21AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36101E75F83548D9864D35DB07B7612F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_362E5E6B9766498182C5008280A41BD2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3680F9CE2F25442489E0ACE568906072" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36C2D841FA684319BDF30F2B68589637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_372176D2A2AF406DBD625F54972DD57C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3778A89EFC6C475E8AFE84940043B8DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_379A958666C0409F82ED9D1C390CF2DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37B9F5E138A645AAA6CE6C3A36E5361F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37DD28283FAE43A78586C3D99D999022" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37F5B433E7DE450A995FDB31F909269A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_385781B4728F417C82E6B75637E10AE2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_385C8980D3A44A2093CD638714277678" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_389AC795E7E842888394BE52A051FA12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39905D4925564C469DE3CBE980978999" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39B2C611CD84448489F8AAFF5BD8AB28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3A49848C6AC948D8A7CB60B10FE0D83A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3AC42291E06E4768B0D87839DC9B9E77" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3B00646190674532ABC512E89130A0D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3BE1A06F6E6840F996050C94AA740686" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C17B401E0464701BB1C7948164C30AD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C4A157925824371A0036E03B719B89F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CDB43EBBFF14ED58EA458CC84B18F9B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CFA27135C62465085AAA4CF042634A8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CFA6387302F446AB7938595154FF208" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D56811387944E55AD39C984228C4EAB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D5BF771EBBC4AF0AA84C1E114FABEE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E35E9D3EC6141BBA820F7D01B815B64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3EF615A4DD26446799672090D51EBDE8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F96D57E8F9E461F8C90E0ACB1C937D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FE261F2E167434D804087B6019EB309" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF4115C0C3E4C1686E79FBDDD2387B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_403EF1958EF24BAC9D6D715D0A993803" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_406AF99237D3409BB85917A5A60F74ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_40E56E51E02745B4AEBA40660CEC686A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4112A1F6C299475E8562339C3C38AA30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_411BB46D848848E492899FDC17C2D1CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4144EDA2CE1A466F80088CF6F5482CC0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41915DD244F142089CE3793E90B3DF12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41BB99990E1246928D44C3F17942116E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4207771E67BA4E4794A2397BE181FFEE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4254D2D0022C4F1EB474B3635BDB1266" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_426E85F25D874E3F8F14D31E41AACF51" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42A0DE2343CF4D5FB768588C28368E2F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42CE73EDA2964A82BFAF73C2CB6E4B7D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42F68AC09DC0410C8B66213635F5C982" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_436F32BB3B714A24A6B5FD1BC342A9D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43C69E8F23BD4919BB63BD40909B3759" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4401025D0D424A86B6C25A9B34792A95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44312EB878254560A66978A2E8304A92" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44512354EA8C4577A9085C81B028A63A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4479546E1AAE44FFAEFC0A710BA2E8FA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44DD06CC20DF420A998E2F1D0B980A99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_450EF4722F9B40F5A7A85BCA48C2CC20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_451FADB3D70145F9BF8D235E092B637A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4555B1D563634B6AAE88E0051E34DCE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_46482802B89A4F9594C4C39CF0441C65" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_471DA45E05AD445EB7B143657DB4688C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4761AD8D69E841E298EB859CE92727BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4783AD3526B547709409884B6091E0B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_47F3CF4BEA29482B95C1AFFF8F6C8145" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_480527309EA14538802C74D4B190DBBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A22C4B2BF8947AA8789A8558BE2F728" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A34080C008B4F63A073D329C0B47ECA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A677774412940DEAF6AF1EDC27A3C58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A76C0FA9CF84058918F0E1F8126D049" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A9D96662A6C48C980D6FCCABF7CFE20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B3F9D28B70C4E339662B2029BC4027B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B60DDE68DB84E76B59AC82DD6A48B63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B9C0B2304BF45D3B6A94AB1ABEF6910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BB20697D6B74F4C8917A9D04AA4A240" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BF9981AB5684655AC520EF2C245AF5C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C18112956A24BF6A1BF387E433469DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C3A5DFE89B844958212C21C4A8DE2CE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C432477911B4A8596B03914FF5916C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C9C4D481569458FB7B6C4535E474399" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4CE041E0453E4088900BEF68B80427D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D48D12F66B44E83BB214AAFD8B311C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D71E06EFE884CABA33151E1C5263C86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DC82D064F6147E1B333AA027B89F749" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DCD79F33434471C82E0AF768F55ABDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4E5E333FAEC14ABFBD58531E8DD3C26C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4E67F8AB73144D67944EE83F06E06040" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EA368FFB8E84A9C88A4BEF0FAFC5A3A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EDBAF4F0C8C401695EE60D9184C34EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EEA2D8311E542998617CB07AF269FD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5048D18ABBA04F1ABD69A18075601D4C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5072AB7D92454CC39627CAE67CAD2E6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5095A6E6BF554FEDBAEF263F05DDD77B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_509B9A1248FA4683A81BBBA1303BBE71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_50BE0A8057A64D38862D65984EB9CD88" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_50C880EA8AD04F98ACC7B17C25481323" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51E0B210177949DABBDC9E382016C5B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51E2B9E78A964BD383DD8FD460AA4BEF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_521AB345758F4DE2BCCE824F6E10A19A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52519B41A4064DEEB452445FD3550B6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52F34CA3B6284884A5FF333B2261DD88" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_533E20A890AF4129A378968FF67AF0A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5359EA42B033411BA9ACEA14D4292527" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53DA7F1154AD4808A379EDAE1B4202B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53EA1C41778744F09879AEAE0BAA0233" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53F7FA910CDC4CDEBD4257B5798B1B68" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54161044EDBC4F718F7FEE349189D1CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54649A08925747FC887AFD20755FB76A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54A0EE28997D4BAFA2E782BD6448A658" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5571BE3AECFC4E599F4A538E40620D21" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_562372D5415546AD844E25834E0DECD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_563B1EC810F6456AAB99D37132792433" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5662A7CD4D8C4E5F947A6F355C20C1A2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_567A83C285154238BE6C478046C5BAFB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5790A0F9267C4FA88EE7DF95DB07A8A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_57E6A3FDFDE34C75840B0908431790A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_589104AC830A4577B736D1106E7955A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_58EB415F05014A608F1D6B281082D92F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59166DBD45564A4195E8A079862D7DF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59245571144542D38FEC0EC1F00503B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_592F2DC945B24BDB801B54E965A109D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5939C6DA148E4B918D12A3F0CE7DC863" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_595064E84283443CAC06EEF5106C0641" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59A2A6B397EF4B649D07CA5B10A1D1C8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59AA52C5E25745589B34218C6B13216B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A494D5F32BD411D861645EF9D5CDB73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AD1E279C6CD48B09715186E69A55483" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AE86752EC8A4B54BA6494A9F33FFC71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5B070567B4124B929F20C826CD87ADDF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5B27B82837184966986697D84EAB8146" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5B345CA34B9B4A7083BDD2FA9FF9C8B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5B8B28601AB74E219F5FEF5F2EB9F01D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5B8BDA463997482B8E4B38A6883B9F20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5CF936560FF2465682DB2D4643C37441" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5D50FACA9AE548919661678B7562D727" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5DFA2ECEDEB446DDA04762D262A2F376" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5E55DD812945431BAFCF8E3595428F15" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5E6021DD18EE41D8BA4C00CA071A2124" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5EBBDFD79C6D4331873E595874008962" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5F680C78BC254BFF8F45CFC07B3C1347" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5F7CAAD1BF2A476288C013604222BBC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6006C6D0EC294FC39274776F6EA12BCD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_601B1AAC354E477ABB10113E35D7B43D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_60571A0C1CC14E77AB558ADB65B78D30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_60D94AAFB6AA45F89A490D537326B0A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_61151103C608408DB35D78567822421D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_611E4F1900564CD88F755749C3B89219" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6146460859434DC6B46784970DBEDBAE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_61C9DB5B055E4231B975615A8859A10A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6221061E3BD647AF89BF4AD1785DC9EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6263283A4DC1424893235D92CA5C7F32" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6349662626C947BC91332BE085230672" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_637A29A294854BEB94243A2E2BE72725" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63F7E804AA36436E9766AD90A1559698" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_641E5DD328FC499FA9E9E2BA97E138D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_64BFD140F3C9407497F177F7920CF70C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_655DC211FDA743B8AAE2A254B8D24127" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_660FB1E1734442FE83CFB2A9CD93280E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6693B16E7E2A4AE3ADC494334E18058F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6725A6F15136415BB26BADDD3CF96F66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6728976522BA4F4BBC490ED099A22916" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_675DF947A58B4BAB9DCCF837D18044E9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67B4668A9613497EAD89E4D9D5CDA7B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67EEC6CEAEB7420BBA0A70992A33175D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_68169AF538624ED5B186C338EE30F4C8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_698CE4C4A1BF440CBD28B8785A3D9F19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_698E1FE2069C44AD8727EDCB59AFF2F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A9D618F4BAD480B82EE6F7A7EBFC5F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A9E2F67751E4036B32A3F73F389F4B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AAD2BE4779D4141B7F3175116575B70" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AC7C33351854C93B3A9E0ADCECF0100" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AEC5D1E91784853A899657570B75158" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B4133DAEDD847D9ADB436F3A9E515BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B62C2B086DE4A74ABFDB909919F3B1B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BB63A2172964772A16E8C5DC8FCB473" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BF0F3B78ACB42BEB1F321B053DE8255" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6CB316A9C7F34E219EA8460990124C07" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D020030302F41549FD1141A91CA6BA2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D7DFA49CD7F422597521F6BC18DBEAA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6DE44E9F30F44007B2E7B044619759A2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E40F711DE6E4C15977B10FEBD1145B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E6713375FC642C3A0632A59F17D60E7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6EAB3FC0E0224271BA4985CA3779D862" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6F1E0DC55B9845DAB4FE758F0B54914C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FF6BF505F0442DF81B97A7B0DACFF53" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_70297F7EB1434F9FAA59A5A015747606" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7086E515306342B7A4A3EB7E47148FEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_70AC20505A614EC8BD0935D46C48C917" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_70F7102F07A84B8DB4E3D5FD338F5540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_71188FBDBE8C4C52A89AFDD622B108B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_713B640959AC45A78E7B9AE581F86E14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_715760DB29D349BC81FFA61C5AE33F17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7189BBF81A8B46F596C2D94D52CA15DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_71FEE454B6604E2592820EDDBF4B9B3B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72C19E279C1048D59F0DDED03719FF90" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72F9F17B043C4818960ED80D5809861A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73514E9BC5F44C509C562E01E8A958C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7371B6545BE04A179D3611DBA99BC2CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_738E966D4DA74FCE8C40B58983F4DBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73F2A9908B3D4174BFE10B56DECDF6AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_748B480FBFE048E8908EF0D5DC978E87" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_751FCF7F6799471992B6C1D080421B25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_75BE33EC2FDD4D92831EC94E3583F2E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76175107E4CC4459ABF6F887224C85F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_764D7127961644B186D3F90292091805" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77579BAF22FE4F6BBA6F6E55C2227394" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7774CD885BC1422CABE117B602355EAF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77A9AA9EC6624BD592C9D29EC6F94989" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77EAFF9FBF464DF08EFF37113E7DFC96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78A88A902EE84766911446EF648B4A20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78CF2DC24832474C9EC5304ABA596D6E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78EAF772B5414C25BD4EB77E1CE069A4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_793996EB3E1F479CA275A7CEB5851658" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_795887D785084824B7284296DC74B527" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79674E6058F048B1B7D3CFFBCBC41561" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A44C47D4CAD464A97B0209D14C65139" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A639317418840CC95575AFDA89539F7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A9AF6339376421580BF6E8028871929" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7AE8B40AFA7241769B5BE31427ED582B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B7753AD699149308A9D8CED65455D7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7BE4FD7D976D4900BD24BD9AB7501E99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CC6FCB9F695423782EC53DADE5D585A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CDF724656054425BFB271F06BD2367C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D3DAEB7E7C647309752BD3A02876B72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D867A3EE9034A2ABB13B35762290436" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7DD2BAB195754859931B7B5AE308FAFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E12BAE0A2924E5B83533AABB0BAC4DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E3C43DD94004F36B0C814ED81CACB20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E40B44934374E2C986A8908F00523D8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E674FA1D43F4F8FA3C0E02DB78E0AED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E6FC70ED43A4A3293D06D67EBA76D30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7EA80C1EF9194C0B8790BBFE6CFF7C10" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F2FA130741D4EC0BE2D86966108FCDD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F82322C27494517A818285E796783B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7FC1EE2D828D4E0C9A209479895AE0D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8106318CEF394350AED3B89BE5973CD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_812FFA9EA6DC43FA8D244219CD7096F8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_81812B7D110C414C960813023A134932" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_818FC04B27FA48F991F1F27AF1A02D2B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_82727AA7E07F4E739D5D2373354378A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_82CA2F512C5343BDAB3341734D58FBFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8316AAAC7D124D08AC76B1E9B1B71597" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_83393619A55E4551870EB738FB1D5C4E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8354660D2436459FBA8CB92DB7B6E337" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_836038144044405AA1C2EF4B70441D38" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_838BEA5EF8254762914B08B917C1F7ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_838EF83CC5984E339442887CB2A83FC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8392F052F9604AD6A99C28412715DA30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_848A110B76D949EDB0ADED7CE6454C31" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8549950E280A4786AA6D4BDC9AF44DFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_854DF9ED3FF741069B2D162A049D5E64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85C910D16AEF4A4C9569503ED54C2E97" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85D870ADC88A4F87A4AD54AC91BE3F54" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85DB813C30EC48A8A5B8C91E10645CEE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8621C91C5A2D4D9EA50AED521E7FB7CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8644F7E4286B44BF849798AA1F3EF62A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87132C070E1540D8A4B033B0E98880B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8729B2D3CFC043EAB78F286D76787B78" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87399508B62F47D0BC5E993FD3590D0C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8768926E874F4BFA9F36BBCC563882F3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_878CBA68A74A4569983B332DCCEEE813" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87CEEEEB6DBF409FACD5794BCBD35B3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87D616A7501545E899208A74F7D28235" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8801CCC3E95F4B098645DB0BF445E0F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_883D69622DD84D3A8A0D79D522CDA96B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_883ED26352B04EDEAD89A3CF9C86A55D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_888BD7BA9EC64ED59283DB69834E4BA9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_88C7677DFAD94E838F62E0F1663FA36A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_896518E51E604EB388922C7AB451EA56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89B32FBB4FF441CFBCF0F830E202A7A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89F1C726748E4E57ACFDFC467114BD09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A0AEE06B352402FA6E6C5A73E042713" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A432F8B24A842C0A70A2D8FD906E798" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A44A594199C4334B78F3AA5D6532ADD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A5883FE50804063BBC8EE8DA9BE78DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B0D72F9F1AE422C81E4923414EB4C13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B6199C9EA65475D9FC6C0CE792EA501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C16EDF915404D23BB491F51467D0612" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C238445125B4DEFA1FCA671D9D4A328" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7D8CEB11024B759FC6F809723ADF7A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7FD926CFA648FB9CE0ED24957F591B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C9645906D2B4435BF0DDC85F14F5CF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CB8ABF1BC42493F8C6451072245546C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CCF6467ECF34EE59611670E3645C719" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CDB9C24D5594BB2BEC1EE74C8FED863" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CF03958D7D44F7A9B30BCEDFA55CD0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D346FD7000B4F0AAF57691DB6BD9CDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D3C554266D94991816CFFDB66F29AAE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D419E40A1674FC9A198BCD3410D643D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8ED76386711346E3BF3D43B2C65D5F6E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9038E6B538DE4653AF9E77498DC5C9ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_904FCD6D55B842029CEF52AEFDEA4256" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_907955714C5E41C3A0C82F4633DEBAC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9084333D5B164E6FBDFA7096FCC75845" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_910E00C9C1E6469BB7A10318D60163F9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9124D54F67494EA18B08E5CCB0DA12B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_91ECA244CB1C451DB46B22E1F3C67359" - "OwnerKey" = "8:_056E63AF596746FA840673460F3467BA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_928A4CF19A3E4474AA4EF038E37FE2B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_92A6D3125FA44E7B8795DE4EE0D738BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_92AF3274491F489BA1041CEE3C00ED46" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9315EDEB72EF4E0799CBBD629C797E65" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_931815CAC9E94D25949A7DBDC05A5E09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_934D9F093D1E4D64A3E1AE1B319163A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_936D7ED327F842769055274860C7B7CE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_93900A98FABF44F5BE2F6F23E3EDA13A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_941C872E96C14317AAB918817A02BCEA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9469C46213AF4B0B9947F410BFF4B199" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_94F7E346CF344C0291219A51568B2A11" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95518B1185B344D8A9E17D449E22A07A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9555263A0B514E84A59C87E03AABA49F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_955D5137DD3645A68F22AC7081F4BBD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95AD84099D86441F9B0C251039B1A63F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_966477D37CF5451993EFF07CFB2EE25B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_96CCEAC6BE924D6AB858949535654A72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9742F8FA66744C10BDA33C445BB1B5A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97AB3E7B353E4703B550348C63AEFC2D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97B185B78C154874B77D2049B3300B41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97C3AF757D4E47FAA20861128A24C4C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E864DEE6A144A78B68D9A3BE9A0413" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97F452B2E24D4B78B4AB754AAB4D9247" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97F7FCC94E42453B981D376F37B97503" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_987750730309466A9EC1C2E3A5B1D20F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_98A1AAE4D6A54C8697F75F0890873F23" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_98AF00ED289F450889C13394489C3D4B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_992BC758B7374D8D9CA69B550F538255" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_999E3B46B59C4234A7124019401DB7B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99BD8AC4084D439CA80816A89387CF06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F4B3534D1A4C88BFE4FB5D2F216E23" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9A1598ED1AED4AF7BE7E8B3C1839F085" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C0C04F635C34CAAB690617751FEF9A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C83B54D3B124108AED04884A3931252" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D045060258445C7988DB84395305E71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D3366B508A141EA9651BD24FEB2FFF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D6C72386A0B4D3489A13633E229F95D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D9C52DB234A43C88C442298E232C316" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9DE11C23FDAB482393609E8352286FFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E7A52340F9643268D1F2F8864729809" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9EAE58E2FB054D75A14E63EA0CA90FAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A00E186E9C8E4BCD92EEF18A7870AB64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0858150B00A472BA6EAE71AEBABDE58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A08E2857F1B1474E9AAF6D683CC3A7D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0C6574C5F6E41E18AB6AF904617B8D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0F47D115D1140D78EA15ED301A96FDF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A11208A3D61940228E848C672615C531" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1A7D85419B04E1892896FD2723CBE05" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A241F7A927984443A3BB7B186910ADED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B810BE7C004166A16F019DFEBC09A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2E900A479E643268F8D32DD67E53FAE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2ED793453A54C92AD356FF69DBFAFF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A352B1A3A72149AC807C5650BD40EA55" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A386FFD174A848B8A6383A013CA12077" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A3D6752BC31B442CA999E19F8AA5B2E5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A44ED41478454FE1AC8F437795125788" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A4C093C7C647401E895109DA2F564C52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A5136AB1792B4B98937DAC7FD6AE4E90" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A513873E6AEC441CB417942FBA4FE3A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A52F55B639B6498B993D0C8831EC29A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A56B4B64A8E2482883F4F76F278103DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A5898A75EFDA4A008CE657485600DB0F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A5FDFAB8D04D4091B74F945CDFA13EE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6399AF77EE147919D73E720D70C79FF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A691E3B32AF54F4AB5F4B48577183263" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A694168142B64AB28E79B5E6E5357979" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6CD4A6404154996835A7D9B2301BCFF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7C06AF14B3343C09C52E321CD45D0A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7F216F3691F4406AD4BF685C2009EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A8313B076DCE4F47BC5AB1C18D54D1E8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A84BEECAB2D34EFCA56FAE2792F51D7D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A88814C184944C9FA3E00A2DE301BB17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A8BE7E9B8E89418B9C209C26C2481E52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A932A0AF2C944F8F9067A24C25B978CE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A95FA829E1D342E0BD407CA2FF074E9A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A98B9A585D4F41858169AD80172314EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A9E3A786A2954BC687EB209593DFAA31" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA0F97AADCE24AC29EF73E7D6C696C54" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA23BF6053F542538AF0B7FB48C0B4F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA7D54EA12024486AA1ACD45D323E74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB701B636CC24D9F9CAA71C6B897E7AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB9515FE77614EF19E6B1E92CDD648A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ABE7E862C38241F19744114841629864" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AD788D5178DD4DE2A68B08B9297C0D7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE01A18492C447D89BA1FE02869A18DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE235390D3E7456BBC816F28EF0EDE5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE6136D7D3F341089B23CF2FE032F852" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AEF2EA186F5D4A0486766CEC08F7A180" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AF2F612EC55F42C181F990BB5BF85D09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AF505C309B83425BB0ACBC40586DC467" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B0990FEE057B4CEB8E819D4F36FC023E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B103E721182F4DD6AD7F65CF565F83C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B16017E037F7472DA99F97FA0994567E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B25E14F3380641BFA793B8AC5538DE69" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B26DE6FA1DBA4CD7A54798EFD42761C7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2C4715A10D6448C8785A77EC8E23AFB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2E109695C4F4E329F991DAB91EC054E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B310C19F9C7F4CE6891A34139EB0D630" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3217183190C4EF5AA058E2F2DD49E5B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B34D82DAE3934AE8B7A86ADC89132428" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B361CA65836B4CCA975759ED0B6CAE6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B37B9EC7F5E24483ABF63844CB762A5D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B383C9B0D56149A18C3933E52A659729" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3B4F39E240F4463BB09201FC8B32CD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B42AB8E6DFE545408B9760D0D10919CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4FB5F4843A24E41B7FADE7050CD9910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4FE641E9EE14B3A98EB023B9B281012" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B590C82783544AD2A08F289BC6320EAF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5F13C260D704D10A1AA9E9C428FD17C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5F44ACDAC4142C9B086E996419F26D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6B7A55B6F78408B87B10B799DE5A19A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6BB322EEC614D6381014E64306652A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B700B3135C044AE1A0E11F64951C15B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B74214D38A5B4B88B5E169B9E638C59B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7E71DDEC9694BB3913A5A951D071C79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7FE7CDB0F4C4BDAB730BB096498F836" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7FE86B0D0F1439F8BD9FDA7DC0BC6E8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B813F357BF6E4672A6C5C6420233E416" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8531EBC9C4146A18DBDEE03537C7895" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8DC8835383B4D81865DE6728E152C6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B90B2A45F38546C7B27A422537B6A0D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B92716F1835748778D2EA2A170A3463C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B931BA0672394A6D8134E66E8381B7D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B980912F97654A708BB58521244643F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9D00A7B741A4394B6D20DFBAD7B67B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9F7ACBBB03641A189D48B3F96B177AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA1757667DBF4ECE82D987268736B4D7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA434DDB92844939B4727EA0D07F28F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA56A809F849463387B0C35C554D3FDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA805C53980C41769659D085C5C8E0B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BBA24149F4C04977B6A07924A49D7352" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BBB2831DC8974D1BAC6B7CC8F8FBD7E3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC01A169AEE24DEDB532037D3A25C69E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC48260E6FE744BCB551169FC8E965F8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC7DFDE6592D463B95C307DBE7305593" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD197F0310024D04B386D3ED22B580F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD35BC44FB8F441B8E358D9D364CA587" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD9ECC0B46EC450CAF842508F8F7BE33" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDB11450018647D880BBB295E0BBF169" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDE8E81A8D2245DD82FEF47265A5CC3D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BECC05E6C8EB47B68F6344A00F04C46D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BF2D5197C57A4E03833752A2F4532AA8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BFB996117C244A958E3F46131CFA483A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BFE5589963E74E2E9883E4AE5826D851" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C03B6B3C637C45749F3ACF29F4FCEDF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C04EEE51536C4B64BB1758CBB7873B34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C065BAA069514382B51E468B5A1978A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C07F50571A13454FAD88671C31B82B9A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C094488877694ABCA56EEADA30F0C108" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C0D8D2C4874C4694895DE76AF8ED8E8D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C0E4D3E9F985430CB96D8E96014865FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C1510D42AA964597A8CB449C6B94E86B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C27608223A4A46CFB21A58073E99629E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C27611FCB2744386BA7B3CD0EA9C2116" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C357D956140243B5A87AA9011DAF1207" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C3742ACDED3441C8B9626B36358FF45F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C3750F20EDFA48D78E02F27034D02209" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C38225F7A000426CB7E955945C9466E0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C51F790219A544D29B9BCBC4B83E1C3E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C54B99BA758A4FB3B844DE919B277DDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C620775E0B56481695BDA176D6BBF60A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C649E5027371431DB5A5440812C57540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6896DE4391E40FF980A950DDE8B43D1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6B45FFC93CC4A3F864E363E7B18206D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6F4B29F1A3B4B59A21287716572E0B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C71939C1027C4474B690DDDF4B0E8FB7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7406B26D83F4CF48E24ED78245654ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7D02D2B4C444A0C90BD6F8C6B232C91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7FFE7D762304EA08B7376CADFF4D8C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8198F923CDB401EAF223744653A6806" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C844497867604180ABCB21CF50308A75" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8AF9CA24B964B2BB4BC8FB57F4DA315" - "OwnerKey" = "8:_08587955063141779B605860D7FF04D3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8AF9CA24B964B2BB4BC8FB57F4DA315" - "OwnerKey" = "8:_DC0CDC30152E4448A80DDBE817E76A8D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8AF9CA24B964B2BB4BC8FB57F4DA315" - "OwnerKey" = "8:_888BD7BA9EC64ED59283DB69834E4BA9" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8AF9CA24B964B2BB4BC8FB57F4DA315" - "OwnerKey" = "8:_14738B23CCC74201B3F3619639554DD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C9AC5BC6DB9742B79D0BFF153CA39421" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CA734CBAEC8440EC8CB32AF7EF8D71AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB3A0AE176934F52AE20A613C2070534" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB46B6FEE22A4C689CB244EF428600BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CBFAB93B4A1B40349FCD9BF44ED28D1F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC3803859B7F43B18EBE799C9C56933F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC71BE47DD434D7CA2713A9087A88C14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCDF5C1EFB75477BB295929481C75CC7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCE9C76D878344F4BF560E0136E1BCF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCF420B39E734D4384125DFE122E8F6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD0873029B1A4CA781081A1551554150" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD3DBDD9333C4033AE1B724282BBBFBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD777AD5FF1D420DB9723E6EEC27D521" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD85044C04E14CD3A9419F46205EA412" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD972A5865874CB9882B6001648FB46E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CDBE3C6855AE4501803B9EDA7BFEA691" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEC3CD033FB94DFA8810C8142FED85B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CECCCB3C56494F61A90C39EE70F3DFC9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF28519F63C34802AB33F9342405FD3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF5084794E3343669C4337B95A9F7BF1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF7BF165F4004E0DBBFF446A66A985DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFA9B0302ABC430A9DBA2BC2132B6B73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFAF2622550E48AA9B0F502BD4022FB5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE3C277A2DF41018E63BE547F53452D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE69F411CF84BE7ABCD4B895EF13C62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D08BC52EA7E5473C91A82F2CE77B9C05" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0A9D802F4924B3B8C0429DFF0D37C9E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0D86929159D4E008C467978E92A6B0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0E38FA5FFFD42BC9507FFC804B3B271" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D128F9F54CA949C09B3FA61A199B060F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D151A04263364A9B8005377D79AEC239" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D1CD893E014F4FBE842B4B0E2CDDE652" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D200B29D2F7E429AB771E6E92961E4C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2176F7DD848403DBC973A3676B579CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D238C397E41B4DC684CF79761C4B85D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D29E08866CBB44D0A548B5F8A7D90584" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2BB3D54E2B2459596E3FCC0C5648A63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2DF67E2996C456AB37115D5EF067CEE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D38628C1BEF7481C85F448F4E8D1C3EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3EDAA4023284820AFC142093DE1AAE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D418D6CC07974B16B70C9B93970427FC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D428726607B744478982A6F3AEBB5937" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D459FF6207F848EFACC8160512BC04C0" - "OwnerKey" = "8:_C8AF9CA24B964B2BB4BC8FB57F4DA315" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D49889111E484F5090ED91A8EFF57DD0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D4E8F23E7DEE4EBE85604448D9E9F66F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D523D656E59A4F36A5799882AD52FE63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D53FFA2FD41F4B55B55A5F34D59755C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D56AB4AFFE3943C7AA22831BCB2FF143" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D5E167B7033D49188854ABA54CB6A543" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6635B71ADB94BA0AC25AF10E53EAA56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D669B0F109D24B248427555BFC1EFFC9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D68C5368AA4548E2B31B6E44C6CF18CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6F8538106594E289818596061BE2EA6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D75087C07C804BA994309398BC48603F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D75AC18CFD714D179B403F394FEE5C6B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D7EDA76276BA47C5B427D5289E602655" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D8DE5B3E74534CEFBF787CCC4124FF6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D9342B2A479345D79B17511A69B5E867" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA59B07FBF1F42CDB8AEF8B24809BF08" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA790596462048CFAECE85420D41D74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA8A6A14EA7A4B87A06CA40B37404208" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB5649A025C244CCAD4CFC7607B09A28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB58150AE7CE4F5390C9322D5F5E7235" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB6C4271795545FA80082707D6121026" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB6D039C3ED14EE58F469C211EE0336C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBC0EC09DC684F47B0DC34BF7958EA66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBECDA96409E46C5A16D99CCCFC2E0DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC0CDC30152E4448A80DDBE817E76A8D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC239E2B54624CCF8D26F85C98393DC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC32635C462B40BEBEEC9176E79A9BB8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC87F8DA14754002A1931C3C5DC89AD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DCE0313BBE4C4DFEA23ACDBB6863B390" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DD6D9600C356455D95BD2C44C50214DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DDCBFEDCC6144933941BE8B0EEBB9614" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE2D53C1D99340B28D76F985871A1D04" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE5BB9FAA411472B8901537165DFD827" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE6ED970A6634704843FC2D976DDB51F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DEE4FC947E1543ECA3C5D0A1B5D82606" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF631F75976846E58594E4C6FD1630C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF6E93BE4C85423FBB21EA3F783E0724" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF78E69F06884ED8B21785EFA82570F8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF7C83B26513481DA856DE8F3DAEF744" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E00C0F5054204111B95C89CE4CF7CFA7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0618DF655024D8BA1CA9B54B5915689" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E07080A8272044BDAD3242DFA62A3AD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0D128147681418496692C77F4B1BECB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E148F8C2F82A48D3A68E9E2C2CDAD846" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1570450F26743789099E1D664EA2930" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E18D9C95AB9747609535A99DD2D81155" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1E6F5ED150E4549979E0E3F9E6D2F67" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1FAFCCB6A854D248F54F164889FAB3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2073E8B81F74741B1D1EA05FBDD0F79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2B4EF18B90E479E8D1311CBCE13431E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2DB44B0AA4245D8BFE17D1B069BAE0F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2DDE31CAC874AE0B9F7F9145248BE6B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E31FFA0A95B14807BA4DA5176F48A0AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3B3CBF11A49408DA2A465DD552AE300" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3DDA7E632494939B2882BD6741CFD9D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3F58F53501F4CAA92527C64B08D9EBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E40175C04F974A7BA19133984051989B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4171B5DBA664372BB43F3B40B2E1236" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4A483565C5E40B79805552DC4B5292C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4A964C652EF407CA753B3CA1219015B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E54668B3A3FB42CF85A71689A715F19B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E646FA76573448CAA4749B18614EF782" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E6C43F98CB9E4C199ABD77B37D21A564" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E716C1A77B764B6697138BC0DAE3E30C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E78FD6989E1D4799AAAD31ACD43B0C1D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E855F8CECB234B9291EC3600C31564E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8AFB1C8F7A342D5A03F305B3E0230C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E0F24BF6014C208A93130FC1761DE6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E78948E8974A1DB4C3D6E63AF58602" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8FE474C601D4386BBB0CA9599FF45BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E90BD26B31DB42D59ABCCF0A14CCCB52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E9768C656AD141FCA969B7B9CAFE7F83" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E9DF9028F228449BA30513E9EA99147C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA0930AEA1074763823B836B96A138A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA8E4A02700F48B3A6136CD0055D6CFD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB3D7262767C4E5BB3581882EB0BC79C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB7840FED8294FFDB3111C6B3DD32833" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB82DBEEDAE14B51840A9D7153E52BBB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EBB20B541FE543F7A695E466975C6495" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC2FDC1A744E4A1AA4793CB10F18D176" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC476B2533A1437FA80321BB3090234E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC5F3263FCAA48CEB25E23414F082818" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC6786EBE72E46B694D473463C72A2BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC9C8B8C68CC4B6FBF2202B0935A6396" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECA3396FBFD54A94B2DFB33B080F0D4E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECAF852C95DD46A39B119046E569A5F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECED5D161C3348B98B263CFECA0A7DCF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED40FDD34E984498ADC37D88B43AEAA4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED67782207C047F4A5935DCE2E79F151" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED90DA83729C417BBEAA629FC6CE1095" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDB029B79CF646ED9D83EE7DA1A80900" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDC27F3DB4874D0B80C408E935F92FD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF07839F9BC941BA9127CF08C90303D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EFA30E0040CD47D995300679F7C2846B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EFCA267481B0414BAE826AA0B4485F3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F0198774990541808A87CB1A6FE41597" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F15D7C13B4D94173A06FC05BFE08B4A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F18978587EE441EA8B9B276B9FE566FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1C2DC4D3F4541478F3128EC742FC67D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F2A92891BD6D4A87BB614760C33A483D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F2E355F7534548FA97DD0E22363A0107" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F325A9398503407384F1B46B1B65BE34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F33D31C689BD40F2AF95AD8905B4CA5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3A73DE374274D23B5B71D3950610F46" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F40D33926EF24D48B642AFADF0905175" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F42D9F9BF66C46B3A5C9271FA5F371BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F47B7B39692A4CFFA8EADC42095D740D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F48C0E268A0F4258B2FD7E65B9D0AE91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F495A54DE04C4B39B5F52C4AA64E7060" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4E64CA79CC5489294D5EB5751985163" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4F26BD1AB984B27A14DB3014923C36C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4F48A978F924204A75079994744E641" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4FB2F3079254D76B2DF7DF3B7391098" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F52E35C2A75341B5B07D033F7072C765" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F5B0599D33DE4EA882B0C846B85FD66E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F622D25373114C90976CCE00B20B11FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6A52BC1EC8D44989142E90DB7AAD1D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6E4EBD5FFCA494C8355AF6764844103" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F70CE7A5A1844D3A99121A7A41ACAAF7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F814D235C9B243729C65F42D5CEE59D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81A7E5426654A1891028EF1BDDF87CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F862E9C9A48D4C569698C90E1EC6850B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8688399972140A18AEE3821A3076DA9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F88CE78D01A1484A9A363ECD019F9ABB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8CAB1B1AAE143949246B033BF6572AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8E58FC7A5A74126B5F8D78607815377" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8FB0389B5924D9585AA8CB15F4A2BE5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F90E2786F2D946A391E88893C923D118" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9D283B3D2094812A29561F09605DE12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9E5B7A73F134E42B0EE70B7A917FFE1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FA43C5DB9C7546E7BB93ED688744AC52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FA6DD5D364B64F17832B6BC43A6F9D6C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBB083851DA2463CA4F1366F4904110A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBC9FE116DDD46DEB48CF787395219C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBD4F0EEEFE546FB9FF1BAD912D6C611" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBFB14FD38C7494B8A4C46E34805BC91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC86845237DD456CBCC89B92C093E444" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FD0456378D394DF48B3AB5BD0502EBB1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FDB8A6CE75A943ECA1F4D7DFB8F69902" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFFDE78FD53C4E159AF3540A42F61677" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\Cantera_Debug.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - "DebugMDD" - { - "DisplayName" = "8:DebugMDD" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:DebugMDD\\Cantera_DebugMDD.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\Cantera_Release.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "File" - { - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_000E0B5AC6264DA3BEC0448B32F52663" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\LiquidTransport.h" - "TargetName" = "8:LiquidTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0067AAD709D94D2693870A06ECD55183" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_condensed.cti" - "TargetName" = "8:nasa_condensed.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0170832FE2DB4AE0BF9768C53BE03A84" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\setMultiplier.m" - "TargetName" = "8:setMultiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_020F278C42CA4A2B96388903D1752C62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorNet.h" - "TargetName" = "8:ReactorNet.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_022EDF1564FF4680B6AA609CE897983A" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\h2o2.cti" - "TargetName" = "8:h2o2.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0259622D90D54F99BA22C55A83DE0DD3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\kin1_blessed_0.csv" - "TargetName" = "8:kin1_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_02F41A2FCFD346D8B7CDB9C14E5BB319" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0366A82A86EA4F1CB1AD5F4D462B3787" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\GeneralSpeciesThermo.h" - "TargetName" = "8:GeneralSpeciesThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_040D88A3581F47CEA206D1688FD6EA61" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_internal.h" - "TargetName" = "8:vcs_internal.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_04C83EB86A3C45AB93638133493E5923" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\argon.cti" - "TargetName" = "8:argon.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_051107F9F8CE4364AC76D00D23F8B7C5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite2.m" - "TargetName" = "8:ignite2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05690F470DFA457FBF7C925A8420EE5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\mix_hndl.m" - "TargetName" = "8:mix_hndl.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05BEF1452C824F2AA870077D31CF1BF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05CAF5CE4E764B92BCAA4DE1A10481E7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\CVodeInt.h" - "TargetName" = "8:CVodeInt.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05EE24E611E74A1C88CE22420CA5500D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\equil.m" - "TargetName" = "8:equil.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05FE255C00F74DAEB6BFC00A32066DFA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Edge.h" - "TargetName" = "8:Edge.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0660FE555E5B433194898E32C6ADD273" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0699BFFC081341CEAF618FBFBBA1241E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Reactor.h" - "TargetName" = "8:Reactor.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_06B3045D93A84917A8E324374A8211F6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\MineralEQ3.h" - "TargetName" = "8:MineralEQ3.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_08B40A34D407447EA66C614C4E897E1F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_08C0F7C9789B4E3F8D09411C89DD0509" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_099E198F6C01436DB271857F1309977D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_get.m" - "TargetName" = "8:phase_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A01A5CC173A4619BBAE80DFCE7B23B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolarMass.m" - "TargetName" = "8:meanMolarMass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Hydrogen.m" - "TargetName" = "8:Hydrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A2F83F932A74CAABB87DEEAC1B9536C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0ACC7910CC8A46E38521F8A78AF253D2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ThermoPhase.m" - "TargetName" = "8:ThermoPhase.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B0170BC983349DD945697DB4576507A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\atol.m" - "TargetName" = "8:atol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B09C9A0BF24498399548814F95D1EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setThermalConductivity.m" - "TargetName" = "8:setThermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C8BFBA19BE949699F417570F8C69B5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SV.m" - "TargetName" = "8:setState_SV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C9010E357C748BEB820CF0E830F09DF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setDensity.m" - "TargetName" = "8:setDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0CC005AA0F0842E4A33867605A8E4A57" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0D0FFCC38C4645D997283F1C5CED5E06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setMaxTimeStep.m" - "TargetName" = "8:setMaxTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0DD6AFC117E344BD826ECC698152F9AF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0DDF1766C6A04C76AE6AF7FBC35E471B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\netProdRates.m" - "TargetName" = "8:netProdRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0E91AE53B0354697B206E79EDEC8951D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ThirdBodyMgr.h" - "TargetName" = "8:ThirdBodyMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1049E82786DB4EB2BDEFF972136B0F19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satPressure.m" - "TargetName" = "8:satPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_105638BB017C47DA814720D4C027908E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\private\\surfmethods.m" - "TargetName" = "8:surfmethods.m" - "Tag" = "8:" - "Folder" = "8:_653D9B351BDC4DD6B1AC64034FB114A1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1089BF66E6BD47E597259E9AF2B35F20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\LineBroadener.h" - "TargetName" = "8:LineBroadener.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_111A0970D7DE4C99AFE08278C8345DD9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SimpleThermo.h" - "TargetName" = "8:SimpleThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11553AE6EA7A424D9621E724DFECC70F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarDensity.m" - "TargetName" = "8:molarDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11AF9ACB25D6477DAE6906C2F6F688CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11E4F38118B54DC680D5CB741B29BE8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\volume.m" - "TargetName" = "8:volume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11EE4F61EA0740F1BE63419C7A48F185" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_HP.m" - "TargetName" = "8:setState_HP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_125E1AC217CC40BD8F4534E875CB9D0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_12BF22BA87424178B29DB07E669C3501" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_12F1E24910DD409E860D4F79A338EDAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\DebyeHuckel.h" - "TargetName" = "8:DebyeHuckel.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_134B726C2CA94BF5A67C3ED7F799D502" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\simple.py" - "TargetName" = "8:simple.py" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_138E90C26F6041339FF2678ABF07E5DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\example_utils.h" - "TargetName" = "8:example_utils.h" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_13A678CB790646B69DF1451D34265FA3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_13B73567FBB1470E9244F3636ED90E55" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\catcomb.py" - "TargetName" = "8:catcomb.py" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1420A489C89E4859ACE78FD5DD27C00A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\Transport.m" - "TargetName" = "8:Transport.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14580E5B948E47509A941AA338014D25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14AD021265F04D30B380659740DE2D56" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14AE958921E548DBBD8DC6FA834FC532" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_VolPhase.h" - "TargetName" = "8:vcs_VolPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14D64F0F7ED94D29A7A8DAD77FCCED13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\reaction_defs.h" - "TargetName" = "8:reaction_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1549C4E9E5E0434983C533B9D0CB8B49" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SingleSpeciesTP.h" - "TargetName" = "8:SingleSpeciesTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1556C8B42E0649DDAE01655F4D1C970E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\piston.py" - "TargetName" = "8:piston.py" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_15722A4BDFA44650ADE1764C5B1EBCC5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_15D3C38D37A94D67B313EC3B57DA2AC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\private\\flowdevicemethods.m" - "TargetName" = "8:flowdevicemethods.m" - "Tag" = "8:" - "Folder" = "8:_A0CD6A9C146B405D99355A87F6B7C47D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1605E31F88584B5BAA367FBA56A3EC57" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\catcomb_blessed_0.csv" - "TargetName" = "8:catcomb_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_163414A541654AEB93A16D60F2652F7B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_164F9AE8646F49A28EDD39E09AC0B23E" - { - "SourcePath" = "8:..\\demos\\ReadMe.txt" - "TargetName" = "8:ReadMe.txt" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16C0D130AB2748E6890B937071A27A0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\ydot.m" - "TargetName" = "8:ydot.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16C40536EB0A45658DF4EC29D7CBBFF9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByID.m" - "TargetName" = "8:findByID.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16DD6B492C274AC6BA6ED913C513A10B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\thermomethods.cpp" - "TargetName" = "8:thermomethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_17873678EB8F4A3AB2296EB4E4483220" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isInlet.m" - "TargetName" = "8:isInlet.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_18712B731C5F4CED9DD70EC680C9BE15" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1889FAD37671415E95CCA5B1BCAC9E32" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_r.m" - "TargetName" = "8:rop_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_18DF044BD81E46C98CCC861C36FC01AB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\plotting.py" - "TargetName" = "8:plotting.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_192952F5A5D249D78FC7B767AB938A1B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Sim1D.h" - "TargetName" = "8:Sim1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_19ADCC34CFAD4F88869FE56CD072F5CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A3D179D05C74A909F2B5B6E254459BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Inlet.m" - "TargetName" = "8:Inlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A68BCF036214AA58BDB24F63A44099F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A758A2D9CC24D13A732C1F61D692657" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A927F880A454469B90682B004B9D129" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ShomatePoly.h" - "TargetName" = "8:ShomatePoly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A951008962D4A65A9A9653673049010" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B053CD5461740CB891855B80F250AED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl2.m" - "TargetName" = "8:prandtl2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B9B881AE09F4714B246FED31A2C52C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Crystal.h" - "TargetName" = "8:Crystal.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\GRI30.m" - "TargetName" = "8:GRI30.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1CB5CF459BDE4DCEA0D61D95E6707D99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1CF9D451D1C24D9FBCD9719CC24D8956" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\FlowDevice.h" - "TargetName" = "8:FlowDevice.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D0B3F7CDFF14AD2A879AF1565D65509" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mole.m" - "TargetName" = "8:entropy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D7106B99F8D451CA0562A6C57C2CC3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importInterface.m" - "TargetName" = "8:importInterface.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1DB52E3C2B4B4D63A2825ED896417F4D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1DC1E7E2F3D94D77BA47749A06D1AD12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ShomateThermo.h" - "TargetName" = "8:ShomateThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1E0D34F6C6104102A9D06C141F3F763E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SpeciesThermoMgr.h" - "TargetName" = "8:SpeciesThermoMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1E985699F79A4F80AAB40741735DBEBE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1F6340B91C654BDAB4FDCA7B545A9ADD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainType.m" - "TargetName" = "8:domainType.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1FBA13F4B8CB4E1A81BB5FDA1194E6BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\mix_defs.h" - "TargetName" = "8:mix_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_204DB7F700684ABFA12A29185D6CB5B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_20D3DE8A9BA14C91A9C2FFE7EB36603E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ConstCpPoly.h" - "TargetName" = "8:ConstCpPoly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2170A16C95844A6291342D840D1BB498" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\flame1.py" - "TargetName" = "8:flame1.py" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_219FDC3ACB2A4C81935851A9CAA7E1EF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_R.m" - "TargetName" = "8:cp_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21EB392DF37A421CABBDA197A9226C0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\diffflame.m" - "TargetName" = "8:diffflame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2278673C1CB94B89B0F33D7D7588F290" - { - "SourcePath" = "8:..\\demos\\flamespeed.vcproj" - "TargetName" = "8:flamespeed.vcproj" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2279B9FC61AB4F3AB7F0A0F58F3BD071" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\speciesThermoTypes.h" - "TargetName" = "8:speciesThermoTypes.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_22CC1F00E98946C0A5C82185C43DD97F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_22CEF13E79D94C419D5EF6986741612D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_232F4C7716264866BDEA07B97B583460" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_UV.m" - "TargetName" = "8:setState_UV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_238BB4062E2B488FB10D3107F74869C8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\writelog.h" - "TargetName" = "8:writelog.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_23CE4DDD38054CA49B17BEEF4D728230" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\ready.m" - "TargetName" = "8:ready.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_23F24F51C12448E8B99577D4D359CA48" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\MultiNewton.h" - "TargetName" = "8:MultiNewton.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2423A94DD42C4B89A532018CA915F0CF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_248688162FD145F4AA11063A3A5ECFD6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_24B49E09AB96421BB8639B0CBCB23A1D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_24B6F64B4FD046B3A9F26BCFB9621B1F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\IdealGasPhase.h" - "TargetName" = "8:IdealGasPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_254CA5A242F04444AB0F18F9ECDD091B" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\ptcombust.cti" - "TargetName" = "8:ptcombust.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_254F288B4BAC4BDFB4B21E76747FF336" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\attrib.m" - "TargetName" = "8:attrib.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_256AD3D2AEC6410FBF4F5E3B945925A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_25A650A6EF324949A3604908CE2112E7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MultiTransport.h" - "TargetName" = "8:MultiTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2656FD40F3784C588D4004D409B0F80E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Outlet.m" - "TargetName" = "8:Outlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26A7FE2928CE45CDB52C4B3326A33951" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setHeatTransferCoeff.m" - "TargetName" = "8:setHeatTransferCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26E683AE357D4F70A3DC3C57295541D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conuv.m" - "TargetName" = "8:conuv.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26F0BA63411646978592D51F26AEA36D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rxnEqs.m" - "TargetName" = "8:rxnEqs.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27549892F823435798B476FC52F3F012" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarMasses.m" - "TargetName" = "8:molarMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27DE8E5E29574E81B2D3ACC4E87B9637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\addChild.m" - "TargetName" = "8:addChild.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_28BF9CA142EB4988A4B1366304D93917" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\diamond.py" - "TargetName" = "8:diamond.py" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_290E7C7E5DF64841B1F913EEFE006069" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_29200BDEF8B44EC69E128788F4E09B16" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_299CD5580EB645D191532FE4F24EC6CF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Interface.h" - "TargetName" = "8:Interface.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_29CA5AAAF8D342359823BB1B4CC30E95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\numerics.h" - "TargetName" = "8:numerics.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A0106C002434337907A10A979B6D97B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\MargulesVPSSTP.h" - "TargetName" = "8:MargulesVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A1589369A874D0EBFFE3F6D98426A49" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A962975342142978B3DE11A20C9AA52" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\elements.xml" - "TargetName" = "8:elements.xml" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2AA7C0041FC74F718A561EF0696DCB45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BB4BE1E38E641C2B265A596D043AF25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionStoichMgr.h" - "TargetName" = "8:ReactionStoichMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BB57D6845464ADFA0F107F511FFEEF5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorFactory.h" - "TargetName" = "8:ReactorFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BE3348DF5ED45EC944DDD5BFE78A865" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\importKinetics.h" - "TargetName" = "8:importKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2BF22A40402F4580B200414A32936177" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2C2891784E02439F8A77C62FB10A7758" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\sensitivity1.py" - "TargetName" = "8:sensitivity1.py" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2CADD379818D4D128CB3E53D3E566601" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\thermoFunctions.h" - "TargetName" = "8:thermoFunctions.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2D09076E55604C73A82892D474E11779" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\restore.m" - "TargetName" = "8:restore.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2D5D40F1EF034AD3A2757714B66F1A11" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\IdealSolidSolnPhase.h" - "TargetName" = "8:IdealSolidSolnPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2DEE49E2A7B4424E824CE5D0FB2846A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2E1D802885914276A918F17E040A09D1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2E96E842BF704E05B248FE9E9474674B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\flamespeed.cpp" - "TargetName" = "8:flamespeed.cpp" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setKineticsMgr.m" - "TargetName" = "8:setKineticsMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EC7B0A350C34DF0B88C45A54FBFCC99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut7.m" - "TargetName" = "8:tut7.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2FAD4B54152F4F698FC2A1BAF8831599" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_MultiPhaseEquil.h" - "TargetName" = "8:vcs_MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2FC09AAF5A4C4E998211176C5262A084" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_303F2BB4ADCE4E0F9B2B45747E66C057" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Solid1D.h" - "TargetName" = "8:Solid1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_30A47D7D93D84874A41E1782FDBCEAAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\creationRates.m" - "TargetName" = "8:creationRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_30B3C39CD6444421B6418F00C5013828" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\FactoryBase.h" - "TargetName" = "8:FactoryBase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31AD332AA56C4DF190FE6D941FAAFBFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\vaporFraction.m" - "TargetName" = "8:vaporFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31E9E8DFB7144795A05AEEE66B279AB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\viscosity.m" - "TargetName" = "8:viscosity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32A08E26D90A41869BE37A47450DADCC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\binDiffCoeffs.m" - "TargetName" = "8:binDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32EAE5622F7540E4AC357D8D1CE10D8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\isIdealGas.m" - "TargetName" = "8:isIdealGas.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33C1BA231B1F42CDAD49F0298167D9BB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\utilities.h" - "TargetName" = "8:utilities.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33DBCAB550F1494AA40EFC4ABEFBADC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Psat.m" - "TargetName" = "8:setState_Psat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3450E67DE4E1425B8B41AE70CA5BEEE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_34722C3A5A5F4217AD66444E408BD476" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Surface.m" - "TargetName" = "8:Surface.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_349A87700DEA427C88D340397A9BF256" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_349F239FA90543188EEC8B24410296BE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ck2ctml.h" - "TargetName" = "8:ck2ctml.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_35C660FB7AD5450692D9BD8417AE21AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\LatticeSolidPhase.h" - "TargetName" = "8:LatticeSolidPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_36101E75F83548D9864D35DB07B7612F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS_IdealGas.h" - "TargetName" = "8:PDSS_IdealGas.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_362E5E6B9766498182C5008280A41BD2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\Solution.m" - "TargetName" = "8:Solution.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3680F9CE2F25442489E0ACE568906072" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\flame2_blessed_0.csv" - "TargetName" = "8:flame2_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_36C2D841FA684319BDF30F2B68589637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\FlowDevice.m" - "TargetName" = "8:FlowDevice.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_372176D2A2AF406DBD625F54972DD57C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nTotalSpecies.m" - "TargetName" = "8:nTotalSpecies.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3778A89EFC6C475E8AFE84940043B8DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setSpeciesMoles.m" - "TargetName" = "8:setSpeciesMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_379A958666C0409F82ED9D1C390CF2DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37B9F5E138A645AAA6CE6C3A36E5361F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37DD28283FAE43A78586C3D99D999022" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon_carbide.cti" - "TargetName" = "8:silicon_carbide.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37F5B433E7DE450A995FDB31F909269A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\WaterPropsIAPWSphi.h" - "TargetName" = "8:WaterPropsIAPWSphi.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_385781B4728F417C82E6B75637E10AE2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_385C8980D3A44A2093CD638714277678" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_389AC795E7E842888394BE52A051FA12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\wall_hndl.m" - "TargetName" = "8:wall_hndl.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_39905D4925564C469DE3CBE980978999" - { - "SourcePath" = "8:..\\demos\\demo.vcproj" - "TargetName" = "8:demo.vcproj" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_39B2C611CD84448489F8AAFF5BD8AB28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nReactions.m" - "TargetName" = "8:nReactions.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3A49848C6AC948D8A7CB60B10FE0D83A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\disableEnergy.m" - "TargetName" = "8:disableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3AC42291E06E4768B0D87839DC9B9E77" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut2.m" - "TargetName" = "8:tut2.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3B00646190674532ABC512E89130A0D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut4.m" - "TargetName" = "8:tut4.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3BE1A06F6E6840F996050C94AA740686" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\Func1.h" - "TargetName" = "8:Func1.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C17B401E0464701BB1C7948164C30AD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C4A157925824371A0036E03B719B89F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionPath.h" - "TargetName" = "8:ReactionPath.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setBounds.m" - "TargetName" = "8:setBounds.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CDB43EBBFF14ED58EA458CC84B18F9B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_IntStarStar.h" - "TargetName" = "8:vcs_IntStarStar.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CFA27135C62465085AAA4CF042634A8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CFA6387302F446AB7938595154FF208" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.xml" - "TargetName" = "8:gri30.xml" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3D56811387944E55AD39C984228C4EAB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\insert.m" - "TargetName" = "8:insert.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3D5BF771EBBC4AF0AA84C1E114FABEE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportBase.h" - "TargetName" = "8:TransportBase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3E35E9D3EC6141BBA820F7D01B815B64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.py" - "TargetName" = "8:sofc.py" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3EF615A4DD26446799672090D51EBDE8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3F96D57E8F9E461F8C90E0ACB1C937D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setMassFlowRate.m" - "TargetName" = "8:setMassFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\dustygas.py" - "TargetName" = "8:dustygas.py" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FE261F2E167434D804087B6019EB309" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silane.cti" - "TargetName" = "8:silane.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FF4115C0C3E4C1686E79FBDDD2387B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\private\\reactornetmethods.m" - "TargetName" = "8:reactornetmethods.m" - "Tag" = "8:" - "Folder" = "8:_EF7FFF45863048E0BAC8024E5E97D77C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_403EF1958EF24BAC9D6D715D0A993803" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_406AF99237D3409BB85917A5A60F74ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_40E56E51E02745B4AEBA40660CEC686A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\Stack.m" - "TargetName" = "8:Stack.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4112A1F6C299475E8562339C3C38AA30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite3.m" - "TargetName" = "8:ignite3.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_411BB46D848848E492899FDC17C2D1CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\flowdevicemethods.cpp" - "TargetName" = "8:flowdevicemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4144EDA2CE1A466F80088CF6F5482CC0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\MultiPhaseEquil.h" - "TargetName" = "8:MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_41915DD244F142089CE3793E90B3DF12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_41BB99990E1246928D44C3F17942116E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setID.m" - "TargetName" = "8:setID.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4207771E67BA4E4794A2397BE181FFEE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Mu0Poly.h" - "TargetName" = "8:Mu0Poly.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4254D2D0022C4F1EB474B3635BDB1266" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_426E85F25D874E3F8F14D31E41AACF51" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42A0DE2343CF4D5FB768588C28368E2F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByName.m" - "TargetName" = "8:findByName.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42CE73EDA2964A82BFAF73C2CB6E4B7D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42F68AC09DC0410C8B66213635F5C982" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Species.h" - "TargetName" = "8:Species.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_436F32BB3B714A24A6B5FD1BC342A9D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_43C69E8F23BD4919BB63BD40909B3759" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut2.py" - "TargetName" = "8:tut2.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4401025D0D424A86B6C25A9B34792A95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Valve.m" - "TargetName" = "8:Valve.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44312EB878254560A66978A2E8304A92" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44512354EA8C4577A9085C81B028A63A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Tsat.m" - "TargetName" = "8:setState_Tsat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4479546E1AAE44FFAEFC0A710BA2E8FA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\resid.m" - "TargetName" = "8:resid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44DD06CC20DF420A998E2F1D0B980A99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_f.m" - "TargetName" = "8:rop_f.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_450EF4722F9B40F5A7A85BCA48C2CC20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_451FADB3D70145F9BF8D235E092B637A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\transportmethods.cpp" - "TargetName" = "8:transportmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4555B1D563634B6AAE88E0051E34DCE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_46482802B89A4F9594C4C39CF0441C65" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_471DA45E05AD445EB7B143657DB4688C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\transport.h" - "TargetName" = "8:transport.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4761AD8D69E841E298EB859CE92727BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS.h" - "TargetName" = "8:PDSS.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4783AD3526B547709409884B6091E0B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_47F3CF4BEA29482B95C1AFFF8F6C8145" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\private\\reactormethods.m" - "TargetName" = "8:reactormethods.m" - "Tag" = "8:" - "Folder" = "8:_D663477510C5436ABAF316F6D1E24D8B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_480527309EA14538802C74D4B190DBBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A22C4B2BF8947AA8789A8558BE2F728" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SemiconductorPhase.h" - "TargetName" = "8:SemiconductorPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A34080C008B4F63A073D329C0B47ECA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\flame_fixed_T_blessed_0.csv" - "TargetName" = "8:flame_fixed_T_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A677774412940DEAF6AF1EDC27A3C58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\cleanup.m" - "TargetName" = "8:cleanup.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A76C0FA9CF84058918F0E1F8126D049" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GRI_30_Kinetics.h" - "TargetName" = "8:GRI_30_Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A9D96662A6C48C980D6FCCABF7CFE20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Nasa9PolyMultiTempRegion.h" - "TargetName" = "8:Nasa9PolyMultiTempRegion.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B3F9D28B70C4E339662B2029BC4027B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B60DDE68DB84E76B59AC82DD6A48B63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\CVodesIntegrator.h" - "TargetName" = "8:CVodesIntegrator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B9C0B2304BF45D3B6A94AB1ABEF6910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\zerodim.h" - "TargetName" = "8:zerodim.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4BB20697D6B74F4C8917A9D04AA4A240" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\mixDiffCoeffs.m" - "TargetName" = "8:mixDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4BF9981AB5684655AC520EF2C245AF5C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\AqueousTransport.h" - "TargetName" = "8:AqueousTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C18112956A24BF6A1BF387E433469DC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\write.m" - "TargetName" = "8:write.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C3A5DFE89B844958212C21C4A8DE2CE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C432477911B4A8596B03914FF5916C4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\reactornet_hndl.m" - "TargetName" = "8:reactornet_hndl.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C9C4D481569458FB7B6C4535E474399" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\polyfit.h" - "TargetName" = "8:polyfit.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4CE041E0453E4088900BEF68B80427D6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4D48D12F66B44E83BB214AAFD8B311C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4D71E06EFE884CABA33151E1C5263C86" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_get.m" - "TargetName" = "8:thermo_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DCD79F33434471C82E0AF768F55ABDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\importFromFile.m" - "TargetName" = "8:importFromFile.m" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4E5E333FAEC14ABFBD58531E8DD3C26C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MMCollisionInt.h" - "TargetName" = "8:MMCollisionInt.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4E67F8AB73144D67944EE83F06E06040" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\flamespeed_blessed_0.csv" - "TargetName" = "8:flamespeed_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4EA368FFB8E84A9C88A4BEF0FAFC5A3A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4EDBAF4F0C8C401695EE60D9184C34EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\flame1_blessed_0.csv" - "TargetName" = "8:flame1_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4EEA2D8311E542998617CB07AF269FD1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critTemperature.m" - "TargetName" = "8:critTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5072AB7D92454CC39627CAE67CAD2E6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5095A6E6BF554FEDBAEF263F05DDD77B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Cantera.h" - "TargetName" = "8:Cantera.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_509B9A1248FA4683A81BBBA1303BBE71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\PrintCtrl.h" - "TargetName" = "8:PrintCtrl.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_50BE0A8057A64D38862D65984EB9CD88" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_50C880EA8AD04F98ACC7B17C25481323" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\plots.h" - "TargetName" = "8:plots.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_51E0B210177949DABBDC9E382016C5B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ResidJacEval.h" - "TargetName" = "8:ResidJacEval.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_51E2B9E78A964BD383DD8FD460AA4BEF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_521AB345758F4DE2BCCE824F6E10A19A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_IdealGas.h" - "TargetName" = "8:VPSSMgr_IdealGas.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_52519B41A4064DEEB452445FD3550B6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame.m" - "TargetName" = "8:flame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_52F34CA3B6284884A5FF333B2261DD88" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_533E20A890AF4129A378968FF67AF0A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\reactionEqn.m" - "TargetName" = "8:reactionEqn.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5359EA42B033411BA9ACEA14D4292527" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53DA7F1154AD4808A379EDAE1B4202B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53EA1C41778744F09879AEAE0BAA0233" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satLiquid.m" - "TargetName" = "8:setState_satLiquid.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53F7FA910CDC4CDEBD4257B5798B1B68" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFraction.m" - "TargetName" = "8:moleFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54161044EDBC4F718F7FEE349189D1CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\mix1.py" - "TargetName" = "8:mix1.py" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54A0EE28997D4BAFA2E782BD6448A658" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importPhase.m" - "TargetName" = "8:importPhase.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5571BE3AECFC4E599F4A538E40620D21" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Surf1D.h" - "TargetName" = "8:Surf1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_562372D5415546AD844E25834E0DECD4" - { - "SourcePath" = "8:..\\demos\\combustor.vcproj" - "TargetName" = "8:combustor.vcproj" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_563B1EC810F6456AAB99D37132792433" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5662A7CD4D8C4E5F947A6F355C20C1A2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\NasaThermo.h" - "TargetName" = "8:NasaThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_567A83C285154238BE6C478046C5BAFB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\BandMatrix.h" - "TargetName" = "8:BandMatrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5790A0F9267C4FA88EE7DF95DB07A8A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ckr_utils.h" - "TargetName" = "8:ckr_utils.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_57E6A3FDFDE34C75840B0908431790A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\FlowReactor.h" - "TargetName" = "8:FlowReactor.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_589104AC830A4577B736D1106E7955A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\eosType.m" - "TargetName" = "8:eosType.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_58EB415F05014A608F1D6B281082D92F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\grid.m" - "TargetName" = "8:grid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59166DBD45564A4195E8A079862D7DF4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59245571144542D38FEC0EC1F00503B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor2.m" - "TargetName" = "8:reactor2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_592F2DC945B24BDB801B54E965A109D6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\tdata.dat" - "TargetName" = "8:tdata.dat" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5939C6DA148E4B918D12A3F0CE7DC863" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\adiabatic_flame_blessed_0.csv" - "TargetName" = "8:adiabatic_flame_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_595064E84283443CAC06EEF5106C0641" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\mix2.py" - "TargetName" = "8:mix2.py" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59A2A6B397EF4B649D07CA5B10A1D1C8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59AA52C5E25745589B34218C6B13216B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\XML_Node.m" - "TargetName" = "8:XML_Node.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\Kinetics.m" - "TargetName" = "8:Kinetics.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A494D5F32BD411D861645EF9D5CDB73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5AD1E279C6CD48B09715186E69A55483" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\config.h" - "TargetName" = "8:config.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5AE86752EC8A4B54BA6494A9F33FFC71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\ReactorNet.m" - "TargetName" = "8:ReactorNet.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5B27B82837184966986697D84EAB8146" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5B345CA34B9B4A7083BDD2FA9FF9C8B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5B8BDA463997482B8E4B38A6883B9F20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5CF936560FF2465682DB2D4643C37441" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mole.m" - "TargetName" = "8:cv_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5D50FACA9AE548919661678B7562D727" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\polynom.m" - "TargetName" = "8:polynom.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5DFA2ECEDEB446DDA04762D262A2F376" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\WaterProps.h" - "TargetName" = "8:WaterProps.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5E55DD812945431BAFCF8E3595428F15" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgrFactory.h" - "TargetName" = "8:VPSSMgrFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5E6021DD18EE41D8BA4C00CA071A2124" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\GibbsExcessVPSSTP.h" - "TargetName" = "8:GibbsExcessVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5EBBDFD79C6D4331873E595874008962" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5F7CAAD1BF2A476288C013604222BBC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\FalloffFactory.h" - "TargetName" = "8:FalloffFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6006C6D0EC294FC39274776F6EA12BCD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nAtoms.m" - "TargetName" = "8:nAtoms.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_60571A0C1CC14E77AB558ADB65B78D30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\Nuclei.h" - "TargetName" = "8:Nuclei.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_60D94AAFB6AA45F89A490D537326B0A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\refPressure.m" - "TargetName" = "8:refPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_61151103C608408DB35D78567822421D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setValue.m" - "TargetName" = "8:setValue.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_611E4F1900564CD88F755749C3B89219" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalConductivity.m" - "TargetName" = "8:thermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6146460859434DC6B46784970DBEDBAE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_61C9DB5B055E4231B975615A8859A10A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\run_examples.py" - "TargetName" = "8:run_examples.py" - "Tag" = "8:" - "Folder" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6221061E3BD647AF89BF4AD1785DC9EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satVapor.m" - "TargetName" = "8:setState_satVapor.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6263283A4DC1424893235D92CA5C7F32" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Elements.h" - "TargetName" = "8:Elements.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6349662626C947BC91332BE085230672" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domain_hndl.m" - "TargetName" = "8:domain_hndl.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_637A29A294854BEB94243A2E2BE72725" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_63F7E804AA36436E9766AD90A1559698" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_641E5DD328FC499FA9E9E2BA97E138D6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_64BFD140F3C9407497F177F7920CF70C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_655DC211FDA743B8AAE2A254B8D24127" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\rxnpath1.py" - "TargetName" = "8:rxnpath1.py" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6693B16E7E2A4AE3ADC494334E18058F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\importPhase.h" - "TargetName" = "8:importPhase.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6725A6F15136415BB26BADDD3CF96F66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\GRI30.h" - "TargetName" = "8:GRI30.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6728976522BA4F4BBC490ED099A22916" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\WaterPropsIAPWS.h" - "TargetName" = "8:WaterPropsIAPWS.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_675DF947A58B4BAB9DCCF837D18044E9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\setCoverages.m" - "TargetName" = "8:setCoverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_67B4668A9613497EAD89E4D9D5CDA7B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMdot.m" - "TargetName" = "8:setMdot.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_67EEC6CEAEB7420BBA0A70992A33175D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\adiabatic.py" - "TargetName" = "8:adiabatic.py" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_68169AF538624ED5B186C338EE30F4C8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_698CE4C4A1BF440CBD28B8785A3D9F19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\flame2.py" - "TargetName" = "8:flame2.py" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_698E1FE2069C44AD8727EDCB59AFF2F4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DenseMatrix.h" - "TargetName" = "8:DenseMatrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A93CB70A0AC47D28DF27073F49C6A76" - { - "SourcePath" = "8:..\\..\\..\\License.rtf" - "TargetName" = "8:License.rtf" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A9D618F4BAD480B82EE6F7A7EBFC5F4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ckr_defs.h" - "TargetName" = "8:ckr_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A9E2F67751E4036B32A3F73F389F4B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AAD2BE4779D4141B7F3175116575B70" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molecularWeights.m" - "TargetName" = "8:molecularWeights.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AC7C33351854C93B3A9E0ADCECF0100" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\rotor.h" - "TargetName" = "8:rotor.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AEC5D1E91784853A899657570B75158" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6B4133DAEDD847D9ADB436F3A9E515BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\private\\funcmethods.m" - "TargetName" = "8:funcmethods.m" - "Tag" = "8:" - "Folder" = "8:_208069FD964F475CAB363ACBD7A943C9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6B62C2B086DE4A74ABFDB909919F3B1B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\reactionpaths.h" - "TargetName" = "8:reactionpaths.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6BB63A2172964772A16E8C5DC8FCB473" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementName.m" - "TargetName" = "8:elementName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6BF0F3B78ACB42BEB1F321B053DE8255" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6CB316A9C7F34E219EA8460990124C07" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D020030302F41549FD1141A91CA6BA2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_uv.m" - "TargetName" = "8:ignite_uv.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D7DFA49CD7F422597521F6BC18DBEAA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6DE44E9F30F44007B2E7B044619759A2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\spectralUtilities.h" - "TargetName" = "8:spectralUtilities.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6E40F711DE6E4C15977B10FEBD1145B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\addPhase.m" - "TargetName" = "8:addPhase.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6EAB3FC0E0224271BA4985CA3779D862" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\LiquidTransportParams.h" - "TargetName" = "8:LiquidTransportParams.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6F1E0DC55B9845DAB4FE758F0B54914C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\adddir.m" - "TargetName" = "8:adddir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6FF6BF505F0442DF81B97A7B0DACFF53" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\gridPoints.m" - "TargetName" = "8:gridPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_70297F7EB1434F9FAA59A5A015747606" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Kinetics.h" - "TargetName" = "8:Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7086E515306342B7A4A3EB7E47148FEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_70AC20505A614EC8BD0935D46C48C917" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_70F7102F07A84B8DB4E3D5FD338F5540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\MultiPhase.h" - "TargetName" = "8:MultiPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_71188FBDBE8C4C52A89AFDD622B108B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PureFluidPhase.h" - "TargetName" = "8:PureFluidPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_713B640959AC45A78E7B9AE581F86E14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropies_R.m" - "TargetName" = "8:entropies_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_715760DB29D349BC81FFA61C5AE33F17" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7189BBF81A8B46F596C2D94D52CA15DC" - { - "SourcePath" = "8:..\\demos\\NASA_coeffs.vcproj" - "TargetName" = "8:NASA_coeffs.vcproj" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_71FEE454B6604E2592820EDDBF4B9B3B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72C19E279C1048D59F0DDED03719FF90" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesName.m" - "TargetName" = "8:speciesName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72F9F17B043C4818960ED80D5809861A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\KOH.cti" - "TargetName" = "8:KOH.cti" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_73514E9BC5F44C509C562E01E8A958C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\nChildren.m" - "TargetName" = "8:nChildren.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7371B6545BE04A179D3611DBA99BC2CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Phase.h" - "TargetName" = "8:Phase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_738E966D4DA74FCE8C40B58983F4DBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\Interface.m" - "TargetName" = "8:Interface.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_73F2A9908B3D4174BFE10B56DECDF6AF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\CKReader.h" - "TargetName" = "8:CKReader.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_748B480FBFE048E8908EF0D5DC978E87" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_defs.h" - "TargetName" = "8:vcs_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_751FCF7F6799471992B6C1D080421B25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_F5B8CA7CC3804769839EBE6C8689F404" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_75BE33EC2FDD4D92831EC94E3583F2E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\stflame1.py" - "TargetName" = "8:stflame1.py" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_76175107E4CC4459ABF6F887224C85F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactormethods.cpp" - "TargetName" = "8:reactormethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_764D7127961644B186D3F90292091805" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setTimeStep.m" - "TargetName" = "8:setTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77579BAF22FE4F6BBA6F6E55C2227394" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77A9AA9EC6624BD592C9D29EC6F94989" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setParameters.m" - "TargetName" = "8:setParameters.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77EAFF9FBF464DF08EFF37113E7DFC96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conhp.m" - "TargetName" = "8:conhp.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78A88A902EE84766911446EF648B4A20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ReactorBase.h" - "TargetName" = "8:ReactorBase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78CF2DC24832474C9EC5304ABA596D6E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\char.m" - "TargetName" = "8:char.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\xmlmethods.cpp" - "TargetName" = "8:xmlmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78EAF772B5414C25BD4EB77E1CE069A4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_species_thermo.h" - "TargetName" = "8:vcs_species_thermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_793996EB3E1F479CA275A7CEB5851658" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_795887D785084824B7284296DC74B527" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_79674E6058F048B1B7D3CFFBCBC41561" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setValveCoeff.m" - "TargetName" = "8:setValveCoeff.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A44C47D4CAD464A97B0209D14C65139" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A639317418840CC95575AFDA89539F7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\times.m" - "TargetName" = "8:times.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A9AF6339376421580BF6E8028871929" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7AE8B40AFA7241769B5BE31427ED582B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Contents.m" - "TargetName" = "8:Contents.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7B7753AD699149308A9D8CED65455D7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentIndex.m" - "TargetName" = "8:componentIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7BE4FD7D976D4900BD24BD9AB7501E99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7CC6FCB9F695423782EC53DADE5D585A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7CDF724656054425BFB271F06BD2367C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_ConstVol.h" - "TargetName" = "8:VPSSMgr_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7D3DAEB7E7C647309752BD3A02876B72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\coverages.m" - "TargetName" = "8:coverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7D867A3EE9034A2ABB13B35762290436" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Wall.h" - "TargetName" = "8:Wall.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7DD2BAB195754859931B7B5AE308FAFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E12BAE0A2924E5B83533AABB0BAC4DB" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\liquidvapor.cti" - "TargetName" = "8:liquidvapor.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E3C43DD94004F36B0C814ED81CACB20" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E40B44934374E2C986A8908F00523D8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ImplicitChem.h" - "TargetName" = "8:ImplicitChem.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E674FA1D43F4F8FA3C0E02DB78E0AED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\free_h2_air\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E6FC70ED43A4A3293D06D67EBA76D30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\combustor_blessed_0.csv" - "TargetName" = "8:combustor_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7EA80C1EF9194C0B8790BBFE6CFF7C10" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\IDA_Solver.h" - "TargetName" = "8:IDA_Solver.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7F2FA130741D4EC0BE2D86966108FCDD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\RxnRates.h" - "TargetName" = "8:RxnRates.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7F82322C27494517A818285E796783B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7FC1EE2D828D4E0C9A209479895AE0D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\private\\domain_methods.m" - "TargetName" = "8:domain_methods.m" - "Tag" = "8:" - "Folder" = "8:_D75DB80C0EC34E90A1753028F279B4CE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8106318CEF394350AED3B89BE5973CD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\SymmPlane.m" - "TargetName" = "8:SymmPlane.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_812FFA9EA6DC43FA8D244219CD7096F8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_81812B7D110C414C960813023A134932" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\multiplier.m" - "TargetName" = "8:multiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_818FC04B27FA48F991F1F27AF1A02D2B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\NasaPoly1.h" - "TargetName" = "8:NasaPoly1.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_82CA2F512C5343BDAB3341734D58FBFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8316AAAC7D124D08AC76B1E9B1B71597" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\AdsorbateThermo.h" - "TargetName" = "8:AdsorbateThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8354660D2436459FBA8CB92DB7B6E337" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\concentrations.m" - "TargetName" = "8:concentrations.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_836038144044405AA1C2EF4B70441D38" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_838EF83CC5984E339442887CB2A83FC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8392F052F9604AD6A99C28412715DA30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\SquareMatrix.h" - "TargetName" = "8:SquareMatrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_848A110B76D949EDB0ADED7CE6454C31" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8549950E280A4786AA6D4BDC9AF44DFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_net.m" - "TargetName" = "8:stoich_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_854DF9ED3FF741069B2D162A049D5E64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85C910D16AEF4A4C9569503ED54C2E97" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85D870ADC88A4F87A4AD54AC91BE3F54" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\stoich.py" - "TargetName" = "8:stoich.py" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85DB813C30EC48A8A5B8C91E10645CEE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\SolidTransport.h" - "TargetName" = "8:SolidTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8621C91C5A2D4D9EA50AED521E7FB7CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8644F7E4286B44BF849798AA1F3EF62A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\stringUtils.h" - "TargetName" = "8:stringUtils.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87132C070E1540D8A4B033B0E98880B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\private\\mixturemethods.m" - "TargetName" = "8:mixturemethods.m" - "Tag" = "8:" - "Folder" = "8:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8729B2D3CFC043EAB78F286D76787B78" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87399508B62F47D0BC5E993FD3590D0C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\XML_Writer.h" - "TargetName" = "8:XML_Writer.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8768926E874F4BFA9F36BBCC563882F3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_878CBA68A74A4569983B332DCCEEE813" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\LatticePhase.h" - "TargetName" = "8:LatticePhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87CEEEEB6DBF409FACD5794BCBD35B3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setupGrid.m" - "TargetName" = "8:setupGrid.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87D616A7501545E899208A74F7D28235" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\solveSP.h" - "TargetName" = "8:solveSP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8801CCC3E95F4B098645DB0BF445E0F1" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_gas.cti" - "TargetName" = "8:nasa_gas.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_883D69622DD84D3A8A0D79D522CDA96B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mole.m" - "TargetName" = "8:gibbs_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_883ED26352B04EDEAD89A3CF9C86A55D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\PropertyCalculator.h" - "TargetName" = "8:PropertyCalculator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_88C7677DFAD94E838F62E0F1663FA36A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\NASA_coeffs.cpp" - "TargetName" = "8:NASA_coeffs.cpp" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_896518E51E604EB388922C7AB451EA56" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPStandardStateTP.h" - "TargetName" = "8:VPStandardStateTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_89B32FBB4FF441CFBCF0F830E202A7A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\surfmethods.cpp" - "TargetName" = "8:surfmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_89F1C726748E4E57ACFDFC467114BD09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mass.m" - "TargetName" = "8:entropy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A0AEE06B352402FA6E6C5A73E042713" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\ConstPressureReactor.h" - "TargetName" = "8:ConstPressureReactor.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A432F8B24A842C0A70A2D8FD906E798" - { - "SourcePath" = "8:..\\demos\\kinetics1.vcproj" - "TargetName" = "8:kinetics1.vcproj" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A44A594199C4334B78F3AA5D6532ADD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\xml.h" - "TargetName" = "8:xml.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A5883FE50804063BBC8EE8DA9BE78DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\saveSoln.m" - "TargetName" = "8:saveSoln.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8B0D72F9F1AE422C81E4923414EB4C13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8B6199C9EA65475D9FC6C0CE792EA501" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon.cti" - "TargetName" = "8:silicon.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C16EDF915404D23BB491F51467D0612" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\WaterSSTP.h" - "TargetName" = "8:WaterSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C7D8CEB11024B759FC6F809723ADF7A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxisymmetricFlow.m" - "TargetName" = "8:AxisymmetricFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C7FD926CFA648FB9CE0ED24957F591B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C9645906D2B4435BF0DDC85F14F5CF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentName.m" - "TargetName" = "8:componentName.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CB8ABF1BC42493F8C6451072245546C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CCF6467ECF34EE59611670E3645C719" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\Domain1D.m" - "TargetName" = "8:Domain1D.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CDB9C24D5594BB2BEC1EE74C8FED863" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Reaction.h" - "TargetName" = "8:Reaction.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D346FD7000B4F0AAF57691DB6BD9CDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFractions.m" - "TargetName" = "8:moleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D3C554266D94991816CFFDB66F29AAE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite.m" - "TargetName" = "8:ignite.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D419E40A1674FC9A198BCD3410D643D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Reservoir.m" - "TargetName" = "8:Reservoir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8ED76386711346E3BF3D43B2C65D5F6E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\RxnSpecies.h" - "TargetName" = "8:RxnSpecies.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9038E6B538DE4653AF9E77498DC5C9ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setMaxJacAge.m" - "TargetName" = "8:setMaxJacAge.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_904FCD6D55B842029CEF52AEFDEA4256" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\global.h" - "TargetName" = "8:global.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_907955714C5E41C3A0C82F4633DEBAC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\constants.m" - "TargetName" = "8:constants.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9084333D5B164E6FBDFA7096FCC75845" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\air.cti" - "TargetName" = "8:air.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_910E00C9C1E6469BB7A10318D60163F9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS_Water.h" - "TargetName" = "8:PDSS_Water.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9124D54F67494EA18B08E5CCB0DA12B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\npflame1_blessed_0.csv" - "TargetName" = "8:npflame1_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_928A4CF19A3E4474AA4EF038E37FE2B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DAE_Solver.h" - "TargetName" = "8:DAE_Solver.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_92A6D3125FA44E7B8795DE4EE0D738BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\save.m" - "TargetName" = "8:save.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_92AF3274491F489BA1041CEE3C00ED46" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9315EDEB72EF4E0799CBBD629C797E65" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_931815CAC9E94D25949A7DBDC05A5E09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\logger.h" - "TargetName" = "8:logger.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_934D9F093D1E4D64A3E1AE1B319163A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_General.h" - "TargetName" = "8:VPSSMgr_General.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_936D7ED327F842769055274860C7B7CE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr.h" - "TargetName" = "8:VPSSMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_93900A98FABF44F5BE2F6F23E3EDA13A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_set.m" - "TargetName" = "8:kinetics_set.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9469C46213AF4B0B9947F410BFF4B199" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_94F7E346CF344C0291219A51568B2A11" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ConstDensityThermo.h" - "TargetName" = "8:ConstDensityThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_95518B1185B344D8A9E17D449E22A07A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9555263A0B514E84A59C87E03AABA49F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_955D5137DD3645A68F22AC7081F4BBD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\flame_fixed_T.py" - "TargetName" = "8:flame_fixed_T.py" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_95AD84099D86441F9B0C251039B1A63F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\IdealGasMix.h" - "TargetName" = "8:IdealGasMix.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_966477D37CF5451993EFF07CFB2EE25B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\isReversible.m" - "TargetName" = "8:isReversible.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_96CCEAC6BE924D6AB858949535654A72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctfunctions.cpp" - "TargetName" = "8:ctfunctions.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9742F8FA66744C10BDA33C445BB1B5A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97AB3E7B353E4703B550348C63AEFC2D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97B185B78C154874B77D2049B3300B41" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Oxygen.m" - "TargetName" = "8:Oxygen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97C3AF757D4E47FAA20861128A24C4C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97E864DEE6A144A78B68D9A3BE9A0413" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\geterr.m" - "TargetName" = "8:geterr.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97F452B2E24D4B78B4AB754AAB4D9247" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97F7FCC94E42453B981D376F37B97503" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\critProperties.py" - "TargetName" = "8:critProperties.py" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_987750730309466A9EC1C2E3A5B1D20F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_98A1AAE4D6A54C8697F75F0890873F23" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SurfPhase.h" - "TargetName" = "8:SurfPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_98AF00ED289F450889C13394489C3D4B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\StFlow.h" - "TargetName" = "8:StFlow.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_992BC758B7374D8D9CA69B550F538255" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportFactory.h" - "TargetName" = "8:TransportFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_999E3B46B59C4234A7124019401DB7B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\stflame1_1_blessed_0.csv" - "TargetName" = "8:stflame1_1_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99BD8AC4084D439CA80816A89387CF06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\phaseMoles.m" - "TargetName" = "8:phaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99F4B3534D1A4C88BFE4FB5D2F216E23" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\plotSolution.m" - "TargetName" = "8:plotSolution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9A1598ED1AED4AF7BE7E8B3C1839F085" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\mdp_allo.h" - "TargetName" = "8:mdp_allo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9C0C04F635C34CAAB690617751FEF9A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9C83B54D3B124108AED04884A3931252" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\MultiJac.h" - "TargetName" = "8:MultiJac.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D045060258445C7988DB84395305E71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D6C72386A0B4D3489A13633E229F95D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setArea.m" - "TargetName" = "8:setArea.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D9C52DB234A43C88C442298E232C316" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ArrayViewer.h" - "TargetName" = "8:ArrayViewer.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9DE11C23FDAB482393609E8352286FFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\refine.h" - "TargetName" = "8:refine.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9E7A52340F9643268D1F2F8864729809" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\run_examples.m" - "TargetName" = "8:run_examples.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9EAE58E2FB054D75A14E63EA0CA90FAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\funcs.h" - "TargetName" = "8:funcs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A00E186E9C8E4BCD92EEF18A7870AB64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\wallmethods.cpp" - "TargetName" = "8:wallmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A0858150B00A472BA6EAE71AEBABDE58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setEnergy.m" - "TargetName" = "8:setEnergy.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A08E2857F1B1474E9AAF6D683CC3A7D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A0C6574C5F6E41E18AB6AF904617B8D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\CKParser.h" - "TargetName" = "8:CKParser.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A0F47D115D1140D78EA15ED301A96FDF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\multiphase_plasma.py" - "TargetName" = "8:multiphase_plasma.py" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A11208A3D61940228E848C672615C531" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut5.m" - "TargetName" = "8:tut5.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A1A7D85419B04E1892896FD2723CBE05" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\minTemp.m" - "TargetName" = "8:minTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A241F7A927984443A3BB7B186910ADED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\InterfaceKinetics.h" - "TargetName" = "8:InterfaceKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\.cvsignore" - "TargetName" = "8:.cvsignore" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2B810BE7C004166A16F019DFEBC09A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setKinetics.m" - "TargetName" = "8:setKinetics.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2E900A479E643268F8D32DD67E53FAE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\dist\\Cantera-1.8.0.win32-py2.6.exe" - "TargetName" = "8:Cantera-1.8.0.win32-py2.6.exe" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2ED793453A54C92AD356FF69DBFAFF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2ctml.m" - "TargetName" = "8:ck2ctml.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A386FFD174A848B8A6383A013CA12077" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPhaseMoles.m" - "TargetName" = "8:setPhaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A3D6752BC31B442CA999E19F8AA5B2E5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2cti.m" - "TargetName" = "8:ck2cti.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A4C093C7C647401E895109DA2F564C52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\child.m" - "TargetName" = "8:child.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A5136AB1792B4B98937DAC7FD6AE4E90" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ctexceptions.h" - "TargetName" = "8:ctexceptions.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A513873E6AEC441CB417942FBA4FE3A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmethods.cpp" - "TargetName" = "8:ctmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A52F55B639B6498B993D0C8831EC29A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A56B4B64A8E2482883F4F76F278103DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_3823235E9E3E445CBD912A80B866DA0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A5898A75EFDA4A008CE657485600DB0F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame\\adiabatic_flame.py" - "TargetName" = "8:adiabatic_flame.py" - "Tag" = "8:" - "Folder" = "8:_496FD029390C4E4095219F8C5BD1246F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A6399AF77EE147919D73E720D70C79FF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\gasconstant.m" - "TargetName" = "8:gasconstant.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A691E3B32AF54F4AB5F4B48577183263" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A694168142B64AB28E79B5E6E5357979" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mole.m" - "TargetName" = "8:cp_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A6CD4A6404154996835A7D9B2301BCFF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7C06AF14B3343C09C52E321CD45D0A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor1.m" - "TargetName" = "8:reactor1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7F216F3691F4406AD4BF685C2009EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut3.py" - "TargetName" = "8:tut3.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A8313B076DCE4F47BC5AB1C18D54D1E8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A84BEECAB2D34EFCA56FAE2792F51D7D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\KineticsFactory.h" - "TargetName" = "8:KineticsFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A88814C184944C9FA3E00A2DE301BB17" - { - "SourcePath" = "8:..\\demos\\Rankine.vcproj" - "TargetName" = "8:Rankine.vcproj" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A8BE7E9B8E89418B9C209C26C2481E52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ReactionData.h" - "TargetName" = "8:ReactionData.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A932A0AF2C944F8F9067A24C25B978CE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GasKinetics.h" - "TargetName" = "8:GasKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A95FA829E1D342E0BD407CA2FF074E9A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\MolalityVPSSTP.h" - "TargetName" = "8:MolalityVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A98B9A585D4F41858169AD80172314EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\onedimmethods.cpp" - "TargetName" = "8:onedimmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A9E3A786A2954BC687EB209593DFAA31" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\kinetics1\\kinetics1.cpp" - "TargetName" = "8:kinetics1.cpp" - "Tag" = "8:" - "Folder" = "8:_996658E24E89485D8D6ED952560576DF" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA0F97AADCE24AC29EF73E7D6C696C54" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_335A9AE259D245E8840177A55C54701B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA23BF6053F542538AF0B7FB48C0B4F4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\adiabatic_blessed_0.csv" - "TargetName" = "8:adiabatic_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA7D54EA12024486AA1ACD45D323E74F" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.cti" - "TargetName" = "8:gri30.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB701B636CC24D9F9CAA71C6B897E7AF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_DoubleStarStar.h" - "TargetName" = "8:vcs_DoubleStarStar.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB9515FE77614EF19E6B1E92CDD648A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ABE7E862C38241F19744114841629864" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AD788D5178DD4DE2A68B08B9297C0D7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE01A18492C447D89BA1FE02869A18DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\equil_Kc.m" - "TargetName" = "8:equil_Kc.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE235390D3E7456BBC816F28EF0EDE5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satTemperature.m" - "TargetName" = "8:satTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE6136D7D3F341089B23CF2FE032F852" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\flame2_blessed_0.csv" - "TargetName" = "8:flame2_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AEF2EA186F5D4A0486766CEC08F7A180" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AF2F612EC55F42C181F990BB5BF85D09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\soundSpeed.py" - "TargetName" = "8:soundSpeed.py" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AF505C309B83425BB0ACBC40586DC467" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_types.h" - "TargetName" = "8:VPSSMgr_types.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B0990FEE057B4CEB8E819D4F36FC023E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFlux.m" - "TargetName" = "8:massFlux.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B103E721182F4DD6AD7F65CF565F83C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\EdgeKinetics.h" - "TargetName" = "8:EdgeKinetics.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B16017E037F7472DA99F97FA0994567E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\ratecoeffs.py" - "TargetName" = "8:ratecoeffs.py" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B25E14F3380641BFA793B8AC5538DE69" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B26DE6FA1DBA4CD7A54798EFD42761C7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\Reservoir.h" - "TargetName" = "8:Reservoir.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2C4715A10D6448C8785A77EC8E23AFB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\plus.m" - "TargetName" = "8:plus.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2E109695C4F4E329F991DAB91EC054E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\piston_blessed_0.csv" - "TargetName" = "8:piston_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalDiffCoeffs.m" - "TargetName" = "8:thermalDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B310C19F9C7F4CE6891A34139EB0D630" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut1.m" - "TargetName" = "8:tut1.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B3217183190C4EF5AA058E2F2DD49E5B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B34D82DAE3934AE8B7A86ADC89132428" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_set.m" - "TargetName" = "8:phase_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B361CA65836B4CCA975759ED0B6CAE6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B37B9EC7F5E24483ABF63844CB762A5D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solve.m" - "TargetName" = "8:solve.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B383C9B0D56149A18C3933E52A659729" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\private\\trans_get.m" - "TargetName" = "8:trans_get.m" - "Tag" = "8:" - "Folder" = "8:_3FCDEC5F15154A079645D0817951A946" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B3B4F39E240F4463BB09201FC8B32CD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\reactor1.py" - "TargetName" = "8:reactor1.py" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B42AB8E6DFE545408B9760D0D10919CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc_blessed_0.csv" - "TargetName" = "8:sofc_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut1.py" - "TargetName" = "8:tut1.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4FB5F4843A24E41B7FADE7050CD9910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mass.m" - "TargetName" = "8:gibbs_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4FE641E9EE14B3A98EB023B9B281012" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B590C82783544AD2A08F289BC6320EAF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Element.h" - "TargetName" = "8:Element.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5F13C260D704D10A1AA9E9C428FD17C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ct_defs.h" - "TargetName" = "8:ct_defs.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5F44ACDAC4142C9B086E996419F26D6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B6B7A55B6F78408B87B10B799DE5A19A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\surf_pfr.py" - "TargetName" = "8:surf_pfr.py" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B6BB322EEC614D6381014E64306652A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\LogPrintCtrl.h" - "TargetName" = "8:LogPrintCtrl.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B700B3135C044AE1A0E11F64951C15B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\funcmethods.cpp" - "TargetName" = "8:funcmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B74214D38A5B4B88B5E169B9E638C59B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\functors.py" - "TargetName" = "8:functors.py" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B7E71DDEC9694BB3913A5A951D071C79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_Exception.h" - "TargetName" = "8:vcs_Exception.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B7FE7CDB0F4C4BDAB730BB096498F836" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS_ConstVol.h" - "TargetName" = "8:PDSS_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B7FE86B0D0F1439F8BD9FDA7DC0BC6E8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine\\rankine.cpp" - "TargetName" = "8:rankine.cpp" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B813F357BF6E4672A6C5C6420233E416" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\npflame_init.m" - "TargetName" = "8:npflame_init.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\private\\stack_methods.m" - "TargetName" = "8:stack_methods.m" - "Tag" = "8:" - "Folder" = "8:_57614C30E82048A8B1CDA4FC95D7707F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B8531EBC9C4146A18DBDEE03537C7895" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\water.cti" - "TargetName" = "8:water.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B8DC8835383B4D81865DE6728E152C6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\rankine\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_42895A51CFC946CC8F5C162E27B7CEA5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B90B2A45F38546C7B27A422537B6A0D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\thermo_hndl.m" - "TargetName" = "8:thermo_hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B92716F1835748778D2EA2A170A3463C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Group.h" - "TargetName" = "8:Group.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B931BA0672394A6D8134E66E8381B7D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\equil_koh_blessed_0.csv" - "TargetName" = "8:equil_koh_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B980912F97654A708BB58521244643F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\maxTemp.m" - "TargetName" = "8:maxTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9D00A7B741A4394B6D20DFBAD7B67B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\Constituent.h" - "TargetName" = "8:Constituent.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9F7ACBBB03641A189D48B3F96B177AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA1757667DBF4ECE82D987268736B4D7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesNames.m" - "TargetName" = "8:speciesNames.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA434DDB92844939B4727EA0D07F28F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\lapack.h" - "TargetName" = "8:lapack.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA56A809F849463387B0C35C554D3FDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destructionRates.m" - "TargetName" = "8:destructionRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA805C53980C41769659D085C5C8E0B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\PureFluid.h" - "TargetName" = "8:PureFluid.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\multiDiffCoeffs.m" - "TargetName" = "8:multiDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BBA24149F4C04977B6A07924A49D7352" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destruction_rates.m" - "TargetName" = "8:destruction_rates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BBB2831DC8974D1BAC6B7CC8F8FBD7E3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC01A169AEE24DEDB532037D3A25C69E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\value.m" - "TargetName" = "8:value.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC48260E6FE744BCB551169FC8E965F8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\IdealMolalSoln.h" - "TargetName" = "8:IdealMolalSoln.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC7DFDE6592D463B95C307DBE7305593" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\integrators.h" - "TargetName" = "8:integrators.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD197F0310024D04B386D3ED22B580F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_get.m" - "TargetName" = "8:kinetics_get.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD35BC44FB8F441B8E358D9D364CA587" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Water.m" - "TargetName" = "8:Water.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD9ECC0B46EC450CAF842508F8F7BE33" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PDSS_HKFT.h" - "TargetName" = "8:PDSS_HKFT.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDB11450018647D880BBB295E0BBF169" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut6.m" - "TargetName" = "8:tut6.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDE8E81A8D2245DD82FEF47265A5CC3D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\functors_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_CEAF34861F46422B868255409BD206EB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BECC05E6C8EB47B68F6344A00F04C46D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_0976E47E00BC4F85A2393D8678A18D6D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BF2D5197C57A4E03833752A2F4532AA8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mass.m" - "TargetName" = "8:cv_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BFE5589963E74E2E9883E4AE5826D851" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solution.m" - "TargetName" = "8:solution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C03B6B3C637C45749F3ACF29F4FCEDF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Methane.m" - "TargetName" = "8:Methane.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C04EEE51536C4B64BB1758CBB7873B34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\private\\wallmethods.m" - "TargetName" = "8:wallmethods.m" - "Tag" = "8:" - "Folder" = "8:_978963BB80B74B24B2062E400EF7C9EC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C065BAA069514382B51E468B5A1978A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactornetmethods.cpp" - "TargetName" = "8:reactornetmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C094488877694ABCA56EEADA30F0C108" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C0D8D2C4874C4694895DE76AF8ED8E8D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\kinetics.h" - "TargetName" = "8:kinetics.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C0E4D3E9F985430CB96D8E96014865FD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C1510D42AA964597A8CB449C6B94E86B" - { - "SourcePath" = "8:..\\demos\\CanteraDemos.sln" - "TargetName" = "8:CanteraDemos.sln" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C27608223A4A46CFB21A58073E99629E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond_cvd\\diamond_blessed_0.csv" - "TargetName" = "8:diamond_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_30C49B8557964DAAA5648B72B486BC0B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C27611FCB2744386BA7B3CD0EA9C2116" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C357D956140243B5A87AA9011DAF1207" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2_sim\\reactor2.py" - "TargetName" = "8:reactor2.py" - "Tag" = "8:" - "Folder" = "8:_41BE50E702034B8C9B8D2A4DE46C52C1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C3750F20EDFA48D78E02F27034D02209" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_set.m" - "TargetName" = "8:thermo_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C38225F7A000426CB7E955945C9466E0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\MassFlowController.m" - "TargetName" = "8:MassFlowController.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C51F790219A544D29B9BCBC4B83E1C3E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ResidEval.h" - "TargetName" = "8:ResidEval.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C54B99BA758A4FB3B844DE919B277DDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C620775E0B56481695BDA176D6BBF60A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C649E5027371431DB5A5440812C57540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut4.py" - "TargetName" = "8:tut4.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6896DE4391E40FF980A950DDE8B43D1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\surface.h" - "TargetName" = "8:surface.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6B45FFC93CC4A3F864E363E7B18206D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\reactor_hndl.m" - "TargetName" = "8:reactor_hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6F4B29F1A3B4B59A21287716572E0B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\massFlowRate.m" - "TargetName" = "8:massFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C71939C1027C4474B690DDDF4B0E8FB7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmatutils.h" - "TargetName" = "8:ctmatutils.h" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7406B26D83F4CF48E24ED78245654ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7D02D2B4C444A0C90BD6F8C6B232C91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\trans_hndl.m" - "TargetName" = "8:trans_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7FFE7D762304EA08B7376CADFF4D8C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_Water_ConstVol.h" - "TargetName" = "8:VPSSMgr_Water_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C8198F923CDB401EAF223744653A6806" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\equilibrium.h" - "TargetName" = "8:equilibrium.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C844497867604180ABCB21CF50308A75" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\L_matrix.h" - "TargetName" = "8:L_matrix.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C9AC5BC6DB9742B79D0BFF153CA39421" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SP.m" - "TargetName" = "8:setState_SP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CA734CBAEC8440EC8CB32AF7EF8D71AA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\ChemEquil.h" - "TargetName" = "8:ChemEquil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB3A0AE176934F52AE20A613C2070534" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\area.m" - "TargetName" = "8:area.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB46B6FEE22A4C689CB244EF428600BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut3.m" - "TargetName" = "8:tut3.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CBFAB93B4A1B40349FCD9BF44ED28D1F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC3803859B7F43B18EBE799C9C56933F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\periodic_cstr.m" - "TargetName" = "8:periodic_cstr.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC71BE47DD434D7CA2713A9087A88C14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCDF5C1EFB75477BB295929481C75CC7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\IncompressibleSolid.h" - "TargetName" = "8:IncompressibleSolid.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCE9C76D878344F4BF560E0136E1BCF3" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\graphite.cti" - "TargetName" = "8:graphite.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCF420B39E734D4384125DFE122E8F6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ph.m" - "TargetName" = "8:ph.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD3DBDD9333C4033AE1B724282BBBFBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\kineticsmethods.cpp" - "TargetName" = "8:kineticsmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD777AD5FF1D420DB9723E6EEC27D521" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\rankine.m" - "TargetName" = "8:rankine.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD85044C04E14CD3A9419F46205EA412" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_FFAAB2E584E943F89B7A8A54812FF5E0" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD972A5865874CB9882B6001648FB46E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Resid1D.h" - "TargetName" = "8:Resid1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CDBE3C6855AE4501803B9EDA7BFEA691" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_net.m" - "TargetName" = "8:rop_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CEC3CD033FB94DFA8810C8142FED85B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CECCCB3C56494F61A90C39EE70F3DFC9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF28519F63C34802AB33F9342405FD3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF5084794E3343669C4337B95A9F7BF1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_SpeciesProperties.h" - "TargetName" = "8:vcs_SpeciesProperties.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF7BF165F4004E0DBBFF446A66A985DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\soundspeed.m" - "TargetName" = "8:soundspeed.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFA9B0302ABC430A9DBA2BC2132B6B73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nPhases.m" - "TargetName" = "8:nPhases.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFAF2622550E48AA9B0F502BD4022FB5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFE3C277A2DF41018E63BE547F53452D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFE69F411CF84BE7ABCD4B895EF13C62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setThermalResistance.m" - "TargetName" = "8:setThermalResistance.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D08BC52EA7E5473C91A82F2CE77B9C05" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\FuncEval.h" - "TargetName" = "8:FuncEval.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D0A9D802F4924B3B8C0429DFF0D37C9E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\EdgePhase.h" - "TargetName" = "8:EdgePhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D0D86929159D4E008C467978E92A6B0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\OneDim.h" - "TargetName" = "8:OneDim.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D0E38FA5FFFD42BC9507FFC804B3B271" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic_flame\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_8E4436C4886441AE8BB0E460DFA8BE7F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D128F9F54CA949C09B3FA61A199B060F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMassFractions.m" - "TargetName" = "8:setMassFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D151A04263364A9B8005377D79AEC239" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setFixedTempProfile.m" - "TargetName" = "8:setFixedTempProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D1CD893E014F4FBE842B4B0E2CDDE652" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb_stagflow\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_A189A372257B4D2C98AC054F152082AD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D200B29D2F7E429AB771E6E92961E4C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_hp.m" - "TargetName" = "8:ignite_hp.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D2176F7DD848403DBC973A3676B579CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\advanceCoverages.m" - "TargetName" = "8:advanceCoverages.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D238C397E41B4DC684CF79761C4B85D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\GasKineticsWriter.h" - "TargetName" = "8:GasKineticsWriter.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D29E08866CBB44D0A548B5F8A7D90584" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\flowControllers.h" - "TargetName" = "8:flowControllers.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D2BB3D54E2B2459596E3FCC0C5648A63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SpeciesThermo.h" - "TargetName" = "8:SpeciesThermo.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D38628C1BEF7481C85F448F4E8D1C3EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D3EDAA4023284820AFC142093DE1AAE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Nitrogen.m" - "TargetName" = "8:Nitrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D418D6CC07974B16B70C9B93970427FC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\clockWC.h" - "TargetName" = "8:clockWC.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D428726607B744478982A6F3AEBB5937" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\spectra\\DiatomicMolecule.h" - "TargetName" = "8:DiatomicMolecule.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D49889111E484F5090ED91A8EFF57DD0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\mass.m" - "TargetName" = "8:mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D4E8F23E7DEE4EBE85604448D9E9F66F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D523D656E59A4F36A5799882AD52FE63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D53FFA2FD41F4B55B55A5F34D59755C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\critProperties.py" - "TargetName" = "8:critProperties.py" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D5E167B7033D49188854ABA54CB6A543" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\combustor.cpp" - "TargetName" = "8:combustor.cpp" - "Tag" = "8:" - "Folder" = "8:_E345C75CD39149EC856898DE24D48746" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6635B71ADB94BA0AC25AF10E53EAA56" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\diamond.cti" - "TargetName" = "8:diamond.cti" - "Tag" = "8:" - "Folder" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D669B0F109D24B248427555BFC1EFFC9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\State.h" - "TargetName" = "8:State.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D68C5368AA4548E2B31B6E44C6CF18CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6F8538106594E289818596061BE2EA6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\kinetics_hndl.m" - "TargetName" = "8:kinetics_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D75087C07C804BA994309398BC48603F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\addReactor.m" - "TargetName" = "8:addReactor.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D75AC18CFD714D179B403F394FEE5C6B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\MixTransport.h" - "TargetName" = "8:MixTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D7EDA76276BA47C5B427D5289E602655" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Constituents.h" - "TargetName" = "8:Constituents.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D8DE5B3E74534CEFBF787CCC4124FF6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\PseudoBinaryVPSSTP.h" - "TargetName" = "8:PseudoBinaryVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D9342B2A479345D79B17511A69B5E867" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA59B07FBF1F42CDB8AEF8B24809BF08" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\combustor_blessed_0.csv" - "TargetName" = "8:combustor_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA790596462048CFAECE85420D41D74F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialVolume.m" - "TargetName" = "8:setInitialVolume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA8A6A14EA7A4B87A06CA40B37404208" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame_fixed_T\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_D7ADDA3C318D49EBABB7636C3B80ECD7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB5649A025C244CCAD4CFC7607B09A28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_p.m" - "TargetName" = "8:stoich_p.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB58150AE7CE4F5390C9322D5F5E7235" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\zeroD\\PID_Controller.h" - "TargetName" = "8:PID_Controller.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB6C4271795545FA80082707D6121026" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpies_RT.m" - "TargetName" = "8:enthalpies_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB6D039C3ED14EE58F469C211EE0336C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\units.h" - "TargetName" = "8:units.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBC0EC09DC684F47B0DC34BF7958EA66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\isentropic.m" - "TargetName" = "8:isentropic.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBECDA96409E46C5A16D99CCCFC2E0DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mole.m" - "TargetName" = "8:intEnergy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC239E2B54624CCF8D26F85C98393DC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\VPSSMgr_Water_HKFT.h" - "TargetName" = "8:VPSSMgr_Water_HKFT.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC32635C462B40BEBEEC9176E79A9BB8" - { - "SourcePath" = "8:..\\..\\..\\winconfig.h" - "TargetName" = "8:winconfig.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC87F8DA14754002A1931C3C5DC89AD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DCE0313BBE4C4DFEA23ACDBB6863B390" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DD6D9600C356455D95BD2C44C50214DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_977472896DA345AC9C1D2C3999F9A4A2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DDCBFEDCC6144933941BE8B0EEBB9614" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE2D53C1D99340B28D76F985871A1D04" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxiStagnFlow.m" - "TargetName" = "8:AxiStagnFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE5BB9FAA411472B8901537165DFD827" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame1.m" - "TargetName" = "8:flame1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE6ED970A6634704843FC2D976DDB51F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\HMWSoln.h" - "TargetName" = "8:HMWSoln.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DEE4FC947E1543ECA3C5D0A1B5D82606" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isFlow.m" - "TargetName" = "8:isFlow.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF631F75976846E58594E4C6FD1630C4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF6E93BE4C85423FBB21EA3F783E0724" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF78E69F06884ED8B21785EFA82570F8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_F38CA433DA0045498BDE87595F79F7ED" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF7C83B26513481DA856DE8F3DAEF744" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E00C0F5054204111B95C89CE4CF7CFA7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\TransportParams.h" - "TargetName" = "8:TransportParams.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E0618DF655024D8BA1CA9B54B5915689" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E07080A8272044BDAD3242DFA62A3AD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E0D128147681418496692C77F4B1BECB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\Reactor.m" - "TargetName" = "8:Reactor.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E148F8C2F82A48D3A68E9E2C2CDAD846" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1570450F26743789099E1D664EA2930" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.cti" - "TargetName" = "8:sofc.cti" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E18D9C95AB9747609535A99DD2D81155" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\catcomb.m" - "TargetName" = "8:catcomb.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\reactor_ode.m" - "TargetName" = "8:reactor_ode.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1E6F5ED150E4549979E0E3F9E6D2F67" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\onedim.h" - "TargetName" = "8:onedim.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1FAFCCB6A854D248F54F164889FAB3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setRefineCriteria.m" - "TargetName" = "8:setRefineCriteria.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2073E8B81F74741B1D1EA05FBDD0F79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mole.m" - "TargetName" = "8:enthalpy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2B4EF18B90E479E8D1311CBCE13431E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2DB44B0AA4245D8BFE17D1B069BAE0F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Inlet1D.h" - "TargetName" = "8:Inlet1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2DDE31CAC874AE0B9F7F9145248BE6B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\rp_blessed_0.txt" - "TargetName" = "8:rp_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E31FFA0A95B14807BA4DA5176F48A0AE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mass.m" - "TargetName" = "8:cp_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3B3CBF11A49408DA2A465DD552AE300" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_RT.m" - "TargetName" = "8:gibbs_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3DDA7E632494939B2882BD6741CFD9D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\air.m" - "TargetName" = "8:air.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3F58F53501F4CAA92527C64B08D9EBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\phasemethods.cpp" - "TargetName" = "8:phasemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E40175C04F974A7BA19133984051989B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\flame2.py" - "TargetName" = "8:flame2.py" - "Tag" = "8:" - "Folder" = "8:_22760F0D8ABC4AB8A5B0948B2CCEF635" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4171B5DBA664372BB43F3B40B2E1236" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ThermoFactory.h" - "TargetName" = "8:ThermoFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4A483565C5E40B79805552DC4B5292C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\StoichManager.h" - "TargetName" = "8:StoichManager.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4A964C652EF407CA753B3CA1219015B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop.m" - "TargetName" = "8:rop.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E54668B3A3FB42CF85A71689A715F19B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\Func.m" - "TargetName" = "8:Func.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E646FA76573448CAA4749B18614EF782" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\enableEnergy.m" - "TargetName" = "8:enableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E6C43F98CB9E4C199ABD77B37D21A564" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\Integrator.h" - "TargetName" = "8:Integrator.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E716C1A77B764B6697138BC0DAE3E30C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E78FD6989E1D4799AAAD31ACD43B0C1D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\FtnTransport.h" - "TargetName" = "8:FtnTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E855F8CECB234B9291EC3600C31564E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8AFB1C8F7A342D5A03F305B3E0230C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setThermoMgr.m" - "TargetName" = "8:setThermoMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8E0F24BF6014C208A93130FC1761DE6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\rtol.m" - "TargetName" = "8:rtol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8E78948E8974A1DB4C3D6E63AF58602" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\rdivide.m" - "TargetName" = "8:rdivide.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8FE474C601D4386BBB0CA9599FF45BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E90BD26B31DB42D59ABCCF0A14CCCB52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\NonlinearSolver.h" - "TargetName" = "8:NonlinearSolver.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E9768C656AD141FCA969B7B9CAFE7F83" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E9DF9028F228449BA30513E9EA99147C" - { - "SourcePath" = "8:..\\..\\..\\bin\\exp3to2.sh" - "TargetName" = "8:exp3to2.sh" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA0930AEA1074763823B836B96A138A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\sort.h" - "TargetName" = "8:sort.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setCoverageEqs.m" - "TargetName" = "8:setCoverageEqs.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA8E4A02700F48B3A6136CD0055D6CFD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB3D7262767C4E5BB3581882EB0BC79C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ctmethods.mexw32" - "TargetName" = "8:ctmethods.mexw32" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB7840FED8294FFDB3111C6B3DD32833" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\oneD\\Domain1D.h" - "TargetName" = "8:Domain1D.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB82DBEEDAE14B51840A9D7153E52BBB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\Metal.h" - "TargetName" = "8:Metal.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EBB20B541FE543F7A695E466975C6495" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SpeciesThermoFactory.h" - "TargetName" = "8:SpeciesThermoFactory.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC2FDC1A744E4A1AA4793CB10F18D176" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critPressure.m" - "TargetName" = "8:critPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC476B2533A1437FA80321BB3090234E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isSurface.m" - "TargetName" = "8:isSurface.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC5F3263FCAA48CEB25E23414F082818" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC6786EBE72E46B694D473463C72A2BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\SpeciesThermoInterpType.h" - "TargetName" = "8:SpeciesThermoInterpType.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC9C8B8C68CC4B6FBF2202B0935A6396" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\IdealGasMix.m" - "TargetName" = "8:IdealGasMix.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ECA3396FBFD54A94B2DFB33B080F0D4E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2_sim\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ECAF852C95DD46A39B119046E569A5F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\Nasa9Poly1.h" - "TargetName" = "8:Nasa9Poly1.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ECED5D161C3348B98B263CFECA0A7DCF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\ctml.h" - "TargetName" = "8:ctml.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED40FDD34E984498ADC37D88B43AEAA4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\NasaPoly2.h" - "TargetName" = "8:NasaPoly2.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED67782207C047F4A5935DCE2E79F151" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor_sim\\combustor.py" - "TargetName" = "8:combustor.py" - "Tag" = "8:" - "Folder" = "8:_EC6DCD68540E416F9C134117A56B0A60" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED90DA83729C417BBEAA629FC6CE1095" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame2.m" - "TargetName" = "8:flame2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EDB029B79CF646ED9D83EE7DA1A80900" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EDC27F3DB4874D0B80C408E935F92FD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setFlatProfile.m" - "TargetName" = "8:setFlatProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EF07839F9BC941BA9127CF08C90303D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl1.m" - "TargetName" = "8:prandtl1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EFA30E0040CD47D995300679F7C2846B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\StoichSubstanceSSTP.h" - "TargetName" = "8:StoichSubstanceSSTP.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EFCA267481B0414BAE826AA0B4485F3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F15D7C13B4D94173A06FC05BFE08B4A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\Mixture.m" - "TargetName" = "8:Mixture.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F18978587EE441EA8B9B276B9FE566FD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic\\isentropic.py" - "TargetName" = "8:isentropic.py" - "Tag" = "8:" - "Folder" = "8:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F1C2DC4D3F4541478F3128EC742FC67D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critDensity.m" - "TargetName" = "8:critDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F2A92891BD6D4A87BB614760C33A483D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\converters\\ck2ct.h" - "TargetName" = "8:ck2ct.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F2E355F7534548FA97DD0E22363A0107" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\vec_functions.h" - "TargetName" = "8:vec_functions.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F325A9398503407384F1B46B1B65BE34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\z.m" - "TargetName" = "8:z.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F33D31C689BD40F2AF95AD8905B4CA5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\DASPK.h" - "TargetName" = "8:DASPK.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F3A73DE374274D23B5B71D3950610F46" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\include\\thermo.h" - "TargetName" = "8:thermo.h" - "Tag" = "8:" - "Folder" = "8:_0A794889F1894108860FAF5B5C19F2FA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\oneatm.m" - "TargetName" = "8:oneatm.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F40D33926EF24D48B642AFADF0905175" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\transport1.m" - "TargetName" = "8:transport1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F42D9F9BF66C46B3A5C9271FA5F371BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setExpansionRateCoeff.m" - "TargetName" = "8:setExpansionRateCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F47B7B39692A4CFFA8EADC42095D740D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\RateCoeffMgr.h" - "TargetName" = "8:RateCoeffMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F48C0E268A0F4258B2FD7E65B9D0AE91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\rankine\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_6EE0A973C3154AF889BC747660A3DDA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F495A54DE04C4B39B5F52C4AA64E7060" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_solve.h" - "TargetName" = "8:vcs_solve.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4E64CA79CC5489294D5EB5751985163" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_r.m" - "TargetName" = "8:stoich_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4F26BD1AB984B27A14DB3014923C36C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_5A9326FD6A214497A76F171E934D8729" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4F48A978F924204A75079994744E641" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\MetalPhase.h" - "TargetName" = "8:MetalPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4FB2F3079254D76B2DF7DF3B7391098" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\electrolytes.h" - "TargetName" = "8:electrolytes.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F52E35C2A75341B5B07D033F7072C765" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeed\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_168B35477AF641A0B1FC3CA609528ED8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F5B0599D33DE4EA882B0C846B85FD66E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\ctlapack.h" - "TargetName" = "8:ctlapack.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F622D25373114C90976CCE00B20B11FD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\StoichSubstance.h" - "TargetName" = "8:StoichSubstance.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F6A52BC1EC8D44989142E90DB7AAD1D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState.m" - "TargetName" = "8:setState.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F6E4EBD5FFCA494C8355AF6764844103" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\cleanup" - "TargetName" = "8:cleanup" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F70CE7A5A1844D3A99121A7A41ACAAF7" - { - "SourcePath" = "8:..\\..\\..\\tools\\templates\\cxx\\demo.cpp" - "TargetName" = "8:demo.cpp" - "Tag" = "8:" - "Folder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F814D235C9B243729C65F42D5CEE59D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich_flame\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_4BB35C35F43D41B3B6DB55DE61916248" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F81A7E5426654A1891028EF1BDDF87CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1\\output_blessed_0.txt" - "TargetName" = "8:output_blessed_0.txt" - "Tag" = "8:" - "Folder" = "8:_AC712E75B97F4766953A8ACF332D3F1C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F862E9C9A48D4C569698C90E1EC6850B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston_sim\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_862D1191D2FA47FDBFB0D20643AE2810" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8688399972140A18AEE3821A3076DA9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\Wall.m" - "TargetName" = "8:Wall.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F88CE78D01A1484A9A363ECD019F9ABB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\vcs_prob.h" - "TargetName" = "8:vcs_prob.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8CAB1B1AAE143949246B033BF6572AA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolecularWeight.m" - "TargetName" = "8:meanMolecularWeight.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8E58FC7A5A74126B5F8D78607815377" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\base\\Array.h" - "TargetName" = "8:Array.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8FB0389B5924D9585AA8CB15F4A2BE5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\thermo\\ThermoPhase.h" - "TargetName" = "8:ThermoPhase.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F90E2786F2D946A391E88893C923D118" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple_test\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_B86834CB836F4AB2B3D29D6BDF9C35A6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F9D283B3D2094812A29561F09605DE12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\transport\\DustyGasTransport.h" - "TargetName" = "8:DustyGasTransport.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F9E5B7A73F134E42B0EE70B7A917FFE1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\atomicMasses.m" - "TargetName" = "8:atomicMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FA43C5DB9C7546E7BB93ED688744AC52" - { - "SourcePath" = "8:..\\..\\..\\bin\\mixmaster.py" - "TargetName" = "8:mixmaster.py" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FA6DD5D364B64F17832B6BC43A6F9D6C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_C466AACC518A400CA4AA80226796F0D1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBB083851DA2463CA4F1366F4904110A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nPoints.m" - "TargetName" = "8:nPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBC9FE116DDD46DEB48CF787395219C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\ImplicitSurfChem.h" - "TargetName" = "8:ImplicitSurfChem.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\writeStats.m" - "TargetName" = "8:writeStats.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBD4F0EEEFE546FB9FF1BAD912D6C611" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBFB14FD38C7494B8A4C46E34805BC91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\surf_pfr_sim\\surf_pfr_blessed_0.csv" - "TargetName" = "8:surf_pfr_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_B7CA7580B6FE4EBCAC388C5D16971D37" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FC86845237DD456CBCC89B92C093E444" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FD0456378D394DF48B3AB5BD0502EBB1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\FalloffMgr.h" - "TargetName" = "8:FalloffMgr.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FDB8A6CE75A943ECA1F4D7DFB8F69902" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\equil\\equil.h" - "TargetName" = "8:equil.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\surfreactor.m" - "TargetName" = "8:surfreactor.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FFFDE78FD53C4E159AF3540A42F61677" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\kinetics\\Enhanced3BConc.h" - "TargetName" = "8:Enhanced3BConc.h" - "Tag" = "8:" - "Folder" = "8:_E012FB4758FF455E92C3DDA25362EAA7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{3C67513D-01DD-4637-8A68-80971EB9504F}:_78A5B9A56B3C482CBD8EAE207FE469D5" - { - "DefaultLocation" = "8:[PersonalFolder][ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_15DF1B45927A43108F6FD8BF7AB29E7A" - { - "Name" = "8:bin" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_554600D4C1ED49AB9B3F8AA14A61A393" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - { - "Name" = "8:lib" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DB5A91AA0717429F8150BEDF3E9C5883" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A0F7AAB1D684CA7825C61ED7C1B1510" - { - "Name" = "8:tutorials" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9EE8F68C07DC4618A6A96B6CC2F6F4DD" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0961E3795854450CB636397255DAA0B7" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD44CF949673422BAA32D14476046641" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_6458A3FFB8B14932A9224D66420736A4" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_07358AF408BA4439926F97BCFC4B2D4F" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3C5C7E20E5A44A629E7E36FC49B00666" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:MATLABCHECKBOX = 1" - "Transitive" = "11:FALSE" - "Property" = "8:_D5D9F0F73161444D859B49722CB836BB" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_5443CF3FEC1C4919A396E1213F7EE741" - { - "Name" = "8:toolbox" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6F2DCE9A4AA04C11955BD805A807D800" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EB2EB0FBE19246E88A9FC85FC50A0261" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CD16B7D343A04A8A8A960BC7DF6EA2C3" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_121EEBBD5CFE412CACD796AD0EF6FACB" - { - "Name" = "8:@ReactorNet" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D25A4392A14645B6856AC0586A697940" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EF7FFF45863048E0BAC8024E5E97D77C" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6A482636047A4CC39874C6CAC1A5EF83" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_1F3BBA95030B48589E34A16DD6877FCD" - { - "Name" = "8:@Wall" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FFC5ABCD0DFE4C64AA3A3119E28770C2" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_978963BB80B74B24B2062E400EF7C9EC" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_14F46BDFA3354434A8AFFDE6EB01D8B2" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_2069E985BE1F4CA4B39E0FF4C857A89D" - { - "Name" = "8:@Func" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BE26BC62A5E847FEB871B25C40EFE75C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_208069FD964F475CAB363ACBD7A943C9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_707701DD38634631A3D20827FC5AFA22" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3D735E99070D4A9C816814209321A420" - { - "Name" = "8:@XML_Node" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1813C288DD40450E9298CE06190DC28A" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_57DD5A7770D14DCB9F09381FB3D030F7" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B241B483BFD649A7B4FA5ADD1E48CB30" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_5980613DA74C49ABB29CF7F4DE8AB8E7" - { - "Name" = "8:@ThermoPhase" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FC38217CD0FB41838729EA5473177414" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_447495742352464D81706C05F55520E9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_115FA39FE4BB4AF98CC450D2C74A832C" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_69556754D0874D01BDA2D9D85F5828AB" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_57FC5782E53444E0BDBD66445370F485" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_978580DBC0A748D790712BBA0B9F1CC8" - { - "Name" = "8:@Solution" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5F863499C9764D489DC234E3476D8220" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_9B31506F5B4F443F832FD3FAB7762E64" - { - "Name" = "8:@Mixture" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5B0B4B544BB7475F8D95A7351BBB5D9B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D683DE5C1C054AF3B3A8A608F8739204" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A330CA11C4BC435B95427DEA56FD503A" - { - "Name" = "8:@Kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_38EC5A2AC0344396A365C0523516B935" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_56A5C77F96C948C3BE617599F99A4FBA" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8F8646357F9D4DFAAEEFB9D3E80E74AE" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A50BD9722A014DC391E5474262EFD7BC" - { - "Name" = "8:@Transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9609451B0BA44ECCBD59EAC256BB8FF6" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_3FCDEC5F15154A079645D0817951A946" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0AE702ED16684776A58F4024099D5B16" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B73A689A75AA49FE9E67D8BC3DE5A587" - { - "Name" = "8:@Reactor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6491ED6A6FD4419EA3AEF94895C5862D" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D663477510C5436ABAF316F6D1E24D8B" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6B68DDB908574065B114EE838055D3A9" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E30E67F5102146D39202747276B874EA" - { - "Name" = "8:1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BEB5629A74864C33BFBE85775BDF46E9" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_45FC9BD502EB46D8A920CD02D93C3848" - { - "Name" = "8:@Domain1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C30A197B3595470A87A00E99059B4FC7" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D75DB80C0EC34E90A1753028F279B4CE" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_68A85998C36844B181D4B77A3DDF4225" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_BC662E8F11194A61A8CAA2E8666C6C9F" - { - "Name" = "8:@Stack" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8AF1FDE1D7B24A50BF4A2F6F6E8F680B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_57614C30E82048A8B1CDA4FC95D7707F" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2E20167746334C26B769B9EBA08C08DD" - "Folders" - { - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F7AA24452AD2470EBD83A85CC5DB9C43" - { - "Name" = "8:@Interface" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D74B7A317604458496D56195B17245D4" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_653D9B351BDC4DD6B1AC64034FB114A1" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_12B0318E56C647B4B7CC27D5344E95EB" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F91A2400AD764EFB800A2F62CE34346C" - { - "Name" = "8:@FlowDevice" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD955CAF1DF74ADD917984BE9557C60F" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_A0CD6A9C146B405D99355A87F6B7C47D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1980519B8CAC42038A2C793D12949EB2" - "Folders" - { - } - } - } - } - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_459DD0AF25C34F349354CA380B58D1B1" - { - "Name" = "8:include" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_864A875C734E4F7993EF599A792089AF" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0A794889F1894108860FAF5B5C19F2FA" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B07B49F047FC40469C9073136E5D2AFF" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_E012FB4758FF455E92C3DDA25362EAA7" - { - "Name" = "8:kernel" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_352275D48884496D8522F3217A13F3E6" - "Folders" - { - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_46C8AF45EE22482E8A160E14A2420774" - { - "Name" = "8:data" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_64E07C739FB4417C9F46987FB8046C1D" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B5AFB668A86B4992A1E2A55DAE0CAA16" - { - "Name" = "8:templates" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_62F15E8A639B40A680E06DA189388AC0" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D97B8D9B527F4A4DAEE139297609ECEC" - { - "Name" = "8:demos" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_70CA7BFF862F455CABE89474DDC8C8FC" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_1E1FE4A0C7774B9D9C081E2DB4033D90" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6D0630638BBD4E29B840B324B4436948" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0890042B73B444F889F091DA6D68E910" - { - "Name" = "8:surface_chemistry" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7FDCBB9A8592442FB42D4EAC7D3E53D2" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_30C49B8557964DAAA5648B72B486BC0B" - { - "Name" = "8:diamond_cvd" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CD5998C3AA514C3F9D8E350B7AF5182F" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A189A372257B4D2C98AC054F152082AD" - { - "Name" = "8:catcomb_stagflow" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_399B14FE027144C088EA5D752CD26E05" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_1616A26BEFEB4172AA40AC8ED7A8DC71" - { - "Name" = "8:liquid_vapor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C2F7106B0C584CBFB1CD9EAE69B563FA" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_5755ABEA9DB14B0BBFD08E5AD69BA9F6" - { - "Name" = "8:critProperties" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_448EDC4CC83B4FEDADF2588F31B25388" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_6EE0A973C3154AF889BC747660A3DDA6" - { - "Name" = "8:rankine" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0FD260E59E584BFA9D24F853D4A45C4E" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_16393A44970E4B7FBB528A637EFFCF96" - { - "Name" = "8:transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_562525EA42174B63807DD27EA3AAF879" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A41B4ED54254F0BBA9CB3DDBA13165A" - { - "Name" = "8:kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F799EEA7F7224C0A855895023F8B3072" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_782A3716E7024C07B7E1786A6FE5D350" - { - "Name" = "8:reactors" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A52D5AC4A0DA4CF483D3E640BC1A5DA0" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_41BE50E702034B8C9B8D2A4DE46C52C1" - { - "Name" = "8:reactor2_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6412A81825374E6E826D1B646E96CE24" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_862D1191D2FA47FDBFB0D20643AE2810" - { - "Name" = "8:piston_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_99B345421BB245F58B4DA9FB52ACE08E" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_921BE2EFCA2C43B5A5A333F4DEA5AECD" - { - "Name" = "8:mix2_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4E58B33F5F65432689D27BF980D3557A" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B7CA7580B6FE4EBCAC388C5D16971D37" - { - "Name" = "8:surf_pfr_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9F36D7A44DE545179026B4E34D467D59" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_CEAF34861F46422B868255409BD206EB" - { - "Name" = "8:functors_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B2447D4E250A49168D4862CB0FD92145" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_EC6DCD68540E416F9C134117A56B0A60" - { - "Name" = "8:combustor_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BEDF13CB9C8D4564BBC43FB231DE09C4" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F38CA433DA0045498BDE87595F79F7ED" - { - "Name" = "8:sensitivity_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_75AE7C55505B4136A868BE9DB0C833E4" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F5B8CA7CC3804769839EBE6C8689F404" - { - "Name" = "8:mix1_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DDFF0DEC413C4781B8ADD5B64F0BFA8B" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_FFAAB2E584E943F89B7A8A54812FF5E0" - { - "Name" = "8:reactor1_sim" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8C062A19E942435296F9D104811208DE" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_92296F507AEB4419BC7BA3118B2C6409" - { - "Name" = "8:gasdynamics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D902ADED94764BD5A6F420077708B493" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_168B35477AF641A0B1FC3CA609528ED8" - { - "Name" = "8:soundSpeed" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FFDA88FFC7DF473A98F62C584558AAA7" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B88FF69A78C041F5AE6D6B6A74E6CAD5" - { - "Name" = "8:isentropic" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_012C7C24E9854546A6D9100EAD67751F" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_94D018F7686D4C8690B65C153B0E887F" - { - "Name" = "8:misc" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1D24D49031EB459B974D7D13D5644D3B" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_96B5AA517B204067BBA02150611C7875" - { - "Name" = "8:equilibrium" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8D8BB4AF59F64F88B994C19CC5EB233C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0976E47E00BC4F85A2393D8678A18D6D" - { - "Name" = "8:multiphase_plasma" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_67362A358639403EA42173D586FD992C" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_4BB35C35F43D41B3B6DB55DE61916248" - { - "Name" = "8:stoich_flame" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4DB8FE1DA6464EE087D1C85D09CCB548" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_8E4436C4886441AE8BB0E460DFA8BE7F" - { - "Name" = "8:adiabatic_flame" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7989BD54B4E641BDB10AE593994219B3" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B86834CB836F4AB2B3D29D6BDF9C35A6" - { - "Name" = "8:simple_test" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_22B3BAF5C13B4AF8AF215DF801DD3046" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_ACBA4EEB967B49369C5B078365A8DAA6" - { - "Name" = "8:flames" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0A2A0C303015456C841FAB6074A18B6F" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_22760F0D8ABC4AB8A5B0948B2CCEF635" - { - "Name" = "8:free_h2_air" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BF73867B624E475B8B0DE5A9375C8632" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3823235E9E3E445CBD912A80B866DA0B" - { - "Name" = "8:stflame1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_3582CFF8397947419FC216A757E77A4E" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_496FD029390C4E4095219F8C5BD1246F" - { - "Name" = "8:adiabatic_flame" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D61C1C54DF2D4449A5D4396B00A84C64" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_5A9326FD6A214497A76F171E934D8729" - { - "Name" = "8:flame2" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F1A9ADFAE8044E1DA1199836DA6DC838" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_AC712E75B97F4766953A8ACF332D3F1C" - { - "Name" = "8:flame1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8CFD385224704C63B6A1C100C26C5395" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_C466AACC518A400CA4AA80226796F0D1" - { - "Name" = "8:npflame1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_345BD77AACE24A81BDD5700796F2E20F" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D7ADDA3C318D49EBABB7636C3B80ECD7" - { - "Name" = "8:flame_fixed_T" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_DA35FF699B954BDC9FFAEFD518E4071E" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - { - "Name" = "8:fuel_cells" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A46073D5774A4A7488FE7ED41BD60D59" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_33E4779AB0C24751BA2645F9F51A39D3" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_45FAD6A5DFB047C2994B1D14F63B7703" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_91BFCC5A92684F63A014CEC3B9265F1A" - { - "Name" = "8:C++" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4550D17AF47F43D38272308352CF8718" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_335A9AE259D245E8840177A55C54701B" - { - "Name" = "8:NASA_coeffs" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6ECD8DEC64D04108B9357B5FFB3CBD8E" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_42895A51CFC946CC8F5C162E27B7CEA5" - { - "Name" = "8:rankine" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_E8977A1C8EEE4380A587A77D385169F4" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_977472896DA345AC9C1D2C3999F9A4A2" - { - "Name" = "8:flamespeed" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7B3B00D492B044BEBA59911B7C814970" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_996658E24E89485D8D6ED952560576DF" - { - "Name" = "8:kinetics1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F05750F1C83E4A10A40290572D9130DA" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E345C75CD39149EC856898DE24D48746" - { - "Name" = "8:combustor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9512C0F75C404EE1A8CDAFE1C98937B4" - "Folders" - { - } - } - } - } - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_C18AD6B27F144D1EA3F43513268152DB" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_4BFAA71B92694D76A142F5C3ED00F20A" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_446477146DAB4A47A7AFC9902BF72A7E" - "Folders" - { - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_CB299B68C1E8487BA1E6C1DE65DE88C8" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - "RequiresElevation" = "11:FALSE" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:Cantera" - "ProductCode" = "8:{52E4E337-4FCE-42FC-9AC9-6EEECE8C231E}" - "PackageCode" = "8:{6E97D128-40CD-443D-AF01-5687B8884515}" - "UpgradeCode" = "8:{1E20CBE3-A0E1-4DF5-AC48-85FF68A24B77}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:FALSE" - "DetectNewerInstalledVersion" = "11:TRUE" - "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:1.8.0" - "Manufacturer" = "8:cantera" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:http://www.cantera.org" - "Title" = "8:Cantera" - "Subject" = "8:" - "ARPCONTACT" = "8:cantera" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - "TargetPlatform" = "3:0" - "PreBuildEvent" = "8:" - "PostBuildEvent" = "8:" - "RunPostBuildEvent" = "3:0" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_A15FA43938034D689F29E65C6E8955DA" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_5BDB66062CEB415CB4959F307FD0D508" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_F857B3D1747440C9A23BF58734C6212F" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_C66D7959D9B84EB48504D18245ED499E" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_11B1D446B20C4613916F260F22FB3817" - { - "Name" = "8:MATLAB Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_6F6F7A9D0A9540169C31BFC498809033" - { - "Name" = "8:Cantera Folder" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_99B1AD3DF5084F17BBA2DA9A8E4A758E" - { - "Name" = "8:C++ Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_C1510D42AA964597A8CB449C6B94E86B" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_91BFCC5A92684F63A014CEC3B9265F1A" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_B3E018B74C474749A9DF614C49D87F87" - { - "Name" = "8:Cantera" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_CB299B68C1E8487BA1E6C1DE65DE88C8" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_C74524C318E34B64BC7F9CF0751E1641" - { - "Name" = "8:data" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_46C8AF45EE22482E8A160E14A2420774" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "WorkingFolder" = "8:" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_D36F249B6C63494C8991429C3423DCBF" - { - "Name" = "8:Python Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - } - "UserInterface" - { - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_0ED84EDEFD4A4D698882BFE1F333E307" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_29BC7A20906B4BB591C50CBADAC4F8D7" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_08E53ECD734042D6A31CA37D0355381E" - { - "Sequence" = "3:200" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_35FDF6BB662A42B1A92CE5FD019F169A" - { - "Sequence" = "3:500" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_ABC3AFA2024F4562A020AE6343D51300" - { - "Sequence" = "3:300" - "DisplayName" = "8:License Agreement" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdLicenseDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "EulaText" - { - "Name" = "8:EulaText" - "DisplayName" = "8:#1008" - "Description" = "8:#1108" - "Type" = "3:6" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:2" - "Value" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "UsePlugInResources" = "11:TRUE" - } - "Sunken" - { - "Name" = "8:Sunken" - "DisplayName" = "8:#1007" - "Description" = "8:#1107" - "Type" = "3:5" - "ContextData" = "8:4;True=4;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:4" - "DefaultValue" = "3:4" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_FA729FED55DB423CB796E6380C3BBDF8" - { - "Sequence" = "3:400" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "InstallAllUsersVisible" - { - "Name" = "8:InstallAllUsersVisible" - "DisplayName" = "8:#1059" - "Description" = "8:#1159" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_519E224B02474BA2B8DC4CD4EAE2ACF7" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2C3380451FE74068AF488EF4B6F73D94" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_6E2FF8B7EC244C94908291296E19523E" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8F2D5F455ECB44B3859CD8D454A71C60" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_61D8CE962B314E818663A48C0415867E" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_24A74643C5964C87A797E1A643FF0D0B" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_75F14606DECA4813841F459E15C791FC" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C1A3D09CAB0840249EFCEC6855096B18" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_CA30C9165C5C49C68248727A03AA7A6A" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C87AD3FA8C0A43F7A829C50FC5F1F1CD" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8D56619ED59C40F9B3C655569D7BE0E9" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_E8083BADF0444BC18403655940B69C5C" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7D3124C107AA4B8AB2828C5E89BCA5AA" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - } - "MergeModule" - { - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_056E63AF596746FA840673460F3467BA" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:policy_9_0_Microsoft_VC90_DebugCRT_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_91ECA244CB1C451DB46B22E1F3C67359" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:microsoft_vc90_debugcrt_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_C8AF9CA24B964B2BB4BC8FB57F4DA315" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:policy_9_0_Microsoft_VC90_CRT_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_D459FF6207F848EFACC8160512BC04C0" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:microsoft_vc90_crt_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "ProjectOutput" - { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_058317BC8A364FC684F4FCE559188827" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\zeroD_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_08587955063141779B605860D7FF04D3" - { - "SourcePath" = "8:..\\..\\..\\build\\bin\\i686-pc-win32\\ck2cti.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_0E292CD01C814FA9945C45A7BA9E1065" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib_d.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_14738B23CCC74201B3F3619639554DD1" - { - "SourcePath" = "8:..\\..\\..\\build\\bin\\i686-pc-win32\\cti2ctml.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{4F5B4442-98E5-4B11-9239-CDF5148C1902}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_1CA7BB938C7D4C37BB5B6A9E4F73E489" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\equil_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5B4B5866-2B50-4E34-9F00-B5C12677B4B5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_235972FD19834CC49568823B639F6056" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\thermo.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_25F3A3CA11F8464AAB68B5C04090FB61" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\equil.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5B4B5866-2B50-4E34-9F00-B5C12677B4B5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_2A358D00247749D8B1F2C9B3DD913939" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctcxx_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{E342202C-F877-43D0-8E66-D2A7794AC900}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_2BC84B66CFCB4348AB644025BE8CEA68" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\transport.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_2ED30B81981D48DD93B5D82BD4BD44BA" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\SUNDIALS_SHARED_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_4DC82D064F6147E1B333AA027B89F749" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\base.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D76CE458-2A16-42DD-AE25-E282886C358F}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_5048D18ABBA04F1ABD69A18075601D4C" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\tpx_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_54649A08925747FC887AFD20755FB76A" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctmath.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{127547E3-416C-4C12-82E9-52F912142FB5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_5B070567B4124B929F20C826CD87ADDF" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctf2c_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_5B8B28601AB74E219F5FEF5F2EB9F01D" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\numerics_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AD56DAD7-108B-4E82-993E-1EC6A0DFD209}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_5F680C78BC254BFF8F45CFC07B3C1347" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\kinetics_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{8CB43708-231A-4F80-B777-5F0A90CDB604}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_601B1AAC354E477ABB10113E35D7B43D" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\kinetics.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{8CB43708-231A-4F80-B777-5F0A90CDB604}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_660FB1E1734442FE83CFB2A9CD93280E" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctlapack.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{2701B198-FEC1-45A8-BC20-AACA46B64986}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_6E6713375FC642C3A0632A59F17D60E7" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\transport_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_7774CD885BC1422CABE117B602355EAF" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctlapack_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{2701B198-FEC1-45A8-BC20-AACA46B64986}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_82727AA7E07F4E739D5D2373354378A9" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\CVODES_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_83393619A55E4551870EB738FB1D5C4E" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\oneD_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_838BEA5EF8254762914B08B917C1F7ED" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctblas.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_888BD7BA9EC64ED59283DB69834E4BA9" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_8C238445125B4DEFA1FCA671D9D4A328" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\numerics.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AD56DAD7-108B-4E82-993E-1EC6A0DFD209}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_8CF03958D7D44F7A9B30BCEDFA55CD0A" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctmath_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{127547E3-416C-4C12-82E9-52F912142FB5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_941C872E96C14317AAB918817A02BCEA" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\NVEC_SER_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9D3366B508A141EA9651BD24FEB2FFF6" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\tpx.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A352B1A3A72149AC807C5650BD40EA55" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\SUNDIALS_SHARED.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A44ED41478454FE1AC8F437795125788" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\thermo_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A5FDFAB8D04D4091B74F945CDFA13EE7" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctblas_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_BFB996117C244A958E3F46131CFA483A" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctcxx.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{E342202C-F877-43D0-8E66-D2A7794AC900}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_C07F50571A13454FAD88671C31B82B9A" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\CVODES.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_C3742ACDED3441C8B9626B36358FF45F" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\base_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D76CE458-2A16-42DD-AE25-E282886C358F}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_CD0873029B1A4CA781081A1551554150" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\oneD.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_D2DF67E2996C456AB37115D5EF067CEE" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\NVEC_SER.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_D56AB4AFFE3943C7AA22831BCB2FF143" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctf2c.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_DC0CDC30152E4448A80DDBE817E76A8D" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_F0198774990541808A87CB1A6FE41597" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\zeroD.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_2028BFDE9BDD459AACDEBDAA6F37CC4E" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Release|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - } -} diff --git a/win32/vc9/SetupCantera/SetupCanteraLite.vdproj b/win32/vc9/SetupCantera/SetupCanteraLite.vdproj deleted file mode 100755 index cf63ae0d6..000000000 --- a/win32/vc9/SetupCantera/SetupCanteraLite.vdproj +++ /dev/null @@ -1,11974 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:800" -"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupCanteraLite" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_0067AAD709D94D2693870A06ECD55183" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0170832FE2DB4AE0BF9768C53BE03A84" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_022EDF1564FF4680B6AA609CE897983A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04C83EB86A3C45AB93638133493E5923" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_051107F9F8CE4364AC76D00D23F8B7C5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05690F470DFA457FBF7C925A8420EE5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_05EE24E611E74A1C88CE22420CA5500D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0700963A1F1B41FFABC3911498DB18B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08587955063141779B605860D7FF04D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0936663A9C31411CA21989F4FA39A5F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_09812E60422340BF9B92C7BF4CDE6FC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_099E198F6C01436DB271857F1309977D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A01A5CC173A4619BBAE80DFCE7B23B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0A2F83F932A74CAABB87DEEAC1B9536C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0ACC7910CC8A46E38521F8A78AF253D2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B0170BC983349DD945697DB4576507A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B09C9A0BF24498399548814F95D1EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C8BFBA19BE949699F417570F8C69B5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C9010E357C748BEB820CF0E830F09DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D0FFCC38C4645D997283F1C5CED5E06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0D47388E1B474AF08F6DA0FE72025C42" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DDF1766C6A04C76AE6AF7FBC35E471B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1049E82786DB4EB2BDEFF972136B0F19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_105638BB017C47DA814720D4C027908E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11553AE6EA7A424D9621E724DFECC70F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11AF9ACB25D6477DAE6906C2F6F688CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11E4F38118B54DC680D5CB741B29BE8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_11EE4F61EA0740F1BE63419C7A48F185" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_125E1AC217CC40BD8F4534E875CB9D0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12BF22BA87424178B29DB07E669C3501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1420A489C89E4859ACE78FD5DD27C00A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14580E5B948E47509A941AA338014D25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15D3C38D37A94D67B313EC3B57DA2AC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1603140AC6F7489CA14D3F41F58E9379" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C0D130AB2748E6890B937071A27A0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16C40536EB0A45658DF4EC29D7CBBFF9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_16DD6B492C274AC6BA6ED913C513A10B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_17873678EB8F4A3AB2296EB4E4483220" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_18712B731C5F4CED9DD70EC680C9BE15" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1889FAD37671415E95CCA5B1BCAC9E32" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_188F8F797CE24E7C9FC6BD62D2B5D37F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A3D179D05C74A909F2B5B6E254459BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A66CE0396934BBDBA728386725B2310" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A758A2D9CC24D13A732C1F61D692657" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1AA05F39A2464BDD922D26B58FE78BC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B053CD5461740CB891855B80F250AED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D0B3F7CDFF14AD2A879AF1565D65509" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D7106B99F8D451CA0562A6C57C2CC3C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DF1B93159BE475CA0438F31722F856B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F6340B91C654BDAB4FDCA7B545A9ADD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_219FDC3ACB2A4C81935851A9CAA7E1EF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_21EB392DF37A421CABBDA197A9226C0A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_232F4C7716264866BDEA07B97B583460" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_23CE4DDD38054CA49B17BEEF4D728230" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254CA5A242F04444AB0F18F9ECDD091B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_254F288B4BAC4BDFB4B21E76747FF336" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2656FD40F3784C588D4004D409B0F80E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26A7FE2928CE45CDB52C4B3326A33951" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26E683AE357D4F70A3DC3C57295541D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_26F0BA63411646978592D51F26AEA36D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27549892F823435798B476FC52F3F012" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27DE8E5E29574E81B2D3ACC4E87B9637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_290E7C7E5DF64841B1F913EEFE006069" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29200BDEF8B44EC69E128788F4E09B16" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A1589369A874D0EBFFE3F6D98426A49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A962975342142978B3DE11A20C9AA52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2AA7C0041FC74F718A561EF0696DCB45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D09076E55604C73A82892D474E11779" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2DEE49E2A7B4424E824CE5D0FB2846A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2EC7B0A350C34DF0B88C45A54FBFCC99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_30A47D7D93D84874A41E1782FDBCEAAC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31AD332AA56C4DF190FE6D941FAAFBFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_31E9E8DFB7144795A05AEEE66B279AB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32A08E26D90A41869BE37A47450DADCC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32EAE5622F7540E4AC357D8D1CE10D8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33DBCAB550F1494AA40EFC4ABEFBADC4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34722C3A5A5F4217AD66444E408BD476" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_362E5E6B9766498182C5008280A41BD2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36C2D841FA684319BDF30F2B68589637" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_372176D2A2AF406DBD625F54972DD57C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3778A89EFC6C475E8AFE84940043B8DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37B9F5E138A645AAA6CE6C3A36E5361F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37DD28283FAE43A78586C3D99D999022" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_385C8980D3A44A2093CD638714277678" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_389AC795E7E842888394BE52A051FA12" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39B2C611CD84448489F8AAFF5BD8AB28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3A49848C6AC948D8A7CB60B10FE0D83A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3AC42291E06E4768B0D87839DC9B9E77" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3B00646190674532ABC512E89130A0D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CFA6387302F446AB7938595154FF208" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D56811387944E55AD39C984228C4EAB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3DCD90FBD1DF4FA588238C70E0BADBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E35E9D3EC6141BBA820F7D01B815B64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F96D57E8F9E461F8C90E0ACB1C937D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FC1A192ACD74D0099AA094225B7D7FB" - "OwnerKey" = "8:_08587955063141779B605860D7FF04D3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FC1A192ACD74D0099AA094225B7D7FB" - "OwnerKey" = "8:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FE261F2E167434D804087B6019EB309" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF4115C0C3E4C1686E79FBDDD2387B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_406AF99237D3409BB85917A5A60F74ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_40E56E51E02745B4AEBA40660CEC686A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4112A1F6C299475E8562339C3C38AA30" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_411BB46D848848E492899FDC17C2D1CB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41BB99990E1246928D44C3F17942116E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_426E85F25D874E3F8F14D31E41AACF51" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42A0DE2343CF4D5FB768588C28368E2F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_436F32BB3B714A24A6B5FD1BC342A9D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43C69E8F23BD4919BB63BD40909B3759" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4401025D0D424A86B6C25A9B34792A95" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44512354EA8C4577A9085C81B028A63A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4479546E1AAE44FFAEFC0A710BA2E8FA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44DD06CC20DF420A998E2F1D0B980A99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_451FADB3D70145F9BF8D235E092B637A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4555B1D563634B6AAE88E0051E34DCE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_46756B27C91E4C17A9F3C06BCC6D9011" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_47F3CF4BEA29482B95C1AFFF8F6C8145" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_480527309EA14538802C74D4B190DBBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A677774412940DEAF6AF1EDC27A3C58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4B3F9D28B70C4E339662B2029BC4027B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4BB20697D6B74F4C8917A9D04AA4A240" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C18112956A24BF6A1BF387E433469DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C432477911B4A8596B03914FF5916C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D71E06EFE884CABA33151E1C5263C86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DCD79F33434471C82E0AF768F55ABDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4EEA2D8311E542998617CB07AF269FD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51E2B9E78A964BD383DD8FD460AA4BEF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52519B41A4064DEEB452445FD3550B6F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_533E20A890AF4129A378968FF67AF0A5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53EA1C41778744F09879AEAE0BAA0233" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53F7FA910CDC4CDEBD4257B5798B1B68" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_54A0EE28997D4BAFA2E782BD6448A658" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_589104AC830A4577B736D1106E7955A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_58EB415F05014A608F1D6B281082D92F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59166DBD45564A4195E8A079862D7DF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59245571144542D38FEC0EC1F00503B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59AA52C5E25745589B34218C6B13216B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A494D5F32BD411D861645EF9D5CDB73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AE86752EC8A4B54BA6494A9F33FFC71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5CF936560FF2465682DB2D4643C37441" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5D50FACA9AE548919661678B7562D727" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6006C6D0EC294FC39274776F6EA12BCD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_60D94AAFB6AA45F89A490D537326B0A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_61151103C608408DB35D78567822421D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_611E4F1900564CD88F755749C3B89219" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6221061E3BD647AF89BF4AD1785DC9EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6349662626C947BC91332BE085230672" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_655DC211FDA743B8AAE2A254B8D24127" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_675DF947A58B4BAB9DCCF837D18044E9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67B4668A9613497EAD89E4D9D5CDA7B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A9E2F67751E4036B32A3F73F389F4B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AAD2BE4779D4141B7F3175116575B70" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AEC5D1E91784853A899657570B75158" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B4133DAEDD847D9ADB436F3A9E515BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BB63A2172964772A16E8C5DC8FCB473" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D020030302F41549FD1141A91CA6BA2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D7DFA49CD7F422597521F6BC18DBEAA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E40F711DE6E4C15977B10FEBD1145B4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6F1E0DC55B9845DAB4FE758F0B54914C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FF6BF505F0442DF81B97A7B0DACFF53" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7086E515306342B7A4A3EB7E47148FEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_713B640959AC45A78E7B9AE581F86E14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73514E9BC5F44C509C562E01E8A958C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_738E966D4DA74FCE8C40B58983F4DBE7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76175107E4CC4459ABF6F887224C85F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_764D7127961644B186D3F90292091805" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76E915885B634DC6B57F89520C4788A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77A9AA9EC6624BD592C9D29EC6F94989" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_77EAFF9FBF464DF08EFF37113E7DFC96" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78CF2DC24832474C9EC5304ABA596D6E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_795887D785084824B7284296DC74B527" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79674E6058F048B1B7D3CFFBCBC41561" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A639317418840CC95575AFDA89539F7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A85089C17D248A7A8A12641C4F86125" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A9AF6339376421580BF6E8028871929" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7AE8B40AFA7241769B5BE31427ED582B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B7753AD699149308A9D8CED65455D7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7BE4FD7D976D4900BD24BD9AB7501E99" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CC6FCB9F695423782EC53DADE5D585A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D3DAEB7E7C647309752BD3A02876B72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7DD2BAB195754859931B7B5AE308FAFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E12BAE0A2924E5B83533AABB0BAC4DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F82322C27494517A818285E796783B0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7FC1EE2D828D4E0C9A209479895AE0D0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8106318CEF394350AED3B89BE5973CD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_811F3F47C3D94B628C68557B0EB6B36B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_81812B7D110C414C960813023A134932" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_820901EF2B7645DA9A49A95F3E9DE675" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_82CA2F512C5343BDAB3341734D58FBFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8354660D2436459FBA8CB92DB7B6E337" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8549950E280A4786AA6D4BDC9AF44DFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_854DF9ED3FF741069B2D162A049D5E64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87132C070E1540D8A4B033B0E98880B5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87CEEEEB6DBF409FACD5794BCBD35B3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8801CCC3E95F4B098645DB0BF445E0F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_883D69622DD84D3A8A0D79D522CDA96B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89B32FBB4FF441CFBCF0F830E202A7A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89F1C726748E4E57ACFDFC467114BD09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A5883FE50804063BBC8EE8DA9BE78DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B0D72F9F1AE422C81E4923414EB4C13" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B6199C9EA65475D9FC6C0CE792EA501" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7D8CEB11024B759FC6F809723ADF7A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C7FD926CFA648FB9CE0ED24957F591B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C9645906D2B4435BF0DDC85F14F5CF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CB8ABF1BC42493F8C6451072245546C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CCF6467ECF34EE59611670E3645C719" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D346FD7000B4F0AAF57691DB6BD9CDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D3C554266D94991816CFFDB66F29AAE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D419E40A1674FC9A198BCD3410D643D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9038E6B538DE4653AF9E77498DC5C9ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_907955714C5E41C3A0C82F4633DEBAC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9084333D5B164E6FBDFA7096FCC75845" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_92A6D3125FA44E7B8795DE4EE0D738BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_93900A98FABF44F5BE2F6F23E3EDA13A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_966477D37CF5451993EFF07CFB2EE25B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_96CCEAC6BE924D6AB858949535654A72" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_979C4C61FFCC47BF9DD9142A747D70F3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97AB3E7B353E4703B550348C63AEFC2D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97B185B78C154874B77D2049B3300B41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E71EC4B7404230AA4186AE74AE88F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97E864DEE6A144A78B68D9A3BE9A0413" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_997EF831DA8A4F9C99259C70FFD9E6C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99BD8AC4084D439CA80816A89387CF06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F4B3534D1A4C88BFE4FB5D2F216E23" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9B44971E00A5481BBA5AFD0A2166D16F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C0C04F635C34CAAB690617751FEF9A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D045060258445C7988DB84395305E71" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D6C72386A0B4D3489A13633E229F95D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E7A52340F9643268D1F2F8864729809" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F0C5F7640E84C648A16A5663DC11CF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A00E186E9C8E4BCD92EEF18A7870AB64" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A0858150B00A472BA6EAE71AEBABDE58" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A11208A3D61940228E848C672615C531" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1555851966F4CBDB4BE3837641C843A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1A7D85419B04E1892896FD2723CBE05" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2B810BE7C004166A16F019DFEBC09A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A2ED793453A54C92AD356FF69DBFAFF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A386FFD174A848B8A6383A013CA12077" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A3D6752BC31B442CA999E19F8AA5B2E5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A44EA116D8BD401B9F5CB43FD0A516EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A4C093C7C647401E895109DA2F564C52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A513873E6AEC441CB417942FBA4FE3A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A571DB581B7B4085B6EE29881A27A2D8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6399AF77EE147919D73E720D70C79FF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A694168142B64AB28E79B5E6E5357979" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7C06AF14B3343C09C52E321CD45D0A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7F216F3691F4406AD4BF685C2009EC2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A98B9A585D4F41858169AD80172314EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AA7D54EA12024486AA1ACD45D323E74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AD850F3126CA46F9AEB85D4851B8149F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE01A18492C447D89BA1FE02869A18DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE235390D3E7456BBC816F28EF0EDE5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AEF2EA186F5D4A0486766CEC08F7A180" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B0990FEE057B4CEB8E819D4F36FC023E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B25E14F3380641BFA793B8AC5538DE69" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2C4715A10D6448C8785A77EC8E23AFB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B310C19F9C7F4CE6891A34139EB0D630" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3217183190C4EF5AA058E2F2DD49E5B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B34D82DAE3934AE8B7A86ADC89132428" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B37B9EC7F5E24483ABF63844CB762A5D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B383C9B0D56149A18C3933E52A659729" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4FB5F4843A24E41B7FADE7050CD9910" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B700B3135C044AE1A0E11F64951C15B3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7ADCE96BBE64258BC9786A36007F18B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B813F357BF6E4672A6C5C6420233E416" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8531EBC9C4146A18DBDEE03537C7895" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B90B2A45F38546C7B27A422537B6A0D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B980912F97654A708BB58521244643F1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA1757667DBF4ECE82D987268736B4D7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA56A809F849463387B0C35C554D3FDE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BBA24149F4C04977B6A07924A49D7352" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BC01A169AEE24DEDB532037D3A25C69E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD197F0310024D04B386D3ED22B580F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD35BC44FB8F441B8E358D9D364CA587" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDB11450018647D880BBB295E0BBF169" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BF2D5197C57A4E03833752A2F4532AA8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BFE5589963E74E2E9883E4AE5826D851" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C03B6B3C637C45749F3ACF29F4FCEDF6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C04EEE51536C4B64BB1758CBB7873B34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C065BAA069514382B51E468B5A1978A3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C094488877694ABCA56EEADA30F0C108" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C21C0E1658844265AABB721C6F59AB24" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C3750F20EDFA48D78E02F27034D02209" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C38225F7A000426CB7E955945C9466E0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C54B99BA758A4FB3B844DE919B277DDA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C649E5027371431DB5A5440812C57540" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6B45FFC93CC4A3F864E363E7B18206D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C6F4B29F1A3B4B59A21287716572E0B1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C71939C1027C4474B690DDDF4B0E8FB7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7406B26D83F4CF48E24ED78245654ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7D02D2B4C444A0C90BD6F8C6B232C91" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C9AC5BC6DB9742B79D0BFF153CA39421" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB2FCC33698242D0BFDAA47D5C4B0F63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB3A0AE176934F52AE20A613C2070534" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB46B6FEE22A4C689CB244EF428600BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC3803859B7F43B18EBE799C9C56933F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CC71BE47DD434D7CA2713A9087A88C14" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCE9C76D878344F4BF560E0136E1BCF3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CCF420B39E734D4384125DFE122E8F6A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD3DBDD9333C4033AE1B724282BBBFBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD777AD5FF1D420DB9723E6EEC27D521" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CDBE3C6855AE4501803B9EDA7BFEA691" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEC3CD033FB94DFA8810C8142FED85B8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CECCCB3C56494F61A90C39EE70F3DFC9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF28519F63C34802AB33F9342405FD3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF7BF165F4004E0DBBFF446A66A985DD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFA9B0302ABC430A9DBA2BC2132B6B73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE3C277A2DF41018E63BE547F53452D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CFE69F411CF84BE7ABCD4B895EF13C62" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D128F9F54CA949C09B3FA61A199B060F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D151A04263364A9B8005377D79AEC239" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D200B29D2F7E429AB771E6E92961E4C9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D2176F7DD848403DBC973A3676B579CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3284BDBAC7847909EAF138FCCDD512F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3EDAA4023284820AFC142093DE1AAE4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D49889111E484F5090ED91A8EFF57DD0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D523D656E59A4F36A5799882AD52FE63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6635B71ADB94BA0AC25AF10E53EAA56" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D68C5368AA4548E2B31B6E44C6CF18CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6F8538106594E289818596061BE2EA6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D75087C07C804BA994309398BC48603F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA790596462048CFAECE85420D41D74F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DA9C782985C041509BE9C4A7CB68A4A8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB5649A025C244CCAD4CFC7607B09A28" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB6C4271795545FA80082707D6121026" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBC0EC09DC684F47B0DC34BF7958EA66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBECDA96409E46C5A16D99CCCFC2E0DE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC87F8DA14754002A1931C3C5DC89AD7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DDCBFEDCC6144933941BE8B0EEBB9614" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE2D53C1D99340B28D76F985871A1D04" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE5BB9FAA411472B8901537165DFD827" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DEE4FC947E1543ECA3C5D0A1B5D82606" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF6E93BE4C85423FBB21EA3F783E0724" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DF7C83B26513481DA856DE8F3DAEF744" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E07080A8272044BDAD3242DFA62A3AD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0D128147681418496692C77F4B1BECB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E148F8C2F82A48D3A68E9E2C2CDAD846" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1570450F26743789099E1D664EA2930" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E18D9C95AB9747609535A99DD2D81155" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1FAFCCB6A854D248F54F164889FAB3F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2073E8B81F74741B1D1EA05FBDD0F79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E2B4EF18B90E479E8D1311CBCE13431E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E31FFA0A95B14807BA4DA5176F48A0AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3B3CBF11A49408DA2A465DD552AE300" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3D9492FF8AB48679A4B287D1CE30AD6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3DDA7E632494939B2882BD6741CFD9D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3F58F53501F4CAA92527C64B08D9EBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4A964C652EF407CA753B3CA1219015B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E54668B3A3FB42CF85A71689A715F19B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E646FA76573448CAA4749B18614EF782" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E716C1A77B764B6697138BC0DAE3E30C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E855F8CECB234B9291EC3600C31564E1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E885D5C620AE4F7B824607C2AE4001AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8AFB1C8F7A342D5A03F305B3E0230C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E0F24BF6014C208A93130FC1761DE6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8E78948E8974A1DB4C3D6E63AF58602" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8FE474C601D4386BBB0CA9599FF45BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA8E4A02700F48B3A6136CD0055D6CFD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB1CB1838E7449B4B3F05EF3BA026DC8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB2F210E1C9240598CC672B338EF7B07" - "OwnerKey" = "8:_3FC1A192ACD74D0099AA094225B7D7FB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB89828AF09E40FFA26D353F1088C41B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC2FDC1A744E4A1AA4793CB10F18D176" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC476B2533A1437FA80321BB3090234E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC9C8B8C68CC4B6FBF2202B0935A6396" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED90DA83729C417BBEAA629FC6CE1095" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDC27F3DB4874D0B80C408E935F92FD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF07839F9BC941BA9127CF08C90303D9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F15D7C13B4D94173A06FC05BFE08B4A7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1C2DC4D3F4541478F3128EC742FC67D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F325A9398503407384F1B46B1B65BE34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F40D33926EF24D48B642AFADF0905175" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F42D9F9BF66C46B3A5C9271FA5F371BA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F4E64CA79CC5489294D5EB5751985163" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F6A52BC1EC8D44989142E90DB7AAD1D5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8688399972140A18AEE3821A3076DA9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F8CAB1B1AAE143949246B033BF6572AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9E5B7A73F134E42B0EE70B7A917FFE1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FA43C5DB9C7546E7BB93ED688744AC52" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBB083851DA2463CA4F1366F4904110A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\SetupCanteraLite.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - "DebugMDD" - { - "DisplayName" = "8:DebugMDD" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:DebugMDD\\SetupCanteraLite.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\Cantera.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - } - } - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "File" - { - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0067AAD709D94D2693870A06ECD55183" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_condensed.cti" - "TargetName" = "8:nasa_condensed.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0170832FE2DB4AE0BF9768C53BE03A84" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\setMultiplier.m" - "TargetName" = "8:setMultiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_022EDF1564FF4680B6AA609CE897983A" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\h2o2.cti" - "TargetName" = "8:h2o2.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_04C83EB86A3C45AB93638133493E5923" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\argon.cti" - "TargetName" = "8:argon.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_051107F9F8CE4364AC76D00D23F8B7C5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite2.m" - "TargetName" = "8:ignite2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05690F470DFA457FBF7C925A8420EE5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\mix_hndl.m" - "TargetName" = "8:mix_hndl.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_05EE24E611E74A1C88CE22420CA5500D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\equil.m" - "TargetName" = "8:equil.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0700963A1F1B41FFABC3911498DB18B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\stoich.py" - "TargetName" = "8:stoich.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0936663A9C31411CA21989F4FA39A5F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\diamond.py" - "TargetName" = "8:diamond.py" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_09812E60422340BF9B92C7BF4CDE6FC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\piston.py" - "TargetName" = "8:piston.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_099E198F6C01436DB271857F1309977D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_get.m" - "TargetName" = "8:phase_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A01A5CC173A4619BBAE80DFCE7B23B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolarMass.m" - "TargetName" = "8:meanMolarMass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A2221F9D5B34C5AAD8B8BE2B6279D2C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Hydrogen.m" - "TargetName" = "8:Hydrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A2F83F932A74CAABB87DEEAC1B9536C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0ACC7910CC8A46E38521F8A78AF253D2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ThermoPhase.m" - "TargetName" = "8:ThermoPhase.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B0170BC983349DD945697DB4576507A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\atol.m" - "TargetName" = "8:atol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B09C9A0BF24498399548814F95D1EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setThermalConductivity.m" - "TargetName" = "8:setThermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C8BFBA19BE949699F417570F8C69B5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SV.m" - "TargetName" = "8:setState_SV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0C9010E357C748BEB820CF0E830F09DF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setDensity.m" - "TargetName" = "8:setDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0D0FFCC38C4645D997283F1C5CED5E06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setMaxTimeStep.m" - "TargetName" = "8:setMaxTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0D47388E1B474AF08F6DA0FE72025C42" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\rankine.py" - "TargetName" = "8:rankine.py" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0DDF1766C6A04C76AE6AF7FBC35E471B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\netProdRates.m" - "TargetName" = "8:netProdRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1049E82786DB4EB2BDEFF972136B0F19" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satPressure.m" - "TargetName" = "8:satPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_105638BB017C47DA814720D4C027908E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\private\\surfmethods.m" - "TargetName" = "8:surfmethods.m" - "Tag" = "8:" - "Folder" = "8:_653D9B351BDC4DD6B1AC64034FB114A1" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11553AE6EA7A424D9621E724DFECC70F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarDensity.m" - "TargetName" = "8:molarDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11AF9ACB25D6477DAE6906C2F6F688CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11E4F38118B54DC680D5CB741B29BE8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\volume.m" - "TargetName" = "8:volume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_11EE4F61EA0740F1BE63419C7A48F185" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_HP.m" - "TargetName" = "8:setState_HP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_125E1AC217CC40BD8F4534E875CB9D0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_12BF22BA87424178B29DB07E669C3501" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1420A489C89E4859ACE78FD5DD27C00A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\Transport.m" - "TargetName" = "8:Transport.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14580E5B948E47509A941AA338014D25" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_15D3C38D37A94D67B313EC3B57DA2AC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\private\\flowdevicemethods.m" - "TargetName" = "8:flowdevicemethods.m" - "Tag" = "8:" - "Folder" = "8:_A0CD6A9C146B405D99355A87F6B7C47D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1603140AC6F7489CA14D3F41F58E9379" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\buildwin.m" - "TargetName" = "8:buildwin.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16C0D130AB2748E6890B937071A27A0E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\ydot.m" - "TargetName" = "8:ydot.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16C40536EB0A45658DF4EC29D7CBBFF9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByID.m" - "TargetName" = "8:findByID.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16DD6B492C274AC6BA6ED913C513A10B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\thermomethods.cpp" - "TargetName" = "8:thermomethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_17873678EB8F4A3AB2296EB4E4483220" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isInlet.m" - "TargetName" = "8:isInlet.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_18712B731C5F4CED9DD70EC680C9BE15" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1889FAD37671415E95CCA5B1BCAC9E32" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_r.m" - "TargetName" = "8:rop_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_188F8F797CE24E7C9FC6BD62D2B5D37F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\isentropic.py" - "TargetName" = "8:isentropic.py" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A3D179D05C74A909F2B5B6E254459BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Inlet.m" - "TargetName" = "8:Inlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A66CE0396934BBDBA728386725B2310" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\KOH.cti" - "TargetName" = "8:KOH.cti" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A758A2D9CC24D13A732C1F61D692657" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1AA05F39A2464BDD922D26B58FE78BC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame2.py" - "TargetName" = "8:flame2.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B053CD5461740CB891855B80F250AED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl2.m" - "TargetName" = "8:prandtl2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1C064CAB7CCC46D7AB833B0D4F99F3FE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\GRI30.m" - "TargetName" = "8:GRI30.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D0B3F7CDFF14AD2A879AF1565D65509" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mole.m" - "TargetName" = "8:entropy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D7106B99F8D451CA0562A6C57C2CC3C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importInterface.m" - "TargetName" = "8:importInterface.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1DF1B93159BE475CA0438F31722F856B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor1.py" - "TargetName" = "8:reactor1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1F6340B91C654BDAB4FDCA7B545A9ADD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainType.m" - "TargetName" = "8:domainType.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_219FDC3ACB2A4C81935851A9CAA7E1EF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_R.m" - "TargetName" = "8:cp_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21BB012CDAF24DC3BD1F5D7AB7E5B123" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21EB392DF37A421CABBDA197A9226C0A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\diffflame.m" - "TargetName" = "8:diffflame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_232F4C7716264866BDEA07B97B583460" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_UV.m" - "TargetName" = "8:setState_UV.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_23CE4DDD38054CA49B17BEEF4D728230" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\ready.m" - "TargetName" = "8:ready.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_254CA5A242F04444AB0F18F9ECDD091B" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\ptcombust.cti" - "TargetName" = "8:ptcombust.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_254F288B4BAC4BDFB4B21E76747FF336" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\attrib.m" - "TargetName" = "8:attrib.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2656FD40F3784C588D4004D409B0F80E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Outlet.m" - "TargetName" = "8:Outlet.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26A7FE2928CE45CDB52C4B3326A33951" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setHeatTransferCoeff.m" - "TargetName" = "8:setHeatTransferCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26E683AE357D4F70A3DC3C57295541D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conuv.m" - "TargetName" = "8:conuv.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_26F0BA63411646978592D51F26AEA36D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rxnEqs.m" - "TargetName" = "8:rxnEqs.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27549892F823435798B476FC52F3F012" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molarMasses.m" - "TargetName" = "8:molarMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27DE8E5E29574E81B2D3ACC4E87B9637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\addChild.m" - "TargetName" = "8:addChild.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_290E7C7E5DF64841B1F913EEFE006069" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_29200BDEF8B44EC69E128788F4E09B16" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\intEnergy_mass.m" - "TargetName" = "8:intEnergy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A1589369A874D0EBFFE3F6D98426A49" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A962975342142978B3DE11A20C9AA52" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\elements.xml" - "TargetName" = "8:elements.xml" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2AA7C0041FC74F718A561EF0696DCB45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2D09076E55604C73A82892D474E11779" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\restore.m" - "TargetName" = "8:restore.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2DEE49E2A7B4424E824CE5D0FB2846A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EB12A8F1F384A8BAF64EF7C8A0CAEE8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setKineticsMgr.m" - "TargetName" = "8:setKineticsMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2EC7B0A350C34DF0B88C45A54FBFCC99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut7.m" - "TargetName" = "8:tut7.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_30A47D7D93D84874A41E1782FDBCEAAC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\creationRates.m" - "TargetName" = "8:creationRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31AD332AA56C4DF190FE6D941FAAFBFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\vaporFraction.m" - "TargetName" = "8:vaporFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31E9E8DFB7144795A05AEEE66B279AB6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\viscosity.m" - "TargetName" = "8:viscosity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32A08E26D90A41869BE37A47450DADCC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\binDiffCoeffs.m" - "TargetName" = "8:binDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_32EAE5622F7540E4AC357D8D1CE10D8C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\isIdealGas.m" - "TargetName" = "8:isIdealGas.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33DBCAB550F1494AA40EFC4ABEFBADC4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Psat.m" - "TargetName" = "8:setState_Psat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_34722C3A5A5F4217AD66444E408BD476" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\Surface.m" - "TargetName" = "8:Surface.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_362E5E6B9766498182C5008280A41BD2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\Solution.m" - "TargetName" = "8:Solution.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_36C2D841FA684319BDF30F2B68589637" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\FlowDevice.m" - "TargetName" = "8:FlowDevice.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_372176D2A2AF406DBD625F54972DD57C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nTotalSpecies.m" - "TargetName" = "8:nTotalSpecies.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3778A89EFC6C475E8AFE84940043B8DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setSpeciesMoles.m" - "TargetName" = "8:setSpeciesMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37B9F5E138A645AAA6CE6C3A36E5361F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37DD28283FAE43A78586C3D99D999022" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon_carbide.cti" - "TargetName" = "8:silicon_carbide.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_385C8980D3A44A2093CD638714277678" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_389AC795E7E842888394BE52A051FA12" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\wall_hndl.m" - "TargetName" = "8:wall_hndl.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_39B2C611CD84448489F8AAFF5BD8AB28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\nReactions.m" - "TargetName" = "8:nReactions.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3A49848C6AC948D8A7CB60B10FE0D83A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\disableEnergy.m" - "TargetName" = "8:disableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3AC42291E06E4768B0D87839DC9B9E77" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut2.m" - "TargetName" = "8:tut2.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3B00646190674532ABC512E89130A0D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut4.m" - "TargetName" = "8:tut4.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C8CC5D3AD6747949C0F25EDBCFBF84E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setBounds.m" - "TargetName" = "8:setBounds.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CFA6387302F446AB7938595154FF208" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.xml" - "TargetName" = "8:gri30.xml" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3D56811387944E55AD39C984228C4EAB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\insert.m" - "TargetName" = "8:insert.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3DCD90FBD1DF4FA588238C70E0BADBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\function1.py" - "TargetName" = "8:function1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3E35E9D3EC6141BBA820F7D01B815B64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.py" - "TargetName" = "8:sofc.py" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3F96D57E8F9E461F8C90E0ACB1C937D3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setMassFlowRate.m" - "TargetName" = "8:setMassFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FCDAC7FAAA245718B7EF6CF5CF0658B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\transport\\dustygas.py" - "TargetName" = "8:dustygas.py" - "Tag" = "8:" - "Folder" = "8:_16393A44970E4B7FBB528A637EFFCF96" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FE261F2E167434D804087B6019EB309" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silane.cti" - "TargetName" = "8:silane.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3FF4115C0C3E4C1686E79FBDDD2387B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\private\\reactornetmethods.m" - "TargetName" = "8:reactornetmethods.m" - "Tag" = "8:" - "Folder" = "8:_EF7FFF45863048E0BAC8024E5E97D77C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_406AF99237D3409BB85917A5A60F74ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_40E56E51E02745B4AEBA40660CEC686A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\Stack.m" - "TargetName" = "8:Stack.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4112A1F6C299475E8562339C3C38AA30" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite3.m" - "TargetName" = "8:ignite3.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_411BB46D848848E492899FDC17C2D1CB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\flowdevicemethods.cpp" - "TargetName" = "8:flowdevicemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_41BB99990E1246928D44C3F17942116E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setID.m" - "TargetName" = "8:setID.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_426E85F25D874E3F8F14D31E41AACF51" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42A0DE2343CF4D5FB768588C28368E2F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\findByName.m" - "TargetName" = "8:findByName.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_436F32BB3B714A24A6B5FD1BC342A9D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_43C69E8F23BD4919BB63BD40909B3759" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut2.py" - "TargetName" = "8:tut2.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4401025D0D424A86B6C25A9B34792A95" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Valve.m" - "TargetName" = "8:Valve.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44512354EA8C4577A9085C81B028A63A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_Tsat.m" - "TargetName" = "8:setState_Tsat.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4479546E1AAE44FFAEFC0A710BA2E8FA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\resid.m" - "TargetName" = "8:resid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44DD06CC20DF420A998E2F1D0B980A99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_f.m" - "TargetName" = "8:rop_f.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_451FADB3D70145F9BF8D235E092B637A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\transportmethods.cpp" - "TargetName" = "8:transportmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4555B1D563634B6AAE88E0051E34DCE9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_46756B27C91E4C17A9F3C06BCC6D9011" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\gasdynamics\\soundSpeeds.py" - "TargetName" = "8:soundSpeeds.py" - "Tag" = "8:" - "Folder" = "8:_92296F507AEB4419BC7BA3118B2C6409" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_47F3CF4BEA29482B95C1AFFF8F6C8145" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\private\\reactormethods.m" - "TargetName" = "8:reactormethods.m" - "Tag" = "8:" - "Folder" = "8:_D663477510C5436ABAF316F6D1E24D8B" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_480527309EA14538802C74D4B190DBBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\enthalpy_mass.m" - "TargetName" = "8:enthalpy_mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4A677774412940DEAF6AF1EDC27A3C58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\cleanup.m" - "TargetName" = "8:cleanup.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4B3F9D28B70C4E339662B2029BC4027B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4BB20697D6B74F4C8917A9D04AA4A240" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\mixDiffCoeffs.m" - "TargetName" = "8:mixDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C18112956A24BF6A1BF387E433469DC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\write.m" - "TargetName" = "8:write.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C432477911B4A8596B03914FF5916C4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\reactornet_hndl.m" - "TargetName" = "8:reactornet_hndl.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4D71E06EFE884CABA33151E1C5263C86" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_get.m" - "TargetName" = "8:thermo_get.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DCD79F33434471C82E0AF768F55ABDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\importFromFile.m" - "TargetName" = "8:importFromFile.m" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4DEC127FA73B460DB7B5A24EEB8F7ED9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4EEA2D8311E542998617CB07AF269FD1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critTemperature.m" - "TargetName" = "8:critTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_51E2B9E78A964BD383DD8FD460AA4BEF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\set.m" - "TargetName" = "8:set.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_52519B41A4064DEEB452445FD3550B6F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame.m" - "TargetName" = "8:flame.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_533E20A890AF4129A378968FF67AF0A5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\reactionEqn.m" - "TargetName" = "8:reactionEqn.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53EA1C41778744F09879AEAE0BAA0233" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satLiquid.m" - "TargetName" = "8:setState_satLiquid.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53F7FA910CDC4CDEBD4257B5798B1B68" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFraction.m" - "TargetName" = "8:moleFraction.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54A0EE28997D4BAFA2E782BD6448A658" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\importPhase.m" - "TargetName" = "8:importPhase.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_589104AC830A4577B736D1106E7955A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\eosType.m" - "TargetName" = "8:eosType.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_58EB415F05014A608F1D6B281082D92F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\grid.m" - "TargetName" = "8:grid.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59166DBD45564A4195E8A079862D7DF4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59245571144542D38FEC0EC1F00503B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor2.m" - "TargetName" = "8:reactor2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59AA52C5E25745589B34218C6B13216B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\XML_Node.m" - "TargetName" = "8:XML_Node.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A0D8F275B3845FF8DB3D3FFB417B1B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\Kinetics.m" - "TargetName" = "8:Kinetics.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A494D5F32BD411D861645EF9D5CDB73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5AE86752EC8A4B54BA6494A9F33FFC71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\ReactorNet.m" - "TargetName" = "8:ReactorNet.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5CF936560FF2465682DB2D4643C37441" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mole.m" - "TargetName" = "8:cv_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5D50FACA9AE548919661678B7562D727" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\polynom.m" - "TargetName" = "8:polynom.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6006C6D0EC294FC39274776F6EA12BCD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\nAtoms.m" - "TargetName" = "8:nAtoms.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_60D94AAFB6AA45F89A490D537326B0A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\refPressure.m" - "TargetName" = "8:refPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_61151103C608408DB35D78567822421D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setValue.m" - "TargetName" = "8:setValue.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_611E4F1900564CD88F755749C3B89219" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalConductivity.m" - "TargetName" = "8:thermalConductivity.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6221061E3BD647AF89BF4AD1785DC9EA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_satVapor.m" - "TargetName" = "8:setState_satVapor.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6349662626C947BC91332BE085230672" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domain_hndl.m" - "TargetName" = "8:domain_hndl.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_655DC211FDA743B8AAE2A254B8D24127" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\misc\\rxnpath1.py" - "TargetName" = "8:rxnpath1.py" - "Tag" = "8:" - "Folder" = "8:_94D018F7686D4C8690B65C153B0E887F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_675DF947A58B4BAB9DCCF837D18044E9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\setCoverages.m" - "TargetName" = "8:setCoverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_67B4668A9613497EAD89E4D9D5CDA7B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setMdot.m" - "TargetName" = "8:setMdot.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A93CB70A0AC47D28DF27073F49C6A76" - { - "SourcePath" = "8:..\\..\\..\\License.rtf" - "TargetName" = "8:License.rtf" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6A9E2F67751E4036B32A3F73F389F4B7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AAD2BE4779D4141B7F3175116575B70" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\molecularWeights.m" - "TargetName" = "8:molecularWeights.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AEC5D1E91784853A899657570B75158" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6B4133DAEDD847D9ADB436F3A9E515BC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\private\\funcmethods.m" - "TargetName" = "8:funcmethods.m" - "Tag" = "8:" - "Folder" = "8:_208069FD964F475CAB363ACBD7A943C9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6BB63A2172964772A16E8C5DC8FCB473" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\elementName.m" - "TargetName" = "8:elementName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D020030302F41549FD1141A91CA6BA2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_uv.m" - "TargetName" = "8:ignite_uv.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D7DFA49CD7F422597521F6BC18DBEAA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6E40F711DE6E4C15977B10FEBD1145B4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\addPhase.m" - "TargetName" = "8:addPhase.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6F1E0DC55B9845DAB4FE758F0B54914C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\adddir.m" - "TargetName" = "8:adddir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6FF6BF505F0442DF81B97A7B0DACFF53" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\gridPoints.m" - "TargetName" = "8:gridPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7086E515306342B7A4A3EB7E47148FEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_713B640959AC45A78E7B9AE581F86E14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropies_R.m" - "TargetName" = "8:entropies_R.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_72C5A2D97B6549FCB5FE6E610B4DEDBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesName.m" - "TargetName" = "8:speciesName.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_73514E9BC5F44C509C562E01E8A958C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\nChildren.m" - "TargetName" = "8:nChildren.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_738E966D4DA74FCE8C40B58983F4DBE7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\Interface.m" - "TargetName" = "8:Interface.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_76175107E4CC4459ABF6F887224C85F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactormethods.cpp" - "TargetName" = "8:reactormethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_764D7127961644B186D3F90292091805" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setTimeStep.m" - "TargetName" = "8:setTimeStep.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_76E915885B634DC6B57F89520C4788A6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\adiabatic.py" - "TargetName" = "8:adiabatic.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77A9AA9EC6624BD592C9D29EC6F94989" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\setParameters.m" - "TargetName" = "8:setParameters.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_77EAFF9FBF464DF08EFF37113E7DFC96" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\conhp.m" - "TargetName" = "8:conhp.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78CF2DC24832474C9EC5304ABA596D6E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\char.m" - "TargetName" = "8:char.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78E8CFB48EAB4A1F9DE0BDC2402A0D5F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\xmlmethods.cpp" - "TargetName" = "8:xmlmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_795887D785084824B7284296DC74B527" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_79674E6058F048B1B7D3CFFBCBC41561" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\setValveCoeff.m" - "TargetName" = "8:setValveCoeff.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A639317418840CC95575AFDA89539F7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\times.m" - "TargetName" = "8:times.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A85089C17D248A7A8A12641C4F86125" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\simple.py" - "TargetName" = "8:simple.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A9AF6339376421580BF6E8028871929" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7AE8B40AFA7241769B5BE31427ED582B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Contents.m" - "TargetName" = "8:Contents.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7B7753AD699149308A9D8CED65455D7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentIndex.m" - "TargetName" = "8:componentIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7BE4FD7D976D4900BD24BD9AB7501E99" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\build.m" - "TargetName" = "8:build.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7CC6FCB9F695423782EC53DADE5D585A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7D3DAEB7E7C647309752BD3A02876B72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\coverages.m" - "TargetName" = "8:coverages.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7DD2BAB195754859931B7B5AE308FAFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E12BAE0A2924E5B83533AABB0BAC4DB" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\liquidvapor.cti" - "TargetName" = "8:liquidvapor.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7F82322C27494517A818285E796783B0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7FC1EE2D828D4E0C9A209479895AE0D0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\private\\domain_methods.m" - "TargetName" = "8:domain_methods.m" - "Tag" = "8:" - "Folder" = "8:_D75DB80C0EC34E90A1753028F279B4CE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8106318CEF394350AED3B89BE5973CD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\SymmPlane.m" - "TargetName" = "8:SymmPlane.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_811F3F47C3D94B628C68557B0EB6B36B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\combustor.py" - "TargetName" = "8:combustor.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_81812B7D110C414C960813023A134932" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\multiplier.m" - "TargetName" = "8:multiplier.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_820901EF2B7645DA9A49A95F3E9DE675" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ctmethods.mexw32" - "TargetName" = "8:ctmethods.mexw32" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_82CA2F512C5343BDAB3341734D58FBFE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8354660D2436459FBA8CB92DB7B6E337" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Interface\\concentrations.m" - "TargetName" = "8:concentrations.m" - "Tag" = "8:" - "Folder" = "8:_F7AA24452AD2470EBD83A85CC5DB9C43" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8549950E280A4786AA6D4BDC9AF44DFC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_net.m" - "TargetName" = "8:stoich_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_854DF9ED3FF741069B2D162A049D5E64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\hndl.m" - "TargetName" = "8:hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87132C070E1540D8A4B033B0E98880B5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\private\\mixturemethods.m" - "TargetName" = "8:mixturemethods.m" - "Tag" = "8:" - "Folder" = "8:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87CEEEEB6DBF409FACD5794BCBD35B3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setupGrid.m" - "TargetName" = "8:setupGrid.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8801CCC3E95F4B098645DB0BF445E0F1" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\nasa_gas.cti" - "TargetName" = "8:nasa_gas.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_883D69622DD84D3A8A0D79D522CDA96B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mole.m" - "TargetName" = "8:gibbs_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_89B32FBB4FF441CFBCF0F830E202A7A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\surfmethods.cpp" - "TargetName" = "8:surfmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_89F1C726748E4E57ACFDFC467114BD09" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\entropy_mass.m" - "TargetName" = "8:entropy_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A5883FE50804063BBC8EE8DA9BE78DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\saveSoln.m" - "TargetName" = "8:saveSoln.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8B0D72F9F1AE422C81E4923414EB4C13" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setProfile.m" - "TargetName" = "8:setProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8B6199C9EA65475D9FC6C0CE792EA501" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\silicon.cti" - "TargetName" = "8:silicon.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C7D8CEB11024B759FC6F809723ADF7A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxisymmetricFlow.m" - "TargetName" = "8:AxisymmetricFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C7FD926CFA648FB9CE0ED24957F591B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C9645906D2B4435BF0DDC85F14F5CF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\componentName.m" - "TargetName" = "8:componentName.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CB8ABF1BC42493F8C6451072245546C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CCF6467ECF34EE59611670E3645C719" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\Domain1D.m" - "TargetName" = "8:Domain1D.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D346FD7000B4F0AAF57691DB6BD9CDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\moleFractions.m" - "TargetName" = "8:moleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D3C554266D94991816CFFDB66F29AAE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite.m" - "TargetName" = "8:ignite.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8D419E40A1674FC9A198BCD3410D643D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Reservoir.m" - "TargetName" = "8:Reservoir.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9038E6B538DE4653AF9E77498DC5C9ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setMaxJacAge.m" - "TargetName" = "8:setMaxJacAge.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_907955714C5E41C3A0C82F4633DEBAC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\constants.m" - "TargetName" = "8:constants.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9084333D5B164E6FBDFA7096FCC75845" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\air.cti" - "TargetName" = "8:air.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_92A6D3125FA44E7B8795DE4EE0D738BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\save.m" - "TargetName" = "8:save.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_93900A98FABF44F5BE2F6F23E3EDA13A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_set.m" - "TargetName" = "8:kinetics_set.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_966477D37CF5451993EFF07CFB2EE25B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\isReversible.m" - "TargetName" = "8:isReversible.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_96CCEAC6BE924D6AB858949535654A72" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctfunctions.cpp" - "TargetName" = "8:ctfunctions.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_979C4C61FFCC47BF9DD9142A747D70F3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\dist\\Cantera-1.7.0.win32-py2.5.exe" - "TargetName" = "8:Cantera-1.7.0.win32-py2.5.exe" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97AB3E7B353E4703B550348C63AEFC2D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97B185B78C154874B77D2049B3300B41" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Oxygen.m" - "TargetName" = "8:Oxygen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97E71EC4B7404230AA4186AE74AE88F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\tdata.dat" - "TargetName" = "8:tdata.dat" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97E864DEE6A144A78B68D9A3BE9A0413" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\geterr.m" - "TargetName" = "8:geterr.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_997EF831DA8A4F9C99259C70FFD9E6C2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\fixed_T_flame.py" - "TargetName" = "8:fixed_T_flame.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99BD8AC4084D439CA80816A89387CF06" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\phaseMoles.m" - "TargetName" = "8:phaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_99F4B3534D1A4C88BFE4FB5D2F216E23" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\plotSolution.m" - "TargetName" = "8:plotSolution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9B44971E00A5481BBA5AFD0A2166D16F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\kinetics\\ratecoeffs.py" - "TargetName" = "8:ratecoeffs.py" - "Tag" = "8:" - "Folder" = "8:_3A41B4ED54254F0BBA9CB3DDBA13165A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9C0C04F635C34CAAB690617751FEF9A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D045060258445C7988DB84395305E71" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D6C72386A0B4D3489A13633E229F95D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setArea.m" - "TargetName" = "8:setArea.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9E7A52340F9643268D1F2F8864729809" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\run_examples.m" - "TargetName" = "8:run_examples.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9F0C5F7640E84C648A16A5663DC11CF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\write.cpp" - "TargetName" = "8:write.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A00E186E9C8E4BCD92EEF18A7870AB64" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\wallmethods.cpp" - "TargetName" = "8:wallmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A0858150B00A472BA6EAE71AEBABDE58" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setEnergy.m" - "TargetName" = "8:setEnergy.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A11208A3D61940228E848C672615C531" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut5.m" - "TargetName" = "8:tut5.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A1555851966F4CBDB4BE3837641C843A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\reactor2.py" - "TargetName" = "8:reactor2.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A1A7D85419B04E1892896FD2723CBE05" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\minTemp.m" - "TargetName" = "8:minTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2B1EDE36AFF46F2B7BED46EB5A9BE01" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\.cvsignore" - "TargetName" = "8:.cvsignore" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2B810BE7C004166A16F019DFEBC09A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setKinetics.m" - "TargetName" = "8:setKinetics.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A2ED793453A54C92AD356FF69DBFAFF3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2ctml.m" - "TargetName" = "8:ck2ctml.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A386FFD174A848B8A6383A013CA12077" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPhaseMoles.m" - "TargetName" = "8:setPhaseMoles.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A3D6752BC31B442CA999E19F8AA5B2E5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\ck2cti.m" - "TargetName" = "8:ck2cti.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A44EA116D8BD401B9F5CB43FD0A516EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\npflame1.py" - "TargetName" = "8:npflame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A4C093C7C647401E895109DA2F564C52" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\child.m" - "TargetName" = "8:child.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A513873E6AEC441CB417942FBA4FE3A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmethods.cpp" - "TargetName" = "8:ctmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A571DB581B7B4085B6EE29881A27A2D8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\free_h2_air.py" - "TargetName" = "8:free_h2_air.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A6399AF77EE147919D73E720D70C79FF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\gasconstant.m" - "TargetName" = "8:gasconstant.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A694168142B64AB28E79B5E6E5357979" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mole.m" - "TargetName" = "8:cp_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7C06AF14B3343C09C52E321CD45D0A1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\reactor1.m" - "TargetName" = "8:reactor1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7F216F3691F4406AD4BF685C2009EC2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut3.py" - "TargetName" = "8:tut3.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A98B9A585D4F41858169AD80172314EC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\onedimmethods.cpp" - "TargetName" = "8:onedimmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AA7D54EA12024486AA1ACD45D323E74F" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\gri30.cti" - "TargetName" = "8:gri30.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB9D8BFEC9524074BE2B855CFF1D1CEC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AD850F3126CA46F9AEB85D4851B8149F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix1.py" - "TargetName" = "8:mix1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE01A18492C447D89BA1FE02869A18DA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\equil_Kc.m" - "TargetName" = "8:equil_Kc.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AE235390D3E7456BBC816F28EF0EDE5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\satTemperature.m" - "TargetName" = "8:satTemperature.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AEF2EA186F5D4A0486766CEC08F7A180" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\chemPotentials.m" - "TargetName" = "8:chemPotentials.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B0990FEE057B4CEB8E819D4F36FC023E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFlux.m" - "TargetName" = "8:massFlux.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B25E14F3380641BFA793B8AC5538DE69" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2C4715A10D6448C8785A77EC8E23AFB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\plus.m" - "TargetName" = "8:plus.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2F2F7B8362C4C1CA918C4EC9C23E9B6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\thermalDiffCoeffs.m" - "TargetName" = "8:thermalDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B310C19F9C7F4CE6891A34139EB0D630" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut1.m" - "TargetName" = "8:tut1.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B3217183190C4EF5AA058E2F2DD49E5B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\pressure.m" - "TargetName" = "8:pressure.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B34D82DAE3934AE8B7A86ADC89132428" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\phase_set.m" - "TargetName" = "8:phase_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B37B9EC7F5E24483ABF63844CB762A5D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solve.m" - "TargetName" = "8:solve.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B383C9B0D56149A18C3933E52A659729" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\private\\trans_get.m" - "TargetName" = "8:trans_get.m" - "Tag" = "8:" - "Folder" = "8:_3FCDEC5F15154A079645D0817951A946" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4BD907A8BCD4724AA7BBD9965ACBFA0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut1.py" - "TargetName" = "8:tut1.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B4FB5F4843A24E41B7FADE7050CD9910" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_mass.m" - "TargetName" = "8:gibbs_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5CC2A0B4D3A4617A09A9EACF2A124CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\display.m" - "TargetName" = "8:display.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B700B3135C044AE1A0E11F64951C15B3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\funcmethods.cpp" - "TargetName" = "8:funcmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B7ADCE96BBE64258BC9786A36007F18B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\adiabatic_flame.py" - "TargetName" = "8:adiabatic_flame.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B813F357BF6E4672A6C5C6420233E416" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\npflame_init.m" - "TargetName" = "8:npflame_init.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B83C9AFF8AD942FE9FD4D3C90A2169F0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\private\\stack_methods.m" - "TargetName" = "8:stack_methods.m" - "Tag" = "8:" - "Folder" = "8:_57614C30E82048A8B1CDA4FC95D7707F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B8531EBC9C4146A18DBDEE03537C7895" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\water.cti" - "TargetName" = "8:water.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B90B2A45F38546C7B27A422537B6A0D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\thermo_hndl.m" - "TargetName" = "8:thermo_hndl.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B980912F97654A708BB58521244643F1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\maxTemp.m" - "TargetName" = "8:maxTemp.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9B6AEE7F3704CA78F9A5C37F0B31D89" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMoleFractions.m" - "TargetName" = "8:setMoleFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA1757667DBF4ECE82D987268736B4D7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\speciesNames.m" - "TargetName" = "8:speciesNames.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA56A809F849463387B0C35C554D3FDE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destructionRates.m" - "TargetName" = "8:destructionRates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BACCA2E1D01D43BDB24ABA1E3E89AA45" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\multiDiffCoeffs.m" - "TargetName" = "8:multiDiffCoeffs.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BBA24149F4C04977B6A07924A49D7352" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\destruction_rates.m" - "TargetName" = "8:destruction_rates.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BC01A169AEE24DEDB532037D3A25C69E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@XML_Node\\value.m" - "TargetName" = "8:value.m" - "Tag" = "8:" - "Folder" = "8:_3D735E99070D4A9C816814209321A420" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD197F0310024D04B386D3ED22B580F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\private\\kinetics_get.m" - "TargetName" = "8:kinetics_get.m" - "Tag" = "8:" - "Folder" = "8:_56A5C77F96C948C3BE617599F99A4FBA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD35BC44FB8F441B8E358D9D364CA587" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Water.m" - "TargetName" = "8:Water.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDB11450018647D880BBB295E0BBF169" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut6.m" - "TargetName" = "8:tut6.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BF2D5197C57A4E03833752A2F4532AA8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cv_mass.m" - "TargetName" = "8:cv_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BFE5589963E74E2E9883E4AE5826D851" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\solution.m" - "TargetName" = "8:solution.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C03B6B3C637C45749F3ACF29F4FCEDF6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Methane.m" - "TargetName" = "8:Methane.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C04EEE51536C4B64BB1758CBB7873B34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\private\\wallmethods.m" - "TargetName" = "8:wallmethods.m" - "Tag" = "8:" - "Folder" = "8:_978963BB80B74B24B2062E400EF7C9EC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C065BAA069514382B51E468B5A1978A3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\reactornetmethods.cpp" - "TargetName" = "8:reactornetmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C094488877694ABCA56EEADA30F0C108" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C21C0E1658844265AABB721C6F59AB24" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\stflame1.py" - "TargetName" = "8:stflame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C3750F20EDFA48D78E02F27034D02209" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\private\\thermo_set.m" - "TargetName" = "8:thermo_set.m" - "Tag" = "8:" - "Folder" = "8:_447495742352464D81706C05F55520E9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C38225F7A000426CB7E955945C9466E0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\MassFlowController.m" - "TargetName" = "8:MassFlowController.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C54B99BA758A4FB3B844DE919B277DDA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nComponents.m" - "TargetName" = "8:nComponents.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C649E5027371431DB5A5440812C57540" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\tutorial\\tut4.py" - "TargetName" = "8:tut4.py" - "Tag" = "8:" - "Folder" = "8:_6458A3FFB8B14932A9224D66420736A4" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6B45FFC93CC4A3F864E363E7B18206D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\reactor_hndl.m" - "TargetName" = "8:reactor_hndl.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C6F4B29F1A3B4B59A21287716572E0B1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@FlowDevice\\massFlowRate.m" - "TargetName" = "8:massFlowRate.m" - "Tag" = "8:" - "Folder" = "8:_F91A2400AD764EFB800A2F62CE34346C" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C71939C1027C4474B690DDDF4B0E8FB7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\ctmatutils.h" - "TargetName" = "8:ctmatutils.h" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7406B26D83F4CF48E24ED78245654ED" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\install.m" - "TargetName" = "8:install.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C7D02D2B4C444A0C90BD6F8C6B232C91" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Transport\\trans_hndl.m" - "TargetName" = "8:trans_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A50BD9722A014DC391E5474262EFD7BC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C9AC5BC6DB9742B79D0BFF153CA39421" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState_SP.m" - "TargetName" = "8:setState_SP.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB2FCC33698242D0BFDAA47D5C4B0F63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\surface_chemistry\\catcomb.py" - "TargetName" = "8:catcomb.py" - "Tag" = "8:" - "Folder" = "8:_0890042B73B444F889F091DA6D68E910" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB3A0AE176934F52AE20A613C2070534" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\area.m" - "TargetName" = "8:area.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB46B6FEE22A4C689CB244EF428600BF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nElements.m" - "TargetName" = "8:nElements.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CBB1884D0A0041D2BEB9CCE78E1E6C7E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\tutorial\\tut3.m" - "TargetName" = "8:tut3.m" - "Tag" = "8:" - "Folder" = "8:_0961E3795854450CB636397255DAA0B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC3803859B7F43B18EBE799C9C56933F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\periodic_cstr.m" - "TargetName" = "8:periodic_cstr.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC71BE47DD434D7CA2713A9087A88C14" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nSpecies.m" - "TargetName" = "8:nSpecies.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCE9C76D878344F4BF560E0136E1BCF3" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\graphite.cti" - "TargetName" = "8:graphite.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CCF420B39E734D4384125DFE122E8F6A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\ph.m" - "TargetName" = "8:ph.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD3DBDD9333C4033AE1B724282BBBFBF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\kineticsmethods.cpp" - "TargetName" = "8:kineticsmethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD777AD5FF1D420DB9723E6EEC27D521" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\rankine.m" - "TargetName" = "8:rankine.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CDBE3C6855AE4501803B9EDA7BFEA691" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\step.m" - "TargetName" = "8:step.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CE1EEE233F9F4C24BC5D26CA81C3A86F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop_net.m" - "TargetName" = "8:rop_net.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CEC3CD033FB94DFA8810C8142FED85B8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CECCCB3C56494F61A90C39EE70F3DFC9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialTime.m" - "TargetName" = "8:setInitialTime.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF28519F63C34802AB33F9342405FD3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\temperature.m" - "TargetName" = "8:temperature.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CF7BF165F4004E0DBBFF446A66A985DD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Solution\\soundspeed.m" - "TargetName" = "8:soundspeed.m" - "Tag" = "8:" - "Folder" = "8:_978580DBC0A748D790712BBA0B9F1CC8" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFA9B0302ABC430A9DBA2BC2132B6B73" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\nPhases.m" - "TargetName" = "8:nPhases.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFE3C277A2DF41018E63BE547F53452D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\density.m" - "TargetName" = "8:density.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CFE69F411CF84BE7ABCD4B895EF13C62" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setThermalResistance.m" - "TargetName" = "8:setThermalResistance.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D128F9F54CA949C09B3FA61A199B060F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setMassFractions.m" - "TargetName" = "8:setMassFractions.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D151A04263364A9B8005377D79AEC239" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setFixedTempProfile.m" - "TargetName" = "8:setFixedTempProfile.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D200B29D2F7E429AB771E6E92961E4C9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\ignite_hp.m" - "TargetName" = "8:ignite_hp.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D2176F7DD848403DBC973A3676B579CC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\advanceCoverages.m" - "TargetName" = "8:advanceCoverages.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D3284BDBAC7847909EAF138FCCDD512F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\mix2.py" - "TargetName" = "8:mix2.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D3EDAA4023284820AFC142093DE1AAE4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\Nitrogen.m" - "TargetName" = "8:Nitrogen.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D49889111E484F5090ED91A8EFF57DD0" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\mass.m" - "TargetName" = "8:mass.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D523D656E59A4F36A5799882AD52FE63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\setPressure.m" - "TargetName" = "8:setPressure.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6635B71ADB94BA0AC25AF10E53EAA56" - { - "SourcePath" = "8:..\\..\\..\\data\\inputs\\diamond.cti" - "TargetName" = "8:diamond.cti" - "Tag" = "8:" - "Folder" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D68C5368AA4548E2B31B6E44C6CF18CD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\elementIndex.m" - "TargetName" = "8:elementIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D6F8538106594E289818596061BE2EA6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\kinetics_hndl.m" - "TargetName" = "8:kinetics_hndl.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D75087C07C804BA994309398BC48603F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\addReactor.m" - "TargetName" = "8:addReactor.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA790596462048CFAECE85420D41D74F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setInitialVolume.m" - "TargetName" = "8:setInitialVolume.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DA9C782985C041509BE9C4A7CB68A4A8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\flames\\flame1.py" - "TargetName" = "8:flame1.py" - "Tag" = "8:" - "Folder" = "8:_ACBA4EEB967B49369C5B078365A8DAA6" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DACA05DBD1AA4AB7A411C4E500B3ADF8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\time.m" - "TargetName" = "8:time.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB5649A025C244CCAD4CFC7607B09A28" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_p.m" - "TargetName" = "8:stoich_p.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DB6C4271795545FA80082707D6121026" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpies_RT.m" - "TargetName" = "8:enthalpies_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBC0EC09DC684F47B0DC34BF7958EA66" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\isentropic.m" - "TargetName" = "8:isentropic.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBECDA96409E46C5A16D99CCCFC2E0DE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\intEnergy_mole.m" - "TargetName" = "8:intEnergy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC87F8DA14754002A1931C3C5DC89AD7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\advance.m" - "TargetName" = "8:advance.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DDCBFEDCC6144933941BE8B0EEBB9614" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\massFraction.m" - "TargetName" = "8:massFraction.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE2D53C1D99340B28D76F985871A1D04" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\AxiStagnFlow.m" - "TargetName" = "8:AxiStagnFlow.m" - "Tag" = "8:" - "Folder" = "8:_E30E67F5102146D39202747276B874EA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DE5BB9FAA411472B8901537165DFD827" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame1.m" - "TargetName" = "8:flame1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DEE4FC947E1543ECA3C5D0A1B5D82606" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isFlow.m" - "TargetName" = "8:isFlow.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF6E93BE4C85423FBB21EA3F783E0724" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DF7C83B26513481DA856DE8F3DAEF744" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E07080A8272044BDAD3242DFA62A3AD8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E0D128147681418496692C77F4B1BECB" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\Reactor.m" - "TargetName" = "8:Reactor.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E148F8C2F82A48D3A68E9E2C2CDAD846" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setTemperature.m" - "TargetName" = "8:setTemperature.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1570450F26743789099E1D664EA2930" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\fuel_cells\\sofc.cti" - "TargetName" = "8:sofc.cti" - "Tag" = "8:" - "Folder" = "8:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E18D9C95AB9747609535A99DD2D81155" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\catcomb.m" - "TargetName" = "8:catcomb.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1BBA2FA2D7A423185C6D4F2B1B50A47" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\reactor_ode.m" - "TargetName" = "8:reactor_ode.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E1FAFCCB6A854D248F54F164889FAB3F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setRefineCriteria.m" - "TargetName" = "8:setRefineCriteria.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2073E8B81F74741B1D1EA05FBDD0F79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\enthalpy_mole.m" - "TargetName" = "8:enthalpy_mole.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2B4EF18B90E479E8D1311CBCE13431E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\subsref.m" - "TargetName" = "8:subsref.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E31FFA0A95B14807BA4DA5176F48A0AE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\cp_mass.m" - "TargetName" = "8:cp_mass.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3B3CBF11A49408DA2A465DD552AE300" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\gibbs_RT.m" - "TargetName" = "8:gibbs_RT.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3D9492FF8AB48679A4B287D1CE30AD6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\reactors\\sensitivity1.py" - "TargetName" = "8:sensitivity1.py" - "Tag" = "8:" - "Folder" = "8:_782A3716E7024C07B7E1786A6FE5D350" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3DDA7E632494939B2882BD6741CFD9D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\air.m" - "TargetName" = "8:air.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3F58F53501F4CAA92527C64B08D9EBD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\private\\phasemethods.cpp" - "TargetName" = "8:phasemethods.cpp" - "Tag" = "8:" - "Folder" = "8:_69556754D0874D01BDA2D9D85F5828AB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4A964C652EF407CA753B3CA1219015B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\rop.m" - "TargetName" = "8:rop.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E54668B3A3FB42CF85A71689A715F19B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\Func.m" - "TargetName" = "8:Func.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E646FA76573448CAA4749B18614EF782" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\enableEnergy.m" - "TargetName" = "8:enableEnergy.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E716C1A77B764B6697138BC0DAE3E30C" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\equilibrate.m" - "TargetName" = "8:equilibrate.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E855F8CECB234B9291EC3600C31564E1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\setTolerances.m" - "TargetName" = "8:setTolerances.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E885D5C620AE4F7B824607C2AE4001AC" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\liquid_vapor\\critProperties.py" - "TargetName" = "8:critProperties.py" - "Tag" = "8:" - "Folder" = "8:_1616A26BEFEB4172AA40AC8ED7A8DC71" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8AFB1C8F7A342D5A03F305B3E0230C6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\setThermoMgr.m" - "TargetName" = "8:setThermoMgr.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8E0F24BF6014C208A93130FC1761DE6" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ReactorNet\\rtol.m" - "TargetName" = "8:rtol.m" - "Tag" = "8:" - "Folder" = "8:_121EEBBD5CFE412CACD796AD0EF6FACB" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8E78948E8974A1DB4C3D6E63AF58602" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Func\\rdivide.m" - "TargetName" = "8:rdivide.m" - "Tag" = "8:" - "Folder" = "8:_2069E985BE1F4CA4B39E0FF4C857A89D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8FE474C601D4386BBB0CA9599FF45BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\clear.m" - "TargetName" = "8:clear.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA0E1C57DE984B1A97AAC9D53D17FCC3" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\setCoverageEqs.m" - "TargetName" = "8:setCoverageEqs.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EA8E4A02700F48B3A6136CD0055D6CFD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Reactor\\massFractions.m" - "TargetName" = "8:massFractions.m" - "Tag" = "8:" - "Folder" = "8:_B73A689A75AA49FE9E67D8BC3DE5A587" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB1CB1838E7449B4B3F05EF3BA026DC8" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\plotting.py" - "TargetName" = "8:plotting.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EB89828AF09E40FFA26D353F1088C41B" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\python\\examples\\equilibrium\\multiphase_plasma.py" - "TargetName" = "8:multiphase_plasma.py" - "Tag" = "8:" - "Folder" = "8:_96B5AA517B204067BBA02150611C7875" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC2FDC1A744E4A1AA4793CB10F18D176" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critPressure.m" - "TargetName" = "8:critPressure.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC476B2533A1437FA80321BB3090234E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\isSurface.m" - "TargetName" = "8:isSurface.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC9C8B8C68CC4B6FBF2202B0935A6396" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\IdealGasMix.m" - "TargetName" = "8:IdealGasMix.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED90DA83729C417BBEAA629FC6CE1095" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\flame2.m" - "TargetName" = "8:flame2.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EDC27F3DB4874D0B80C408E935F92FD4" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\setFlatProfile.m" - "TargetName" = "8:setFlatProfile.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EF07839F9BC941BA9127CF08C90303D9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\prandtl1.m" - "TargetName" = "8:prandtl1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F15D7C13B4D94173A06FC05BFE08B4A7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\Mixture.m" - "TargetName" = "8:Mixture.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F1C2DC4D3F4541478F3128EC742FC67D" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\critDensity.m" - "TargetName" = "8:critDensity.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F325A9398503407384F1B46B1B65BE34" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\z.m" - "TargetName" = "8:z.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F3DEF34DC67542A1A5BE5F5EB0CF3D60" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\oneatm.m" - "TargetName" = "8:oneatm.m" - "Tag" = "8:" - "Folder" = "8:_EB2EB0FBE19246E88A9FC85FC50A0261" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F40D33926EF24D48B642AFADF0905175" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\transport1.m" - "TargetName" = "8:transport1.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F42D9F9BF66C46B3A5C9271FA5F371BA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\setExpansionRateCoeff.m" - "TargetName" = "8:setExpansionRateCoeff.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F4E64CA79CC5489294D5EB5751985163" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Kinetics\\stoich_r.m" - "TargetName" = "8:stoich_r.m" - "Tag" = "8:" - "Folder" = "8:_A330CA11C4BC435B95427DEA56FD503A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F6A52BC1EC8D44989142E90DB7AAD1D5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\setState.m" - "TargetName" = "8:setState.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F81B8400998B4DE3B59AFDEF3EF2FAC1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\domainIndex.m" - "TargetName" = "8:domainIndex.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8688399972140A18AEE3821A3076DA9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Wall\\Wall.m" - "TargetName" = "8:Wall.m" - "Tag" = "8:" - "Folder" = "8:_1F3BBA95030B48589E34A16DD6877FCD" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8CAB1B1AAE143949246B033BF6572AA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\meanMolecularWeight.m" - "TargetName" = "8:meanMolecularWeight.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F9E5B7A73F134E42B0EE70B7A917FFE1" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@ThermoPhase\\atomicMasses.m" - "TargetName" = "8:atomicMasses.m" - "Tag" = "8:" - "Folder" = "8:_5980613DA74C49ABB29CF7F4DE8AB8E7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FA43C5DB9C7546E7BB93ED688744AC52" - { - "SourcePath" = "8:..\\..\\..\\bin\\mixmaster.py" - "TargetName" = "8:mixmaster.py" - "Tag" = "8:" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBB083851DA2463CA4F1366F4904110A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Domain1D\\nPoints.m" - "TargetName" = "8:nPoints.m" - "Tag" = "8:" - "Folder" = "8:_45FC9BD502EB46D8A920CD02D93C3848" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FBCFD7B7B3D348EF9EAA5E0F686E303F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\1D\\@Stack\\writeStats.m" - "TargetName" = "8:writeStats.m" - "Tag" = "8:" - "Folder" = "8:_BC662E8F11194A61A8CAA2E8666C6C9F" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FEEC6D498C414DD8A73B96E8A0FB0AE5" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\examples\\surfreactor.m" - "TargetName" = "8:surfreactor.m" - "Tag" = "8:" - "Folder" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FFE5652D9F3B4AEBB4275BC8405C5A7F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\matlab\\cantera\\@Mixture\\speciesIndex.m" - "TargetName" = "8:speciesIndex.m" - "Tag" = "8:" - "Folder" = "8:_9B31506F5B4F443F832FD3FAB7762E64" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{1525181F-901A-416C-8A58-119130FE478E}:_1DE66EEE44224B05A700D4E2E93A0FB7" - { - "Name" = "8:#1914" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:SystemFolder" - "Folders" - { - } - } - "{3C67513D-01DD-4637-8A68-80971EB9504F}:_78A5B9A56B3C482CBD8EAE207FE469D5" - { - "DefaultLocation" = "8:[PersonalFolder][ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_15DF1B45927A43108F6FD8BF7AB29E7A" - { - "Name" = "8:bin" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_554600D4C1ED49AB9B3F8AA14A61A393" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A0F7AAB1D684CA7825C61ED7C1B1510" - { - "Name" = "8:tutorials" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9EE8F68C07DC4618A6A96B6CC2F6F4DD" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0961E3795854450CB636397255DAA0B7" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD44CF949673422BAA32D14476046641" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_6458A3FFB8B14932A9224D66420736A4" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_07358AF408BA4439926F97BCFC4B2D4F" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3C5C7E20E5A44A629E7E36FC49B00666" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:MATLABCHECKBOX = 1" - "Transitive" = "11:FALSE" - "Property" = "8:_D5D9F0F73161444D859B49722CB836BB" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_5443CF3FEC1C4919A396E1213F7EE741" - { - "Name" = "8:toolbox" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6F2DCE9A4AA04C11955BD805A807D800" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EB2EB0FBE19246E88A9FC85FC50A0261" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CD16B7D343A04A8A8A960BC7DF6EA2C3" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_121EEBBD5CFE412CACD796AD0EF6FACB" - { - "Name" = "8:@ReactorNet" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D25A4392A14645B6856AC0586A697940" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EF7FFF45863048E0BAC8024E5E97D77C" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6A482636047A4CC39874C6CAC1A5EF83" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_1F3BBA95030B48589E34A16DD6877FCD" - { - "Name" = "8:@Wall" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FFC5ABCD0DFE4C64AA3A3119E28770C2" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_978963BB80B74B24B2062E400EF7C9EC" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_14F46BDFA3354434A8AFFDE6EB01D8B2" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_2069E985BE1F4CA4B39E0FF4C857A89D" - { - "Name" = "8:@Func" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BE26BC62A5E847FEB871B25C40EFE75C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_208069FD964F475CAB363ACBD7A943C9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_707701DD38634631A3D20827FC5AFA22" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3D735E99070D4A9C816814209321A420" - { - "Name" = "8:@XML_Node" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1813C288DD40450E9298CE06190DC28A" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_57DD5A7770D14DCB9F09381FB3D030F7" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B241B483BFD649A7B4FA5ADD1E48CB30" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_5980613DA74C49ABB29CF7F4DE8AB8E7" - { - "Name" = "8:@ThermoPhase" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_FC38217CD0FB41838729EA5473177414" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_447495742352464D81706C05F55520E9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_115FA39FE4BB4AF98CC450D2C74A832C" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_69556754D0874D01BDA2D9D85F5828AB" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_57FC5782E53444E0BDBD66445370F485" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_978580DBC0A748D790712BBA0B9F1CC8" - { - "Name" = "8:@Solution" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5F863499C9764D489DC234E3476D8220" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_9B31506F5B4F443F832FD3FAB7762E64" - { - "Name" = "8:@Mixture" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5B0B4B544BB7475F8D95A7351BBB5D9B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_B97BD147CDAB4F2EB1C987ADD5A66D2D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D683DE5C1C054AF3B3A8A608F8739204" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A330CA11C4BC435B95427DEA56FD503A" - { - "Name" = "8:@Kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_38EC5A2AC0344396A365C0523516B935" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_56A5C77F96C948C3BE617599F99A4FBA" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8F8646357F9D4DFAAEEFB9D3E80E74AE" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A50BD9722A014DC391E5474262EFD7BC" - { - "Name" = "8:@Transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_9609451B0BA44ECCBD59EAC256BB8FF6" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_3FCDEC5F15154A079645D0817951A946" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0AE702ED16684776A58F4024099D5B16" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B73A689A75AA49FE9E67D8BC3DE5A587" - { - "Name" = "8:@Reactor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6491ED6A6FD4419EA3AEF94895C5862D" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D663477510C5436ABAF316F6D1E24D8B" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6B68DDB908574065B114EE838055D3A9" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E30E67F5102146D39202747276B874EA" - { - "Name" = "8:1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BEB5629A74864C33BFBE85775BDF46E9" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_45FC9BD502EB46D8A920CD02D93C3848" - { - "Name" = "8:@Domain1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C30A197B3595470A87A00E99059B4FC7" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_D75DB80C0EC34E90A1753028F279B4CE" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_68A85998C36844B181D4B77A3DDF4225" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_BC662E8F11194A61A8CAA2E8666C6C9F" - { - "Name" = "8:@Stack" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8AF1FDE1D7B24A50BF4A2F6F6E8F680B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_57614C30E82048A8B1CDA4FC95D7707F" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2E20167746334C26B769B9EBA08C08DD" - "Folders" - { - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F7AA24452AD2470EBD83A85CC5DB9C43" - { - "Name" = "8:@Interface" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D74B7A317604458496D56195B17245D4" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_653D9B351BDC4DD6B1AC64034FB114A1" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_12B0318E56C647B4B7CC27D5344E95EB" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F91A2400AD764EFB800A2F62CE34346C" - { - "Name" = "8:@FlowDevice" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BD955CAF1DF74ADD917984BE9557C60F" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_A0CD6A9C146B405D99355A87F6B7C47D" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1980519B8CAC42038A2C793D12949EB2" - "Folders" - { - } - } - } - } - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D97B8D9B527F4A4DAEE139297609ECEC" - { - "Name" = "8:demos" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_70CA7BFF862F455CABE89474DDC8C8FC" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_1E1FE4A0C7774B9D9C081E2DB4033D90" - { - "Name" = "8:Python" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6D0630638BBD4E29B840B324B4436948" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_0890042B73B444F889F091DA6D68E910" - { - "Name" = "8:surface_chemistry" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7FDCBB9A8592442FB42D4EAC7D3E53D2" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_1616A26BEFEB4172AA40AC8ED7A8DC71" - { - "Name" = "8:liquid_vapor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C2F7106B0C584CBFB1CD9EAE69B563FA" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_16393A44970E4B7FBB528A637EFFCF96" - { - "Name" = "8:transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_562525EA42174B63807DD27EA3AAF879" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_3A41B4ED54254F0BBA9CB3DDBA13165A" - { - "Name" = "8:kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F799EEA7F7224C0A855895023F8B3072" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_782A3716E7024C07B7E1786A6FE5D350" - { - "Name" = "8:reactors" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A52D5AC4A0DA4CF483D3E640BC1A5DA0" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_92296F507AEB4419BC7BA3118B2C6409" - { - "Name" = "8:gasdynamics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D902ADED94764BD5A6F420077708B493" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_94D018F7686D4C8690B65C153B0E887F" - { - "Name" = "8:misc" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1D24D49031EB459B974D7D13D5644D3B" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_96B5AA517B204067BBA02150611C7875" - { - "Name" = "8:equilibrium" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_8D8BB4AF59F64F88B994C19CC5EB233C" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_ACBA4EEB967B49369C5B078365A8DAA6" - { - "Name" = "8:flames" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_0A2A0C303015456C841FAB6074A18B6F" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D8BDF38C4D4F47B1A76B3BEB84FE84BE" - { - "Name" = "8:fuel_cells" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A46073D5774A4A7488FE7ED41BD60D59" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_33E4779AB0C24751BA2645F9F51A39D3" - { - "Name" = "8:MATLAB" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_45FAD6A5DFB047C2994B1D14F63B7703" - "Folders" - { - } - } - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_C18AD6B27F144D1EA3F43513268152DB" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_4BFAA71B92694D76A142F5C3ED00F20A" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_446477146DAB4A47A7AFC9902BF72A7E" - "Folders" - { - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_CB299B68C1E8487BA1E6C1DE65DE88C8" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_D46FB0DFF1A641E9BFF64D43063070E6" - { - "Name" = "8:#1910" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:CommonFilesFolder" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_DF884E96ECD3496ABA2742BCED88AAF5" - { - "Name" = "8:Cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D0580EB36EB74E3A86790E702522DD35" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_C549C449993E4410B91BDC9AF59B84C5" - { - "Name" = "8:data" - "AlwaysCreate" = "11:TRUE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_64E07C739FB4417C9F46987FB8046C1D" - "Folders" - { - } - } - } - } - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - "RequiresElevation" = "11:FALSE" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:Cantera" - "ProductCode" = "8:{6318C429-3F69-486A-9987-4D1EE1CA9328}" - "PackageCode" = "8:{0468CAED-E609-40B8-90FF-0A935A842648}" - "UpgradeCode" = "8:{86C96BD0-4EFB-4B99-AB55-8EFAF9B39170}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:TRUE" - "DetectNewerInstalledVersion" = "11:TRUE" - "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:1.5.4" - "Manufacturer" = "8:cantera" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:http://www.cantera.org" - "Title" = "8:Cantera" - "Subject" = "8:" - "ARPCONTACT" = "8:cantera" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - "TargetPlatform" = "3:0" - "PreBuildEvent" = "8:" - "PostBuildEvent" = "8:" - "RunPostBuildEvent" = "3:0" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_A15FA43938034D689F29E65C6E8955DA" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_5BDB66062CEB415CB4959F307FD0D508" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_F857B3D1747440C9A23BF58734C6212F" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_C66D7959D9B84EB48504D18245ED499E" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_11B1D446B20C4613916F260F22FB3817" - { - "Name" = "8:MATLAB Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_33E4779AB0C24751BA2645F9F51A39D3" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_6F6F7A9D0A9540169C31BFC498809033" - { - "Name" = "8:Cantera Folder" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_B3E018B74C474749A9DF614C49D87F87" - { - "Name" = "8:Cantera" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Folder" = "8:_CB299B68C1E8487BA1E6C1DE65DE88C8" - "WorkingFolder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_C74524C318E34B64BC7F9CF0751E1641" - { - "Name" = "8:data" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_C549C449993E4410B91BDC9AF59B84C5" - "Folder" = "8:_78A5B9A56B3C482CBD8EAE207FE469D5" - "WorkingFolder" = "8:_DF884E96ECD3496ABA2742BCED88AAF5" - "Icon" = "8:" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_D36F249B6C63494C8991429C3423DCBF" - { - "Name" = "8:Python Demos" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_1E1FE4A0C7774B9D9C081E2DB4033D90" - "Folder" = "8:_4BFAA71B92694D76A142F5C3ED00F20A" - "WorkingFolder" = "8:_D97B8D9B527F4A4DAEE139297609ECEC" - "Icon" = "8:" - "Feature" = "8:" - } - } - "UserInterface" - { - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_0ED84EDEFD4A4D698882BFE1F333E307" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_29BC7A20906B4BB591C50CBADAC4F8D7" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_08E53ECD734042D6A31CA37D0355381E" - { - "Sequence" = "3:200" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_35FDF6BB662A42B1A92CE5FD019F169A" - { - "Sequence" = "3:500" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_ABC3AFA2024F4562A020AE6343D51300" - { - "Sequence" = "3:300" - "DisplayName" = "8:License Agreement" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdLicenseDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "EulaText" - { - "Name" = "8:EulaText" - "DisplayName" = "8:#1008" - "Description" = "8:#1108" - "Type" = "3:6" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:2" - "Value" = "8:_6A93CB70A0AC47D28DF27073F49C6A76" - "UsePlugInResources" = "11:TRUE" - } - "Sunken" - { - "Name" = "8:Sunken" - "DisplayName" = "8:#1007" - "Description" = "8:#1107" - "Type" = "3:5" - "ContextData" = "8:4;True=4;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:4" - "DefaultValue" = "3:4" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_FA729FED55DB423CB796E6380C3BBDF8" - { - "Sequence" = "3:400" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "InstallAllUsersVisible" - { - "Name" = "8:InstallAllUsersVisible" - "DisplayName" = "8:#1059" - "Description" = "8:#1159" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_519E224B02474BA2B8DC4CD4EAE2ACF7" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2C3380451FE74068AF488EF4B6F73D94" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_6E2FF8B7EC244C94908291296E19523E" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8F2D5F455ECB44B3859CD8D454A71C60" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_61D8CE962B314E818663A48C0415867E" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_24A74643C5964C87A797E1A643FF0D0B" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_75F14606DECA4813841F459E15C791FC" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C1A3D09CAB0840249EFCEC6855096B18" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_CA30C9165C5C49C68248727A03AA7A6A" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C87AD3FA8C0A43F7A829C50FC5F1F1CD" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8D56619ED59C40F9B3C655569D7BE0E9" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_E8083BADF0444BC18403655940B69C5C" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7D3124C107AA4B8AB2828C5E89BCA5AA" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - } - "MergeModule" - { - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_3FC1A192ACD74D0099AA094225B7D7FB" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:policy_9_0_Microsoft_VC90_DebugCRT_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_EB2F210E1C9240598CC672B338EF7B07" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:microsoft_vc90_debugcrt_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "ProjectOutput" - { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_08587955063141779B605860D7FF04D3" - { - "SourcePath" = "8:..\\..\\..\\build\\bin\\i686-pc-win32\\ck2cti.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_15DF1B45927A43108F6FD8BF7AB29E7A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_091EA9AF61A04D75A8F7DAC0AE83AC3C" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\clib.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_1DE66EEE44224B05A700D4E2E93A0FB7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - } -} diff --git a/win32/vc9/SetupCanteraDebug/SetupCanteraDebug.vdproj b/win32/vc9/SetupCanteraDebug/SetupCanteraDebug.vdproj deleted file mode 100755 index 9e86ba742..000000000 --- a/win32/vc9/SetupCanteraDebug/SetupCanteraDebug.vdproj +++ /dev/null @@ -1,8417 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:800" -"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:SetupCanteraDebug" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_0043CEF4892147A79B11ADFA52A33062" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0163DC5912C443CE897596D5CBC8E647" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_021C20C556684F15B0BED1EC365111AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0356EF8C707E48C1AD5DDE466B7E0FF5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_03AD241CF2AE4CABAEA018EF343320D4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_045EF98593D14ACCACFA4AEFB806D557" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_084F901A74914242ABD6D1A50E5EB0A4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0B0782E62EEC4148B15E9076506E24A2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0DBC9A18428C43128C18EA7340D7E32C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0E1A45BD74554B0D953E436448EAAB17" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0F054011DB2B41D493EF7CCC058E850F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0FC8682BF0F04FC3B72982B6402BAD66" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1005BC9331DC443F9462A97FCB6B85F6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_104910B4D9E847BDBE0C876D7F5C0142" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_10DF05E3B44E4E97B1D0D2C00DBDC873" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14165AEF1F3243F1974C7793E4D77731" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1532D68C18F2463FB29B41A6A861221B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_156511AFC9BA4058B0D95BEF5584C8EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_15E8DEE197F64FDCBD7089A03BE23511" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1722F0DD789942CB9AFDF8592C5D98CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_174A53664A92479DB734572FD98CA90E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A3EBA50A1FB4E9595C00C512FCF7984" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A49A3A64A674823A82AB58C3053364F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B4DDA3351364504866B9CA3B495DECF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1B9BC314D6B546AFA1D23AC6D4664DBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1C39DF7550E443579BC9FA96ECFF3138" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D6A3E458DF54D4D95818285C6E6D471" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1E3BFD93A7844560AB22C5953C267D00" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F6E2FF130754D63B30AB1E9494A720F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_227533B7A3C94587A9E7F8973CB7B619" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_22E98C71ED3D404495FA2F6B8E17ED06" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2328D794CF294D2CA674649DB6D17476" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_234CBFB5D56140D8AA5B31A7E902D2AE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_24667FBD46ED4A6B9BE6FF067A18EB63" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2716D65547904F75A34FFF69998C9B8D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_287AD5E69F9F4F938F7652D96CCA4339" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2953DD43B79546A4A263A37110CF89CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_297EC670566C4A7A8B90A5B73A03C832" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_29E97C27E9414BBE8DC81082673C3327" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A2448C262A4488F9AED44D3B37CFEF5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A9E757A274545A28F0D13A66E72667D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2AC45927DF544FEEB8CD5E1AB03110EE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2D75C671D60540F495D438D332AFBE38" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2E87522FB07847CB98A980AC8229EBBF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3039446FA28D4019937D780396178A92" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_315A3535FC634498A07F5F8EC32F6DCB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_32150CD21ABB4D598AD8261BFA220B57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36A741C5BB6F4DAF9C92BE8E0ECC9E07" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37829FFE17524DAE91DD74D314365D40" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3786B9BDEAC44F21B08E7B2370CEA563" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_39E496E4A8AB4288902B70F42EC88DBE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3A79F35AF0324A03AFB0B49D60D105DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3D78E7C9130F4E1485FE013FE4432AD3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E6087F76EB04948A84F7E1E2CE9DD2A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3E81324694AD4FDBB074EDB3AA7E44EA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F590EA2FD854DCD866419A5DD71E295" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41106DEB1A91431BA7F3A095C3815785" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41D88BF518304047A6BB21068FD3B517" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4259632DC20942C1A4D327931FB52BEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4278650E97994590B40BC706B79390DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_43C6F84923094999A5AD20C46C730163" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_44477B341E9349009794058488B8DF61" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_47024511505D4CB089782A48F4D8EB69" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_471811FD415342599B778902DC554CD8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_479850EE099F41AC98ACFD46D0B310BE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_48C099169AAB432D8E2B2B67C885801B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_48C86E81CE304EF7913D9DD6312E6F41" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_49A5D64D38A5436C963D02FAD563434E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C4556147DDA476DB0A8282467B04F43" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4E93803416DB48B6915B6C698F92C665" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4F00360381F24011A1CE42DEB6FCAC94" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4F8DF0E5F39249C1816E9059D9E5BA54" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4FCF96C2D967477CA0ADBE3A20B4556F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5339FF33F5C34343837C4DEC217A3B89" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53E15DC7C5C845848A3487B1A51BB491" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5512E64EF45F4822B6C8F3FCCA70AC74" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_56B6B2C6BBA9474A9900831ED83255F4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_56D86C8CB0AD442B9E9D2E507B1880B7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_578092D0F7874304A6369B7FE1AA04DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_57E1E4F277D94BBFB40DA7FD74536C5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_59E336C3592041F2BCC96311BB23EF6B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A4DE1832CFC41ED9B1C418C81D6F048" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5BBA913179C44D98A9A13509729399E9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5CD6FF73941D456B9EFE8E5E3A506524" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5E07BCF1827F447DB3F19E67A5166369" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5EFD972DC08B4DB5B62160335CD2F02F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6105C68CABF64A1D85DA0E29293A4382" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_620C0CB1E6EA45119C1250C2D1776BE0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_666213A2C5734B6A9487EA322C7F8E8C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_66B9AED9DF134F549522A1D04E222433" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_66F1DBCAA1E54D159EB29418C7FA6D9E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_66F9484F0F414A63A40B879951A9AC93" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_67FE89D797EA48BBBF3F54CE62B65FA2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_68AC1C2334424F2F81393617CB4BE15D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_698E743E54D54B219FD7F5CAA2690286" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AA82759F8F24CFEBDB14C5282A9883E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AAEFBB05C9B44A491E68C51C238845B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AEBED54AC304A2692055D52E3360A1F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6AF141708BCE47CFBCAF87AB45854E73" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B378751D34949348EE4913E69C4AB5A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6BDA398CD62747BEBDBEC037D214E25F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6C6A7655C79F4BD8A3F45EAE68A7986A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6C6E964C7C22454484A9C0C9121BA4AA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D40D790AEF14E798B663914810F8CD1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6DAA8030ACAF45089867E5431C42F54B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_707EBC583C6F4989AAAD09FDC9741FB4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_711BEDC9790D4F74B9F7F0F6419D80BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7121407A0725468FA86D675E3237B403" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72FF1156DAD9443EBF57780DD602A5D4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_731BD40091814EA9B082A25623F44298" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7413F0FDB4984F69805F63745EFD03C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_74245B24DC224E8CB5BAE82F4189272A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7690C7560DEF4C399EB334AE44C55F86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7800DB0BCF4B4FD09C5517C70F88386B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_785F51483EC2457892E349D4178A8649" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7867C2114DD14559BF9B3D87E70E6D1C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_78DBF46C30664E5DBEBAC88654D8DE8E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7984E0CF1B9A4916A9BFF5691D9B30ED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79B2983C1BCF472FACFB5CC1282B6FB2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A5425686CD1478C8EDABA757E257C6D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A9EFDEF3CD34C0EB464A27FCAA5CBB6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B7E2C697AF84593A4E089AB9C76C474" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7D6A6899BE45438CB3E6CEEBE388FAB0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E5FA68AA68B496084066FCC2B7A1B7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F85C98019124A04A9A4F81C269651AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_844A8A4BE787469994FDFB22992BF077" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85B90BB3EE1C49C1AEB30086F78DDAB7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85D3FAAD264F494D9E44CABCF1B879D6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_86D19BA832D14DA0A3F6791D806AAB67" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_879884F48FE144CA919236CE4FA9FE19" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87D7537E9C7A46A58D3ACC690DF0BEAD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C6A4E3E4DA54A0C924B6E42CF66A68D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C82B39AA2704FD7952DED60F0D98BCD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CA8B4BF378D451CA0E7D52531F7AEA8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8DE4268A772342A6A560AB77D9E8CF79" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8F147F13C5894045A7C2A9E73FAA33A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8F2821FBD2F547A39E20885A416E1687" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_90D8DC0EEFBE4A2BAB5F4269B2C811FE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_91B392BC03EE456DB54353C4EA62FF86" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_91EB3AD25866499786C94A988E834A4C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_931941F76DAE4AB29EEEFCFB1DEA98FC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_933AB93386644CC6B9672F679E1EF61F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_939D562D0EDE4CF992AB133625D355AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_947A23E7265D4FBBB756951413B8624B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9561E62E5AC74692983F902E8AA5C383" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95823044A3064F3A8BB42E3EBC5834BF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95B982B92D0846BE8CAB35085000F7DC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95CD410C3CF748AAB0219A2548D7B19C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_960F4CFE97EC48439D786FBED5E134C8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9624E2926C8D4A9696E3B020356C708E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_97C23218EC3C4A82B9FA5934711FD9D8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_98B355E08F044766AB08C1568AD858AC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9BA4071392104C3184D14B3EEAC9702F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9BF2636CF0F94D7881241BDC56BFADF8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9BF2F77D08FA4C7CBE6519CFDC6D2A09" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C50874CA2ED4790B4239E52BD0BA654" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9CF11C75C6E04B898E56736723D03BB1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E6DB6F72473492E9981185A7086059B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A1FA009E794546C2BAD2325D8A633E7F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A4846BE14986425F88EB2DA9B6D41135" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A5479162EB884D018010FC3C67482E20" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A57746D04F774557A2F35AD0FE54DD92" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A77CE0870EA94F469D333053C06336C6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A7A4C6DA1AAB41A7B6C11884114D80DF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A8832EEBCA3D40CE9CA11093F068F33F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A9196A7B7F2248DA86F5618A311ACD04" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A986E66EA40F47A5BF55C7554BCD3DA5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A98DEA32678841B0A785D0A9AACA472F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB621B8B657F41569B9F2C3AAF227D1B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AB8C03F719364825AE001A412193261E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ABBBE619E4D74A82BBD8CF11C60C4D0E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AC0C7D1FAFFF44589AFD65227D55F92C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AF6B3247AE8145A88D4BE3B346BBB517" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AFC4C018CACD41ABB4351212D69E83A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B009A5F425B741BFA26112A535579907" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B061A7A71E4E486C800D35AEC4CDDD76" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B06E4B190451401B924FA0DD5D9D43FD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B1A80A1C9B264063A7292D7D1F40EF08" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B41E558930234686935A0FB8C196C542" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B45711A1D00C403E96C239B3B70F6FFE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5B2EA612ADB4D75940C203F81F1A5F7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B668F8AC5DA042379F856BFE64BF40DB" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B92D86D5C94E44FCB90F286C7A87281C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B99344BD74784EA7825DEA74E524C4CD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA71E1BDD8BB47FEA1F82824E777AF34" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BAA831AA40C947559AAC25E133D950C2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BAF3C1E6F804426DB2F6703E0B6AB497" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BB3D7DBA6EF74C12BFD535E468102F1D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BBA5C2452ED241238533E2AC5B8CA759" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BCB03C7E7610424D8A8A088416BA2C5A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BCE962E85FEC408EB0B0017763BF5072" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD785FB59D9A4AD7AB853665C1BA4EE9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDC2AF6837E84FE7AD2085778BCC92CA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDE33C9C48D84441AC9522276AEC6CCC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BEECD019506F46739F8BAF2C337931DA" - "OwnerKey" = "8:_DC49B93D011840AFA7E47FA1CAB0E9FF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BF3657BC865940A689F606D62DCF1AEC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C00BF72EE20A4B86B8BB3181653D38FC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C044457AD26840249EFD64E198064BAA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C0AE1BBDD6684221BE7B77EFEF8DCAED" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C227FD1F8E774F47BE063A4C4303F9EF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C40A327FD93340F3BADAE25F052A02A6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C62519C53F7747DBBB122749FB24F0DA" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C9DA4EB11D614E72B124B73E0F04F2BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CA98B6CB53D545EA9F3D1329820F03E8" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CADA2F6FA4184905B620A2DC19C9AFBD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB344E80DDEE4B309028170A73BA435B" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CB6068B490834B4C96790C3E23E261CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CD9B8D066BFF45AD917649D78C818DFF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D04360BD89624340B57B43E0F07CBDAD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0D0CC2C34724ED9A492A6DF4F801034" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D517006830964B5C873C93A0819CF738" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D65D8CB9E54B4FDFB32CD1E8D88AB2D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D713FAE3CCFF4EF790D5CF7F69349F57" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D9E4BD7399F94F01BF468C51006B491E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DAB6C26DDE104EF39BE0181BE797B96D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBAF96727DD84B18BFC044BB6663BB25" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBEC4E04B8564D1D90C8B17A8FCD5EAD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DBFEF10F4486420EA81DCA3393F67CBE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC03BFDF06A949098EA066372DF7CF9A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC43EA075832494F853635AB8D5280E2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC49B93D011840AFA7E47FA1CAB0E9FF" - "OwnerKey" = "8:_9E6DB6F72473492E9981185A7086059B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DC892F14E81145969BF596383AEE0812" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E03B622F705A47A3BF5FB43CDDCCA0E7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E06E444A05D64D47ADF6BA48D398D0C4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E0BA496D2AB942FC90C2F87E71764654" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E20BC48CFA9E407FACE1D093E9A166EC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E30E293211B047ECA10BCEE51930DDCD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E3F71BBFCDB04331954FE15D80947FFD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E4769BC1A4534FEB8A454FAC2641A64E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E48715EB23DF4536B5F49362E8D3B4C0" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E52E9EBFF4824CF8AC7489D9207E81CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E5CC71A7E4A64023A347115082540A1D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E6A6E5EE52FC4EA79935CFC9C9ABF185" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E6C565576048443C9A8D345FD38A01F2" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8A546F6598D43C0A1109DFECA35F8A1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED0FBFBA0F754E45BD9C4BED9ACDC546" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ED58A3160D3346078B613392AF5C27A9" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE3FE0A8EE20443EB4E2F215D92A602E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EF7901D259494DEE8179F0B090CE2973" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F16BD7EBBED049029808E755DA8DF194" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1C22CB173AE404FAF4A55048BD72274" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F464E8D2C6C04D4A9C9A23C6C60BB38F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F72AA94C55634629A4126A5655B3774F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F7C142CE092C41919B880C946FCF222A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F847FD5FB2854778A29B130A431AAD4A" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F98CD6AFD8C9481BA5A0D4D2EEA0C1CC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FACED9B9BE734A3BB5D0B083F42B8766" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FC71CA795A41401380540A762BBBBEF4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FD70F19C9C934B1581CA32168630EE59" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FD878CEB952B46659609C97782388185" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FDF3BFAEF6774436BDE9452BC1026FCE" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FE2A60C8EA6D4EB281D59D67DE8B0F1D" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FE418F86FCC04889A02ADEB745D63670" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FFFD8EA6EDCE4FA1AD026FDC36CBF0F5" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\CanteraDebug_Debug.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Net.Framework.3.5" - { - "Name" = "8:.NET Framework 3.5" - "ProductCode" = "8:Microsoft.Net.Framework.3.5" - } - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Windows.Installer.3.1" - { - "Name" = "8:Windows Installer 3.1" - "ProductCode" = "8:Microsoft.Windows.Installer.3.1" - } - } - } - } - "DebugMDD" - { - "DisplayName" = "8:DebugMDD" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:DebugMDD\\CanteraDebug_DebugMDD.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Net.Framework.3.5" - { - "Name" = "8:.NET Framework 3.5" - "ProductCode" = "8:Microsoft.Net.Framework.3.5" - } - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Windows.Installer.3.1" - { - "Name" = "8:Windows Installer 3.1" - "ProductCode" = "8:Microsoft.Windows.Installer.3.1" - } - } - } - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\CanteraDebug_Release.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Net.Framework.3.5" - { - "Name" = "8:.NET Framework 3.5" - "ProductCode" = "8:Microsoft.Net.Framework.3.5" - } - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Windows.Installer.3.1" - { - "Name" = "8:Windows Installer 3.1" - "ProductCode" = "8:Microsoft.Windows.Installer.3.1" - } - } - } - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "File" - { - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0043CEF4892147A79B11ADFA52A33062" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\speciesThermoTypes.h" - "TargetName" = "8:speciesThermoTypes.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0163DC5912C443CE897596D5CBC8E647" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MetalPhase.h" - "TargetName" = "8:MetalPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_021C20C556684F15B0BED1EC365111AA" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_species_thermo.h" - "TargetName" = "8:vcs_species_thermo.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0356EF8C707E48C1AD5DDE466B7E0FF5" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\FlowDevice.h" - "TargetName" = "8:FlowDevice.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_045EF98593D14ACCACFA4AEFB806D557" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\FalloffFactory.h" - "TargetName" = "8:FalloffFactory.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_084F901A74914242ABD6D1A50E5EB0A4" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\reaction_defs.h" - "TargetName" = "8:reaction_defs.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0B0782E62EEC4148B15E9076506E24A2" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MultiPhase.h" - "TargetName" = "8:MultiPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0DBC9A18428C43128C18EA7340D7E32C" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ReactionData.h" - "TargetName" = "8:ReactionData.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0E1A45BD74554B0D953E436448EAAB17" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Reaction.h" - "TargetName" = "8:Reaction.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0F054011DB2B41D493EF7CCC058E850F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ImplicitSurfChem.h" - "TargetName" = "8:ImplicitSurfChem.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0FC8682BF0F04FC3B72982B6402BAD66" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\mix_defs.h" - "TargetName" = "8:mix_defs.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1005BC9331DC443F9462A97FCB6B85F6" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ResidEval.h" - "TargetName" = "8:ResidEval.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_104910B4D9E847BDBE0C876D7F5C0142" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\StoichSubstance.h" - "TargetName" = "8:StoichSubstance.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_10DF05E3B44E4E97B1D0D2C00DBDC873" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ck2ct.h" - "TargetName" = "8:ck2ct.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_14165AEF1F3243F1974C7793E4D77731" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Wall.h" - "TargetName" = "8:Wall.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1532D68C18F2463FB29B41A6A861221B" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ThermoPhase.h" - "TargetName" = "8:ThermoPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_156511AFC9BA4058B0D95BEF5584C8EA" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kinetics.h" - "TargetName" = "8:kinetics.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_15E8DEE197F64FDCBD7089A03BE23511" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\IDA_Solver.h" - "TargetName" = "8:IDA_Solver.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1722F0DD789942CB9AFDF8592C5D98CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_A824386A3142457784E5CF6B5A34A5C2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_174A53664A92479DB734572FD98CA90E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Integrator.h" - "TargetName" = "8:Integrator.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A3EBA50A1FB4E9595C00C512FCF7984" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Nasa9PolyMultiTempRegion.h" - "TargetName" = "8:Nasa9PolyMultiTempRegion.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A49A3A64A674823A82AB58C3053364F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\IdealSolidSolnPhase.h" - "TargetName" = "8:IdealSolidSolnPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B4DDA3351364504866B9CA3B495DECF" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MultiPhaseEquil.h" - "TargetName" = "8:MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1B9BC314D6B546AFA1D23AC6D4664DBD" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SurfPhase.h" - "TargetName" = "8:SurfPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1C39DF7550E443579BC9FA96ECFF3138" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\onedim.h" - "TargetName" = "8:onedim.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1D6A3E458DF54D4D95818285C6E6D471" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PDSS_HKFT.h" - "TargetName" = "8:PDSS_HKFT.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1E3BFD93A7844560AB22C5953C267D00" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_internal.h" - "TargetName" = "8:vcs_internal.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1F6E2FF130754D63B30AB1E9494A720F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MultiTransport.h" - "TargetName" = "8:MultiTransport.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_227533B7A3C94587A9E7F8973CB7B619" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\IdealSolnGasVPSS.h" - "TargetName" = "8:IdealSolnGasVPSS.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_22E98C71ED3D404495FA2F6B8E17ED06" - { - "SourcePath" = "8:..\\demos\\flamespeed.vcproj" - "TargetName" = "8:flamespeed.vcproj" - "Tag" = "8:" - "Folder" = "8:_34AA3DB59F634462859C4F3682BD1B34" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2328D794CF294D2CA674649DB6D17476" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_FEC28EEE2004424CB46C8BC32A7FC9F2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_234CBFB5D56140D8AA5B31A7E902D2AE" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\Edge.h" - "TargetName" = "8:Edge.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_24667FBD46ED4A6B9BE6FF067A18EB63" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\flamespeed.cpp" - "TargetName" = "8:flamespeed.cpp" - "Tag" = "8:" - "Folder" = "8:_34AA3DB59F634462859C4F3682BD1B34" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2716D65547904F75A34FFF69998C9B8D" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SpeciesThermoMgr.h" - "TargetName" = "8:SpeciesThermoMgr.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_287AD5E69F9F4F938F7652D96CCA4339" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\global.h" - "TargetName" = "8:global.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2953DD43B79546A4A263A37110CF89CA" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\electrolytes.h" - "TargetName" = "8:electrolytes.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_297EC670566C4A7A8B90A5B73A03C832" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_MultiPhaseEquil.h" - "TargetName" = "8:vcs_MultiPhaseEquil.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_29E97C27E9414BBE8DC81082673C3327" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\FlowReactor.h" - "TargetName" = "8:FlowReactor.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2A2448C262A4488F9AED44D3B37CFEF5" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MixTransport.h" - "TargetName" = "8:MixTransport.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2AC45927DF544FEEB8CD5E1AB03110EE" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPSSMgr.h" - "TargetName" = "8:VPSSMgr.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2D75C671D60540F495D438D332AFBE38" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\RxnRates.h" - "TargetName" = "8:RxnRates.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2E87522FB07847CB98A980AC8229EBBF" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Func1.h" - "TargetName" = "8:Func1.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3039446FA28D4019937D780396178A92" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\KineticsFactory.h" - "TargetName" = "8:KineticsFactory.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_315A3535FC634498A07F5F8EC32F6DCB" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\NasaPoly2.h" - "TargetName" = "8:NasaPoly2.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_36A741C5BB6F4DAF9C92BE8E0ECC9E07" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\FuncEval.h" - "TargetName" = "8:FuncEval.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_37829FFE17524DAE91DD74D314365D40" - { - "SourcePath" = "8:..\\demos\\Rankine.vcproj" - "TargetName" = "8:Rankine.vcproj" - "Tag" = "8:" - "Folder" = "8:_FEC28EEE2004424CB46C8BC32A7FC9F2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3786B9BDEAC44F21B08E7B2370CEA563" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_prob.h" - "TargetName" = "8:vcs_prob.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_39E496E4A8AB4288902B70F42EC88DBE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_5ACECDF02820422C89CC9513CEDD2D73" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3A79F35AF0324A03AFB0B49D60D105DB" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\surface.h" - "TargetName" = "8:surface.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3D78E7C9130F4E1485FE013FE4432AD3" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\importKinetics.h" - "TargetName" = "8:importKinetics.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3E6087F76EB04948A84F7E1E2CE9DD2A" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\xml.h" - "TargetName" = "8:xml.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3E81324694AD4FDBB074EDB3AA7E44EA" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\LatticeSolidPhase.h" - "TargetName" = "8:LatticeSolidPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3F590EA2FD854DCD866419A5DD71E295" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\AdsorbateThermo.h" - "TargetName" = "8:AdsorbateThermo.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_41106DEB1A91431BA7F3A095C3815785" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_34AA3DB59F634462859C4F3682BD1B34" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_41D88BF518304047A6BB21068FD3B517" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPSSMgrFactory.h" - "TargetName" = "8:VPSSMgrFactory.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4259632DC20942C1A4D327931FB52BEC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\TransportParams.h" - "TargetName" = "8:TransportParams.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4278650E97994590B40BC706B79390DA" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\DASPK.h" - "TargetName" = "8:DASPK.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_43C6F84923094999A5AD20C46C730163" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\DustyGasTransport.h" - "TargetName" = "8:DustyGasTransport.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_44477B341E9349009794058488B8DF61" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\logger.h" - "TargetName" = "8:logger.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_47024511505D4CB089782A48F4D8EB69" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Array.h" - "TargetName" = "8:Array.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_471811FD415342599B778902DC554CD8" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ChemEquil.h" - "TargetName" = "8:ChemEquil.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_479850EE099F41AC98ACFD46D0B310BE" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Group.h" - "TargetName" = "8:Group.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_48C099169AAB432D8E2B2B67C885801B" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PDSS.h" - "TargetName" = "8:PDSS.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_48C86E81CE304EF7913D9DD6312E6F41" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\WaterSSTP.h" - "TargetName" = "8:WaterSSTP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_49A5D64D38A5436C963D02FAD563434E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\LogPrintCtrl.h" - "TargetName" = "8:LogPrintCtrl.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4C4556147DDA476DB0A8282467B04F43" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\zerodim.h" - "TargetName" = "8:zerodim.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4E93803416DB48B6915B6C698F92C665" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\RateCoeffMgr.h" - "TargetName" = "8:RateCoeffMgr.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4F00360381F24011A1CE42DEB6FCAC94" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\EdgeKinetics.h" - "TargetName" = "8:EdgeKinetics.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4F8DF0E5F39249C1816E9059D9E5BA54" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\FactoryBase.h" - "TargetName" = "8:FactoryBase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4FCF96C2D967477CA0ADBE3A20B4556F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\NASA_coeffs.cpp" - "TargetName" = "8:NASA_coeffs.cpp" - "Tag" = "8:" - "Folder" = "8:_A0999D1851DD417C8C753B223DFB29B9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5339FF33F5C34343837C4DEC217A3B89" - { - "SourcePath" = "8:..\\demos\\CanteraDemos.sln" - "TargetName" = "8:CanteraDemos.sln" - "Tag" = "8:" - "Folder" = "8:_EDBA80F1672545008CB6C058F06A21CA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53E15DC7C5C845848A3487B1A51BB491" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\reactionpaths.h" - "TargetName" = "8:reactionpaths.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5512E64EF45F4822B6C8F3FCCA70AC74" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\sort.h" - "TargetName" = "8:sort.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_56B6B2C6BBA9474A9900831ED83255F4" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\importPhase.h" - "TargetName" = "8:importPhase.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_56D86C8CB0AD442B9E9D2E507B1880B7" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\equilibrium.h" - "TargetName" = "8:equilibrium.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_578092D0F7874304A6369B7FE1AA04DB" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\IdealMolalSoln.h" - "TargetName" = "8:IdealMolalSoln.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_57E1E4F277D94BBFB40DA7FD74536C5E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\combustor.cpp" - "TargetName" = "8:combustor.cpp" - "Tag" = "8:" - "Folder" = "8:_5ACECDF02820422C89CC9513CEDD2D73" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59E336C3592041F2BCC96311BB23EF6B" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\TransportFactory.h" - "TargetName" = "8:TransportFactory.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5A4DE1832CFC41ED9B1C418C81D6F048" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\FtnTransport.h" - "TargetName" = "8:FtnTransport.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5BBA913179C44D98A9A13509729399E9" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\DenseMatrix.h" - "TargetName" = "8:DenseMatrix.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5CD6FF73941D456B9EFE8E5E3A506524" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\WaterProps.h" - "TargetName" = "8:WaterProps.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5E07BCF1827F447DB3F19E67A5166369" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\spectra.h" - "TargetName" = "8:spectra.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5EFD972DC08B4DB5B62160335CD2F02F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\plots.h" - "TargetName" = "8:plots.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6105C68CABF64A1D85DA0E29293A4382" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Kinetics.h" - "TargetName" = "8:Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_620C0CB1E6EA45119C1250C2D1776BE0" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\thermo.h" - "TargetName" = "8:thermo.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_666213A2C5734B6A9487EA322C7F8E8C" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Mu0Poly.h" - "TargetName" = "8:Mu0Poly.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_66B9AED9DF134F549522A1D04E222433" - { - "SourcePath" = "8:..\\demos\\ReadMe.txt" - "TargetName" = "8:ReadMe.txt" - "Tag" = "8:" - "Folder" = "8:_EDBA80F1672545008CB6C058F06A21CA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_66F1DBCAA1E54D159EB29418C7FA6D9E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_A824386A3142457784E5CF6B5A34A5C2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_66F9484F0F414A63A40B879951A9AC93" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\CKParser.h" - "TargetName" = "8:CKParser.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_67FE89D797EA48BBBF3F54CE62B65FA2" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\GasKinetics.h" - "TargetName" = "8:GasKinetics.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_68AC1C2334424F2F81393617CB4BE15D" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\numerics.h" - "TargetName" = "8:numerics.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_698E743E54D54B219FD7F5CAA2690286" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\NasaPoly1.h" - "TargetName" = "8:NasaPoly1.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AA82759F8F24CFEBDB14C5282A9883E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_DoubleStarStar.h" - "TargetName" = "8:vcs_DoubleStarStar.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AEBED54AC304A2692055D52E3360A1F" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_5ACECDF02820422C89CC9513CEDD2D73" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6AF141708BCE47CFBCAF87AB45854E73" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\stringUtils.h" - "TargetName" = "8:stringUtils.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6BDA398CD62747BEBDBEC037D214E25F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPSSMgr_types.h" - "TargetName" = "8:VPSSMgr_types.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6C6A7655C79F4BD8A3F45EAE68A7986A" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ckr_utils.h" - "TargetName" = "8:ckr_utils.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6C6E964C7C22454484A9C0C9121BA4AA" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ReactionStoichMgr.h" - "TargetName" = "8:ReactionStoichMgr.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6D40D790AEF14E798B663914810F8CD1" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ReactionPath.h" - "TargetName" = "8:ReactionPath.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6DAA8030ACAF45089867E5431C42F54B" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ImplicitChem.h" - "TargetName" = "8:ImplicitChem.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_707EBC583C6F4989AAAD09FDC9741FB4" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ConstCpPoly.h" - "TargetName" = "8:ConstCpPoly.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_711BEDC9790D4F74B9F7F0F6419D80BF" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SpeciesThermoFactory.h" - "TargetName" = "8:SpeciesThermoFactory.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7121407A0725468FA86D675E3237B403" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\lapack.h" - "TargetName" = "8:lapack.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_731BD40091814EA9B082A25623F44298" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\State.h" - "TargetName" = "8:State.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7413F0FDB4984F69805F63745EFD03C6" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ReactorFactory.h" - "TargetName" = "8:ReactorFactory.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_74245B24DC224E8CB5BAE82F4189272A" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\polyfit.h" - "TargetName" = "8:polyfit.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7800DB0BCF4B4FD09C5517C70F88386B" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\CKReader.h" - "TargetName" = "8:CKReader.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_785F51483EC2457892E349D4178A8649" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_IntStarStar.h" - "TargetName" = "8:vcs_IntStarStar.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7867C2114DD14559BF9B3D87E70E6D1C" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Constituents.h" - "TargetName" = "8:Constituents.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78DBF46C30664E5DBEBAC88654D8DE8E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\integrators.h" - "TargetName" = "8:integrators.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7984E0CF1B9A4916A9BFF5691D9B30ED" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PrintCtrl.h" - "TargetName" = "8:PrintCtrl.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_79B2983C1BCF472FACFB5CC1282B6FB2" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ctexceptions.h" - "TargetName" = "8:ctexceptions.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A9EFDEF3CD34C0EB464A27FCAA5CBB6" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\NonlinearSolver.h" - "TargetName" = "8:NonlinearSolver.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7B7E2C697AF84593A4E089AB9C76C474" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\Interface.h" - "TargetName" = "8:Interface.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7D6A6899BE45438CB3E6CEEBE388FAB0" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\clockWC.h" - "TargetName" = "8:clockWC.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E5FA68AA68B496084066FCC2B7A1B7F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\IncompressibleSolid.h" - "TargetName" = "8:IncompressibleSolid.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7F85C98019124A04A9A4F81C269651AC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\NasaThermo.h" - "TargetName" = "8:NasaThermo.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_844A8A4BE787469994FDFB22992BF077" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\DAE_Solver.h" - "TargetName" = "8:DAE_Solver.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85B90BB3EE1C49C1AEB30086F78DDAB7" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\flamespeed_blessed_0.csv" - "TargetName" = "8:flamespeed_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_A824386A3142457784E5CF6B5A34A5C2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_85D3FAAD264F494D9E44CABCF1B879D6" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\GibbsExcessVPSSTP.h" - "TargetName" = "8:GibbsExcessVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_86D19BA832D14DA0A3F6791D806AAB67" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PDSS_Water.h" - "TargetName" = "8:PDSS_Water.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_879884F48FE144CA919236CE4FA9FE19" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\LatticePhase.h" - "TargetName" = "8:LatticePhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_87D7537E9C7A46A58D3ACC690DF0BEAD" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\WaterPropsIAPWSphi.h" - "TargetName" = "8:WaterPropsIAPWSphi.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C6A4E3E4DA54A0C924B6E42CF66A68D" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\BandMatrix.h" - "TargetName" = "8:BandMatrix.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8C82B39AA2704FD7952DED60F0D98BCD" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_Exception.h" - "TargetName" = "8:vcs_Exception.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8CA8B4BF378D451CA0E7D52531F7AEA8" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\mdp_allo.h" - "TargetName" = "8:mdp_allo.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8DE4268A772342A6A560AB77D9E8CF79" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_A0999D1851DD417C8C753B223DFB29B9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8F147F13C5894045A7C2A9E73FAA33A9" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_FEC28EEE2004424CB46C8BC32A7FC9F2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8F2821FBD2F547A39E20885A416E1687" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Phase.h" - "TargetName" = "8:Phase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_90D8DC0EEFBE4A2BAB5F4269B2C811FE" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MMCollisionInt.h" - "TargetName" = "8:MMCollisionInt.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_91B392BC03EE456DB54353C4EA62FF86" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\winconfig.h" - "TargetName" = "8:winconfig.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_91EB3AD25866499786C94A988E834A4C" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\electrolyteThermo.h" - "TargetName" = "8:electrolyteThermo.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_931941F76DAE4AB29EEEFCFB1DEA98FC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPSSMgr_Water_ConstVol.h" - "TargetName" = "8:VPSSMgr_Water_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_939D562D0EDE4CF992AB133625D355AF" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\InterfaceKinetics.h" - "TargetName" = "8:InterfaceKinetics.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_947A23E7265D4FBBB756951413B8624B" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SpeciesThermo.h" - "TargetName" = "8:SpeciesThermo.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9561E62E5AC74692983F902E8AA5C383" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\DebyeHuckel.h" - "TargetName" = "8:DebyeHuckel.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_95823044A3064F3A8BB42E3EBC5834BF" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\L_matrix.h" - "TargetName" = "8:L_matrix.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_95B982B92D0846BE8CAB35085000F7DC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SingleSpeciesTP.h" - "TargetName" = "8:SingleSpeciesTP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_95CD410C3CF748AAB0219A2548D7B19C" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPSSMgr_Water_HKFT.h" - "TargetName" = "8:VPSSMgr_Water_HKFT.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_960F4CFE97EC48439D786FBED5E134C8" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPSSMgr_ConstVol.h" - "TargetName" = "8:VPSSMgr_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9624E2926C8D4A9696E3B020356C708E" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\flamespeed_blessed_0.csv" - "TargetName" = "8:flamespeed_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_34AA3DB59F634462859C4F3682BD1B34" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_97C23218EC3C4A82B9FA5934711FD9D8" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\HMWSoln.h" - "TargetName" = "8:HMWSoln.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_98B355E08F044766AB08C1568AD858AC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\GRI_30_Kinetics.h" - "TargetName" = "8:GRI_30_Kinetics.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9BA4071392104C3184D14B3EEAC9702F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ctml.h" - "TargetName" = "8:ctml.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9BF2636CF0F94D7881241BDC56BFADF8" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SemiconductorPhase.h" - "TargetName" = "8:SemiconductorPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9BF2F77D08FA4C7CBE6519CFDC6D2A09" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\WaterPropsIAPWS.h" - "TargetName" = "8:WaterPropsIAPWS.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9C50874CA2ED4790B4239E52BD0BA654" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Reactor.h" - "TargetName" = "8:Reactor.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A1FA009E794546C2BAD2325D8A633E7F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PID_Controller.h" - "TargetName" = "8:PID_Controller.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A4846BE14986425F88EB2DA9B6D41135" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\flowControllers.h" - "TargetName" = "8:flowControllers.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A5479162EB884D018010FC3C67482E20" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\thermoFunctions.h" - "TargetName" = "8:thermoFunctions.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A57746D04F774557A2F35AD0FE54DD92" - { - "SourcePath" = "8:..\\demos\\NASA_coeffs.vcproj" - "TargetName" = "8:NASA_coeffs.vcproj" - "Tag" = "8:" - "Folder" = "8:_A0999D1851DD417C8C753B223DFB29B9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A77CE0870EA94F469D333053C06336C6" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\AqueousKinetics.h" - "TargetName" = "8:AqueousKinetics.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A7A4C6DA1AAB41A7B6C11884114D80DF" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SpeciesThermoInterpType.h" - "TargetName" = "8:SpeciesThermoInterpType.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A8832EEBCA3D40CE9CA11093F068F33F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\GeneralSpeciesThermo.h" - "TargetName" = "8:GeneralSpeciesThermo.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A9196A7B7F2248DA86F5618A311ACD04" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\output_0_blessed.txt" - "TargetName" = "8:output_0_blessed.txt" - "Tag" = "8:" - "Folder" = "8:_34AA3DB59F634462859C4F3682BD1B34" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A986E66EA40F47A5BF55C7554BCD3DA5" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ArrayViewer.h" - "TargetName" = "8:ArrayViewer.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB621B8B657F41569B9F2C3AAF227D1B" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPStandardStateTP.h" - "TargetName" = "8:VPStandardStateTP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB8C03F719364825AE001A412193261E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\utilities.h" - "TargetName" = "8:utilities.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ABBBE619E4D74A82BBD8CF11C60C4D0E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Elements.h" - "TargetName" = "8:Elements.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AC0C7D1FAFFF44589AFD65227D55F92C" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\GRI30.h" - "TargetName" = "8:GRI30.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AF6B3247AE8145A88D4BE3B346BBB517" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\funcs.h" - "TargetName" = "8:funcs.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AFC4C018CACD41ABB4351212D69E83A9" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vec_functions.h" - "TargetName" = "8:vec_functions.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B009A5F425B741BFA26112A535579907" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\FalloffMgr.h" - "TargetName" = "8:FalloffMgr.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B061A7A71E4E486C800D35AEC4CDDD76" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_solve.h" - "TargetName" = "8:vcs_solve.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B06E4B190451401B924FA0DD5D9D43FD" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\IdealGasPhase.h" - "TargetName" = "8:IdealGasPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B1A80A1C9B264063A7292D7D1F40EF08" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\StoichManager.h" - "TargetName" = "8:StoichManager.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B41E558930234686935A0FB8C196C542" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ThermoFactory.h" - "TargetName" = "8:ThermoFactory.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B45711A1D00C403E96C239B3B70F6FFE" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\CVodesIntegrator.h" - "TargetName" = "8:CVodesIntegrator.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B5B2EA612ADB4D75940C203F81F1A5F7" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ResidJacEval.h" - "TargetName" = "8:ResidJacEval.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B668F8AC5DA042379F856BFE64BF40DB" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PDSS_ConstVol.h" - "TargetName" = "8:PDSS_ConstVol.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B92D86D5C94E44FCB90F286C7A87281C" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ShomateThermo.h" - "TargetName" = "8:ShomateThermo.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B99344BD74784EA7825DEA74E524C4CD" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\XML_Writer.h" - "TargetName" = "8:XML_Writer.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BA71E1BDD8BB47FEA1F82824E777AF34" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ctlapack.h" - "TargetName" = "8:ctlapack.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BAF3C1E6F804426DB2F6703E0B6AB497" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ConstPressureReactor.h" - "TargetName" = "8:ConstPressureReactor.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BB3D7DBA6EF74C12BFD535E468102F1D" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\writelog.h" - "TargetName" = "8:writelog.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BBA5C2452ED241238533E2AC5B8CA759" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\Makefile.win" - "TargetName" = "8:Makefile.win" - "Tag" = "8:" - "Folder" = "8:_34AA3DB59F634462859C4F3682BD1B34" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BCB03C7E7610424D8A8A088416BA2C5A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_FEC28EEE2004424CB46C8BC32A7FC9F2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BCE962E85FEC408EB0B0017763BF5072" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MineralEQ3.h" - "TargetName" = "8:MineralEQ3.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BD785FB59D9A4AD7AB853665C1BA4EE9" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\Metal.h" - "TargetName" = "8:Metal.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDC2AF6837E84FE7AD2085778BCC92CA" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\flamespeed\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_A824386A3142457784E5CF6B5A34A5C2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDE33C9C48D84441AC9522276AEC6CCC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Constituent.h" - "TargetName" = "8:Constituent.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BF3657BC865940A689F606D62DCF1AEC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_VolPhase.h" - "TargetName" = "8:vcs_VolPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C00BF72EE20A4B86B8BB3181653D38FC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_SpeciesProperties.h" - "TargetName" = "8:vcs_SpeciesProperties.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C044457AD26840249EFD64E198064BAA" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\AqueousTransport.h" - "TargetName" = "8:AqueousTransport.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C0AE1BBDD6684221BE7B77EFEF8DCAED" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\radiation.h" - "TargetName" = "8:radiation.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C227FD1F8E774F47BE063A4C4303F9EF" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\config.h" - "TargetName" = "8:config.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C62519C53F7747DBBB122749FB24F0DA" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Reservoir.h" - "TargetName" = "8:Reservoir.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CA98B6CB53D545EA9F3D1329820F03E8" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\EdgePhase.h" - "TargetName" = "8:EdgePhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CADA2F6FA4184905B620A2DC19C9AFBD" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ct_defs.h" - "TargetName" = "8:ct_defs.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB344E80DDEE4B309028170A73BA435B" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ReactorBase.h" - "TargetName" = "8:ReactorBase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CB6068B490834B4C96790C3E23E261CC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\units.h" - "TargetName" = "8:units.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD9B8D066BFF45AD917649D78C818DFF" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\NASA_coeffs.cpp" - "TargetName" = "8:NASA_coeffs.cpp" - "Tag" = "8:" - "Folder" = "8:_FEC28EEE2004424CB46C8BC32A7FC9F2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D04360BD89624340B57B43E0F07CBDAD" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\StoichSubstanceSSTP.h" - "TargetName" = "8:StoichSubstanceSSTP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D0D0CC2C34724ED9A492A6DF4F801034" - { - "SourcePath" = "8:..\\..\\..\\tools\\templates\\cxx\\demo.cpp" - "TargetName" = "8:demo.cpp" - "Tag" = "8:" - "Folder" = "8:_EDBA80F1672545008CB6C058F06A21CA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D517006830964B5C873C93A0819CF738" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SimpleThermo.h" - "TargetName" = "8:SimpleThermo.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D65D8CB9E54B4FDFB32CD1E8D88AB2D3" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Element.h" - "TargetName" = "8:Element.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D713FAE3CCFF4EF790D5CF7F69349F57" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\vcs_defs.h" - "TargetName" = "8:vcs_defs.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D9E4BD7399F94F01BF468C51006B491E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\transport.h" - "TargetName" = "8:transport.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DAB6C26DDE104EF39BE0181BE797B96D" - { - "SourcePath" = "8:..\\demos\\demo.vcproj" - "TargetName" = "8:demo.vcproj" - "Tag" = "8:" - "Folder" = "8:_EDBA80F1672545008CB6C058F06A21CA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBAF96727DD84B18BFC044BB6663BB25" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\PureFluid.h" - "TargetName" = "8:PureFluid.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBEC4E04B8564D1D90C8B17A8FCD5EAD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\combustor_blessed_0.csv" - "TargetName" = "8:combustor_blessed_0.csv" - "Tag" = "8:" - "Folder" = "8:_5ACECDF02820422C89CC9513CEDD2D73" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DBFEF10F4486420EA81DCA3393F67CBE" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\combustor\\Makefile.win" - "TargetName" = "8:Makefile.win" - "Tag" = "8:" - "Folder" = "8:_5ACECDF02820422C89CC9513CEDD2D73" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC03BFDF06A949098EA066372DF7CF9A" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_A0999D1851DD417C8C753B223DFB29B9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DC43EA075832494F853635AB8D5280E2" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SolidTransport.h" - "TargetName" = "8:SolidTransport.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E03B622F705A47A3BF5FB43CDDCCA0E7" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Crystal.h" - "TargetName" = "8:Crystal.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E06E444A05D64D47ADF6BA48D398D0C4" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\Cantera.h" - "TargetName" = "8:Cantera.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E0BA496D2AB942FC90C2F87E71764654" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PropertyCalculator.h" - "TargetName" = "8:PropertyCalculator.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E20BC48CFA9E407FACE1D093E9A166EC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPSSMgr_General.h" - "TargetName" = "8:VPSSMgr_General.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E30E293211B047ECA10BCEE51930DDCD" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\NASA_coeffs\\runtest" - "TargetName" = "8:runtest" - "Tag" = "8:" - "Folder" = "8:_A0999D1851DD417C8C753B223DFB29B9" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E3F71BBFCDB04331954FE15D80947FFD" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\equil.h" - "TargetName" = "8:equil.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E4769BC1A4534FEB8A454FAC2641A64E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\solveSP.h" - "TargetName" = "8:solveSP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E52E9EBFF4824CF8AC7489D9207E81CC" - { - "SourcePath" = "8:..\\demos\\kinetics1.vcproj" - "TargetName" = "8:kinetics1.vcproj" - "Tag" = "8:" - "Folder" = "8:_A824386A3142457784E5CF6B5A34A5C2" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E5CC71A7E4A64023A347115082540A1D" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\LiquidTransport.h" - "TargetName" = "8:LiquidTransport.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E6A6E5EE52FC4EA79935CFC9C9ABF185" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Nasa9Poly1.h" - "TargetName" = "8:Nasa9Poly1.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E6C565576048443C9A8D345FD38A01F2" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\cxx\\demos\\Makefile.win" - "TargetName" = "8:Makefile" - "Tag" = "8:" - "Folder" = "8:_EDBA80F1672545008CB6C058F06A21CA" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8A546F6598D43C0A1109DFECA35F8A1" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\TransportBase.h" - "TargetName" = "8:TransportBase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED0FBFBA0F754E45BD9C4BED9ACDC546" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MargulesVPSSTP.h" - "TargetName" = "8:MargulesVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_ED58A3160D3346078B613392AF5C27A9" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\RxnSpecies.h" - "TargetName" = "8:RxnSpecies.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EE3FE0A8EE20443EB4E2F215D92A602E" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\SquareMatrix.h" - "TargetName" = "8:SquareMatrix.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EF7901D259494DEE8179F0B090CE2973" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PureFluidPhase.h" - "TargetName" = "8:PureFluidPhase.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F16BD7EBBED049029808E755DA8DF194" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\IdealGasMix.h" - "TargetName" = "8:IdealGasMix.h" - "Tag" = "8:" - "Folder" = "8:_01600D0936434365A0C7280645FD3331" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F1C22CB173AE404FAF4A55048BD72274" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\config.h" - "TargetName" = "8:config.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F464E8D2C6C04D4A9C9A23C6C60BB38F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ReactorNet.h" - "TargetName" = "8:ReactorNet.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F72AA94C55634629A4126A5655B3774F" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PseudoBinaryVPSSTP.h" - "TargetName" = "8:PseudoBinaryVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F7C142CE092C41919B880C946FCF222A" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ckr_defs.h" - "TargetName" = "8:ckr_defs.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F847FD5FB2854778A29B130A431AAD4A" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\ThirdBodyMgr.h" - "TargetName" = "8:ThirdBodyMgr.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F98CD6AFD8C9481BA5A0D4D2EEA0C1CC" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\PDSS_IdealGas.h" - "TargetName" = "8:PDSS_IdealGas.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FACED9B9BE734A3BB5D0B083F42B8766" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\LiquidTransportParams.h" - "TargetName" = "8:LiquidTransportParams.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FC71CA795A41401380540A762BBBBEF4" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Species.h" - "TargetName" = "8:Species.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FD70F19C9C934B1581CA32168630EE59" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\VPSSMgr_IdealGas.h" - "TargetName" = "8:VPSSMgr_IdealGas.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FD878CEB952B46659609C97782388185" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\Enhanced3BConc.h" - "TargetName" = "8:Enhanced3BConc.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FDF3BFAEF6774436BDE9452BC1026FCE" - { - "SourcePath" = "8:..\\demos\\combustor.vcproj" - "TargetName" = "8:combustor.vcproj" - "Tag" = "8:" - "Folder" = "8:_5ACECDF02820422C89CC9513CEDD2D73" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FE418F86FCC04889A02ADEB745D63670" - { - "SourcePath" = "8:..\\..\\..\\Cantera\\src\\numerics\\CVodeInt.h" - "TargetName" = "8:CVodeInt.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FFFD8EA6EDCE4FA1AD026FDC36CBF0F5" - { - "SourcePath" = "8:..\\..\\..\\build\\include\\cantera\\kernel\\MolalityVPSSTP.h" - "TargetName" = "8:MolalityVPSSTP.h" - "Tag" = "8:" - "Folder" = "8:_25D6250BD5C54EAA96A425D305D996FC" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{3C67513D-01DD-4637-8A68-80971EB9504F}:_11DD5E629F5E4084B9B61A277885D234" - { - "DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_13B3EB77E6AC45F7A1AC630A80D048BA" - { - "Name" = "8:tutorials" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_920497DD7C6F4C109C4CC733A029C196" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_18574D8A52DC48E194C4A2C741119B68" - { - "Name" = "8:templates" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A8AD3AF83D4646D19A8CF9EB6297EBDC" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_39366AF5E69E41ECBA0D0ED042C779B7" - { - "Name" = "8:bin" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5F346318C5414913B5D6F6F5AA23CA4C" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_63D74B836F3147E6B101C46DDDC5E86E" - { - "Name" = "8:matlab" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_512FD63DEB6440C08B2A2A9C4AB4BC90" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_BFFBE5301970442AB14B87865B1772F0" - { - "Name" = "8:toolbox" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_AD33A28ED7D0459394D4CF7C132683C7" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_6BB681DE941248B8B7118A57B6D07F85" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_29BA44467CBA41D78CE58A6FCB8DD92D" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_075C393DBD7B41FA918F7BEB19E5D85A" - { - "Name" = "8:@Func" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D27EB0BBAF4C4A5581B80C6B329BC5C3" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_4C043D76D93B4788BD0D2A022626D71F" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5A1D98E87B8D463EB4E3DF91EC36C79A" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_342AFD57D7144FC2ADA15EF28C4BEAF3" - { - "Name" = "8:@Reactor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2DAB776414D842ADB9BC9089E2DD492D" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_6DF4AD3E2DF348858B969C7B1705DED9" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6FF3AA4C0FBA4AD48E45B899B31FBCDD" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_39DFE81298BC470AAA72EB1183EC11A5" - { - "Name" = "8:@Kinetics" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B82AA5EEF9924C38B7036F4FDB770C8D" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_3DF4C7EBCCB84158BA974CE32143C65F" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_EB54003BD6E5428C82E6435B53281410" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_5EFA888A12F94269A716F270346A42BC" - { - "Name" = "8:@Solution" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6BDC2823BF3B4FE28FC7C2E6FF64C101" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_7CAA95DCD3B641E8A8C06B555FB71012" - { - "Name" = "8:@ThermoPhase" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B17CEADB9ACB4832ACB47E58A26B20AD" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_667E402CF895414990510B6DB98675D3" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_56505F90AA4E4091BF1E7A4648045383" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_7D5ABC73B9844AF78DD1FBCB453F34B1" - { - "Name" = "8:@Interface" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_993FDDD0A86B4C81A89708CF6C725F77" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_AD962D161AD74060A6D010F5CC298AC5" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_44B68FE49F89472C99342F4015182CF4" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_7E33FC2295664CD0BDC07A080B091CA1" - { - "Name" = "8:1D" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_659DF71551E540AE93961468CB216AB4" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_ADF150DBB9EE4F0DABD75177122F1797" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_E0B152385AD84B308DF501F30A4EA14E" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_991EFAEE5F6E4940BCA4EC00332357E0" - { - "Name" = "8:@Wall" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_079FCB3FAE0F45EC81A5D6CB1073BA2C" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EA1E534D55114BA1A5C83ACE6215B307" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_A5EE13B25B8149E89CF25C36BDC8AC21" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_AEF2081719D7429BBD6E7A572E6B2263" - { - "Name" = "8:@FlowDevice" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_4BB41F98FAF74A4D8237E19B5C5064E5" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_9BE4839753C143EE8CF2EBF8DC4E587A" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_2F4D6E484358441AAE11AA3FA9B52856" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B72C0565DEB14CE68F69953CF5E5DDA3" - { - "Name" = "8:@XML_Node" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_BBDAF34EEF854A66A0F0ECBB3AA441EB" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_3110CA0C1CED4997A48073347CA65BB7" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_44D3DCF97E364528BD4D8600571C7ACF" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_BD11AF43C6E340FCBE008FEAA256CD1D" - { - "Name" = "8:@Mixture" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_7747E35378364B40845E32E1318DE490" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_EA86EC1BEB2A484FB2483C633FBAD327" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F526E887F0FF4C0A9D42D303BFEACC52" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_BD4AB35C33544AB2A9AC8B42AC2673E6" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_85145D5E636A43378A6358618BE5BD74" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_CBAAA5E692DD4444B9C044CDEC572925" - { - "Name" = "8:@ReactorNet" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F38B6AFEE3664B3B841D38FBF4976739" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_DCCEDAD2F7434ED79EA5FC1EBBF67703" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D88CCFA9FB24455F935822C81A57BCC7" - "Folders" - { - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_F57CABBE120F4A25A9095CA577E9EBC8" - { - "Name" = "8:@Transport" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_036436B0CCA74AC688B895E240C7C038" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_2C6CFCB782BA42B09468BA7D95C5BCF5" - { - "Name" = "8:private" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_B04C7CD54CBC4C9693F2A7AA4C600571" - "Folders" - { - } - } - } - } - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_B34666715CC7479590B06D6D0BD23DB2" - { - "Name" = "8:data" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C994929FD4A54934A5AB8E219CF77767" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_D1893F33A7A64BAC97CA715A72FF10A1" - { - "Name" = "8:include" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_F12BD1B66CB14847863C5483003B9E67" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_01600D0936434365A0C7280645FD3331" - { - "Name" = "8:cantera" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_81576BD7FAA743838337CA646CFBDE44" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_25D6250BD5C54EAA96A425D305D996FC" - { - "Name" = "8:kernel" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_6FCA475061C44B368B8822BBEA8F9BFD" - "Folders" - { - } - } - } - } - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E29941E7E79A449BA0F7360E5C66EA59" - { - "Name" = "8:lib" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_1655BE976A8C4340B46F0264B20166E9" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_E8EA5B218BE04B9E94CF4ED03D78BD4F" - { - "Name" = "8:demos" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D57DDA3E54D645E1BCE4BAB2E6A4907B" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_846B71A41B874C518807AD38B1EBD50C" - { - "Name" = "8:matlab" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_D49B27481C944796BEE21AE6305DFB80" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_84CCDB341EB8428486AB85477FD37B3B" - { - "Name" = "8:python" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_04BDBF2539E24C8399E54BC1F55633E8" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_EDBA80F1672545008CB6C058F06A21CA" - { - "Name" = "8:C++" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_36C452C47783491CB4895BB118F62CFD" - "Folders" - { - "{9EF0B969-E518-4E46-987F-47570745A589}:_34AA3DB59F634462859C4F3682BD1B34" - { - "Name" = "8:flamespeed" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_C886019A09B043FEAD3A8F0C3D11EAC3" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_5ACECDF02820422C89CC9513CEDD2D73" - { - "Name" = "8:combustor" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_CA447C888E854A17BA735C8F7F0E846D" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A0999D1851DD417C8C753B223DFB29B9" - { - "Name" = "8:NASA_coeffs" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_5333D13831814F95B545D43F5E81093E" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_A824386A3142457784E5CF6B5A34A5C2" - { - "Name" = "8:kinetics1" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_98F8E0E2AAF34DA2B3B5D82F91842AB1" - "Folders" - { - } - } - "{9EF0B969-E518-4E46-987F-47570745A589}:_FEC28EEE2004424CB46C8BC32A7FC9F2" - { - "Name" = "8:rankine" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:_97D333ECB48642C899EC80AF182C8A1A" - "Folders" - { - } - } - } - } - } - } - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_AB26FB810BD24B56A3BFF72906E39C74" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_C7612000F6C74080BB6148E0CDFE8EF1" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - "RequiresElevation" = "11:FALSE" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:CanteraDebug" - "ProductCode" = "8:{0AC16DDB-FA0B-408E-9AC3-6DCB01319470}" - "PackageCode" = "8:{70B68C4B-9596-4176-BAA3-38C2F82788C3}" - "UpgradeCode" = "8:{5F38EC85-F90E-41A1-86AC-252681A8B761}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:FALSE" - "DetectNewerInstalledVersion" = "11:TRUE" - "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:1.8.0" - "Manufacturer" = "8:Sandia National Laboratories" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:" - "Title" = "8:CanteraDebug" - "Subject" = "8:" - "ARPCONTACT" = "8:Sandia National Laboratories" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - "TargetPlatform" = "3:0" - "PreBuildEvent" = "8:" - "PostBuildEvent" = "8:" - "RunPostBuildEvent" = "3:0" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_C93B4E14247E452090787E94E6959821" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_323718C727BB4E2A8D28DE599C9EADA5" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_458234A0F3EF49DCA4CA49913CE33BE0" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_B2D41FC719B74F3BB80D8DDDB7D867C9" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - } - "UserInterface" - { - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_1093BA7E61EE4AADA6CD633E1028CDFB" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_3733006F394F42C78D059E2118E72802" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_95A5931DD1874DAE9BA0E4B454C7950F" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_56F29752B33B4E9A96535A893CF5E5D0" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_4A8E96B092C24A40BA138C19826B1B10" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_5E5692F8DAB04B77BBF3D237DCCCDDBB" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_B3AAD97AC20247E99C6C7835874256DC" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_65C6766C173A436085214A40F5DC5C55" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_3726AD2DF6D94AF19AB1FA4F8AEB73FE" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_EDFC12D482C84DBEA0952398D9E4DD43" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_FFFEE4754782412B9EE9717F032E738A" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "InstallAllUsersVisible" - { - "Name" = "8:InstallAllUsersVisible" - "DisplayName" = "8:#1059" - "Description" = "8:#1159" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_9BC0651EED4541ECBFF8504B7502C115" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_1B77D035CCDD4D89A8C5FD89D881C406" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7B71AADEB1D64CB19B1F87AC7F15321F" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_AFEF5AB7E8A84A2F8D6ED832FCAA5BD1" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_DB9BF7EA81E24EFC9A3AFED32F3CB5CE" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_428CF26166884630BED1FCFF1434E0EC" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_FCBB1C0C9FB247D599EEF81C0C2C8C4C" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - } - "MergeModule" - { - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_BEECD019506F46739F8BAF2C337931DA" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:microsoft_vc90_debugcrt_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_DC49B93D011840AFA7E47FA1CAB0E9FF" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:policy_9_0_Microsoft_VC90_DebugCRT_x86.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "ProjectOutput" - { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_03AD241CF2AE4CABAEA018EF343320D4" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\oneD_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_0C5CE42AA68E4BD8B249ADF610B8880D" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{8CB43708-231A-4F80-B777-5F0A90CDB604}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_2102F49BD2E34F5B8AD84E24E3F634CB" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_288886B4E1C84B67822BDB93706A7E6C" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_2A9E757A274545A28F0D13A66E72667D" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\numerics_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AD56DAD7-108B-4E82-993E-1EC6A0DFD209}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_32150CD21ABB4D598AD8261BFA220B57" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctf2c_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_38B3245973354DF7B9AB4D98229EAD9D" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_3C596DA0D7D742FD836DA7BFE8FFD89A" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_537148F485BC4ECFA28BD6A1EBECE0CA" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{127547E3-416C-4C12-82E9-52F912142FB5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_57EF57BF34AC4233941AE8E816148811" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{D76CE458-2A16-42DD-AE25-E282886C358F}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_642CC1BBA7FA4AA1AC11283DBF73BF37" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_6AAEFBB05C9B44A491E68C51C238845B" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctblas_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_6B378751D34949348EE4913E69C4AB5A" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\kinetics_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{8CB43708-231A-4F80-B777-5F0A90CDB604}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_6D65DFD69CEA4C569A845B3C945E7252" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{AD56DAD7-108B-4E82-993E-1EC6A0DFD209}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_72FF1156DAD9443EBF57780DD602A5D4" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\SUNDIALS_SHARED_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_7690C7560DEF4C399EB334AE44C55F86" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\converters_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5D8C2EA9-A90C-48A7-A541-180332B941DD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_7A5425686CD1478C8EDABA757E257C6D" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\NVEC_SER_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_8B38BDDAC99040EC95E5B957E10B6874" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_933AB93386644CC6B9672F679E1EF61F" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\transport_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_93856C74DB284F64837CBF6DFB731E39" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{2701B198-FEC1-45A8-BC20-AACA46B64986}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9BE16EBB1020491797235B3D20ABD30D" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9CF11C75C6E04B898E56736723D03BB1" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctmath_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{127547E3-416C-4C12-82E9-52F912142FB5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9E6DB6F72473492E9981185A7086059B" - { - "SourcePath" = "8:..\\..\\..\\build\\bin\\i686-pc-win32\\ck2cti_d.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_39366AF5E69E41ECBA0D0ED042C779B7" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:Debug|Win32" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A98DEA32678841B0A785D0A9AACA472F" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\zeroD_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_B70E632A6BF14B428ED685671894436B" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_BAA831AA40C947559AAC25E133D950C2" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\base_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D76CE458-2A16-42DD-AE25-E282886C358F}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_C40A327FD93340F3BADAE25F052A02A6" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\equil_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5B4B5866-2B50-4E34-9F00-B5C12677B4B5}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_C9DA4EB11D614E72B124B73E0F04F2BC" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\thermo_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_DC892F14E81145969BF596383AEE0812" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\ctlapack_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{2701B198-FEC1-45A8-BC20-AACA46B64986}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_E48715EB23DF4536B5F49362E8D3B4C0" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\CVODES_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_F4325AF533BD43259F2FC9848B4348E8" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_FA275F0035E84A97A418C4FD2D851D02" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{5D8C2EA9-A90C-48A7-A541-180332B941DD}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_FE2A60C8EA6D4EB281D59D67DE8B0F1D" - { - "SourcePath" = "8:..\\..\\..\\build\\lib\\i686-pc-win32\\tpx_d.lib" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_FFB315EBEC1E40BEBDD8D7F55C471EB2" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_E29941E7E79A449BA0F7360E5C66EA59" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Symbols" - "OutputProjectGuid" = "8:{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - } -} diff --git a/win32/vc9/Sundials/CVODES/.cvsignore b/win32/vc9/Sundials/CVODES/.cvsignore deleted file mode 100755 index 69b3523a8..000000000 --- a/win32/vc9/Sundials/CVODES/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Release -Debug -*.user diff --git a/win32/vc9/Sundials/CVODES/CVODES.vcproj b/win32/vc9/Sundials/CVODES/CVODES.vcproj deleted file mode 100755 index e4843dcab..000000000 --- a/win32/vc9/Sundials/CVODES/CVODES.vcproj +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/Sundials/NVEC_SER/.cvsignore b/win32/vc9/Sundials/NVEC_SER/.cvsignore deleted file mode 100755 index 69b3523a8..000000000 --- a/win32/vc9/Sundials/NVEC_SER/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Release -Debug -*.user diff --git a/win32/vc9/Sundials/NVEC_SER/NVEC_SER.vcproj b/win32/vc9/Sundials/NVEC_SER/NVEC_SER.vcproj deleted file mode 100755 index c15e52cca..000000000 --- a/win32/vc9/Sundials/NVEC_SER/NVEC_SER.vcproj +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/Sundials/SUNDIALS_SHARED/.cvsignore b/win32/vc9/Sundials/SUNDIALS_SHARED/.cvsignore deleted file mode 100755 index 6ce3b2334..000000000 --- a/win32/vc9/Sundials/SUNDIALS_SHARED/.cvsignore +++ /dev/null @@ -1,4 +0,0 @@ -Release -Debug -*.user -status diff --git a/win32/vc9/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj b/win32/vc9/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj deleted file mode 100755 index 9443a8f09..000000000 --- a/win32/vc9/Sundials/SUNDIALS_SHARED/SUNDIALS_SHARED.vcproj +++ /dev/null @@ -1,282 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/Sundials/SUNDIALS_SHARED/docopy.cmd b/win32/vc9/Sundials/SUNDIALS_SHARED/docopy.cmd deleted file mode 100755 index 866040701..000000000 --- a/win32/vc9/Sundials/SUNDIALS_SHARED/docopy.cmd +++ /dev/null @@ -1,15 +0,0 @@ -echo on - -set ccwwdd=%CD% -cd ..\..\..\..\.. - -cd sundials\include\sundials - -if exist sundials_config.h exit 0 - -cd %ccwwdd% - -copy sundials_config.h ..\..\..\..\..\sundials\include\sundials - -echo ok -echo off diff --git a/win32/vc9/Sundials/SUNDIALS_SHARED/sundials_config.h b/win32/vc9/Sundials/SUNDIALS_SHARED/sundials_config.h deleted file mode 100644 index 5c01366ae..000000000 --- a/win32/vc9/Sundials/SUNDIALS_SHARED/sundials_config.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - * ----------------------------------------------------------------- - * $Revision: 1.1 $ - * $Date: 2009/07/20 20:44:03 $ - * ----------------------------------------------------------------- - * Programmer(s): Aaron Collier @ LLNL - * ----------------------------------------------------------------- - * Copyright (c) 2005, The Regents of the University of California. - * Produced at the Lawrence Livermore National Laboratory. - * All rights reserved. - * For details, see the LICENSE file. - *------------------------------------------------------------------ - * SUNDIALS configuration header file - *------------------------------------------------------------------ - */ - -/* Define SUNDIALS version number */ -#define SUNDIALS_PACKAGE_VERSION "2.3.0" - -/* FCMIX: Define Fortran name-mangling macro */ -#define F77_FUNC(name,NAME) name ## _ -#define F77_FUNC_(name,NAME) name ## _ - -/* FCMIX: Define case of function names */ -#define SUNDIALS_CASE_LOWER 1 - -/* FCMIX: Define number of underscores to append to function names */ -#define SUNDIALS_UNDERSCORE_ONE 1 - -/* Define precision of SUNDIALS data type 'realtype' */ -#define SUNDIALS_DOUBLE_PRECISION 1 - -/* Use generic math functions */ -#define SUNDIALS_USE_GENERIC_MATH 1 - -/* FNVECTOR: Allow user to specify different MPI communicator */ - diff --git a/win32/vc9/base/base.vcproj b/win32/vc9/base/base.vcproj deleted file mode 100755 index 717991e3c..000000000 --- a/win32/vc9/base/base.vcproj +++ /dev/null @@ -1,358 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/base/docopy.cmd b/win32/vc9/base/docopy.cmd deleted file mode 100755 index fafe3c483..000000000 --- a/win32/vc9/base/docopy.cmd +++ /dev/null @@ -1,30 +0,0 @@ -cd ..\..\.. - -echo on -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\base - -copy Array.h ..\..\..\build\include\cantera\kernel -copy FactoryBase.h ..\..\..\build\include\cantera\kernel -copy LogPrintCtrl.h ..\..\..\build\include\cantera\kernel -copy PrintCtrl.h ..\..\..\build\include\cantera\kernel -copy XML_Writer.h ..\..\..\build\include\cantera\kernel -copy clockWC.h ..\..\..\build\include\cantera\kernel -copy config.h ..\..\..\build\include\cantera\kernel -copy ct_defs.h ..\..\..\build\include\cantera\kernel -copy ctexceptions.h ..\..\..\build\include\cantera\kernel -copy ctml.h ..\..\..\build\include\cantera\kernel -copy global.h ..\..\..\build\include\cantera\kernel -copy logger.h ..\..\..\build\include\cantera\kernel -copy mdp_allo.h ..\..\..\build\include\cantera\kernel -copy plots.h ..\..\..\build\include\cantera\kernel -copy stringUtils.h ..\..\..\build\include\cantera\kernel -copy units.h ..\..\..\build\include\cantera\kernel -copy utilities.h ..\..\..\build\include\cantera\kernel -copy vec_functions.h ..\..\..\build\include\cantera\kernel -copy xml.h ..\..\..\build\include\cantera\kernel - -cd ..\..\..\win32\vc9\base -echo off -echo 'ok' diff --git a/win32/vc9/cantera.sln b/win32/vc9/cantera.sln deleted file mode 100755 index 7b5909771..000000000 --- a/win32/vc9/cantera.sln +++ /dev/null @@ -1,378 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oneD", "oneD\oneD.vcproj", "{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "transport", "transport\transport.vcproj", "{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zeroD", "zeroD\zeroD.vcproj", "{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "converters", "converters\converters.vcproj", "{5D8C2EA9-A90C-48A7-A541-180332B941DD}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {D76CE458-2A16-42DD-AE25-E282886C358F} = {D76CE458-2A16-42DD-AE25-E282886C358F} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tpx", "tpx\tpx.vcproj", "{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_blas", "f2c_blas\f2c_blas.vcproj", "{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_lapack", "f2c_lapack\f2c_lapack.vcproj", "{2701B198-FEC1-45A8-BC20-AACA46B64986}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctcxx", "cxxutils\cxxutils.vcproj", "{E342202C-F877-43D0-8E66-D2A7794AC900}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clib", "clib\clib.vcproj", "{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - ProjectSection(ProjectDependencies) = postProject - {8CB43708-231A-4F80-B777-5F0A90CDB604} = {8CB43708-231A-4F80-B777-5F0A90CDB604} - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} = {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} = {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {D76CE458-2A16-42DD-AE25-E282886C358F} = {D76CE458-2A16-42DD-AE25-E282886C358F} - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} = {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} = {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {12D156A1-1BF6-42DF-8572-416AC1E9FC03} = {12D156A1-1BF6-42DF-8572-416AC1E9FC03} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} = {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} - {127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {D76CE458-2A16-42DD-AE25-E282886C358F} = {D76CE458-2A16-42DD-AE25-E282886C358F} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_libs", "f2c_libs\f2c_libs.vcproj", "{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_math", "f2c_math\f2c_math.vcproj", "{127547E3-416C-4C12-82E9-52F912142FB5}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctpython", "ctpython\ctpython.vcproj", "{ED939A01-860D-4E92-A892-E195CB311AB7}" - ProjectSection(ProjectDependencies) = postProject - {8CB43708-231A-4F80-B777-5F0A90CDB604} = {8CB43708-231A-4F80-B777-5F0A90CDB604} - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} = {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {D76CE458-2A16-42DD-AE25-E282886C358F} = {D76CE458-2A16-42DD-AE25-E282886C358F} - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} = {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} = {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {12D156A1-1BF6-42DF-8572-416AC1E9FC03} = {12D156A1-1BF6-42DF-8572-416AC1E9FC03} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} = {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} - {127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCantera", "SetupCantera\SetupCantera.vdproj", "{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}" - ProjectSection(ProjectDependencies) = postProject - {ED939A01-860D-4E92-A892-E195CB311AB7} = {ED939A01-860D-4E92-A892-E195CB311AB7} - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {98EFB8B3-7795-444C-BBC0-B1F399BEB029} = {98EFB8B3-7795-444C-BBC0-B1F399BEB029} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctmatlab", "ctmatlab\ctmatlab.vcproj", "{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}" - ProjectSection(ProjectDependencies) = postProject - {8CB43708-231A-4F80-B777-5F0A90CDB604} = {8CB43708-231A-4F80-B777-5F0A90CDB604} - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} = {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {D76CE458-2A16-42DD-AE25-E282886C358F} = {D76CE458-2A16-42DD-AE25-E282886C358F} - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} = {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} = {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9} = {AF888A7A-C325-4312-9BE0-CDA1B1E540E9} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {12D156A1-1BF6-42DF-8572-416AC1E9FC03} = {12D156A1-1BF6-42DF-8572-416AC1E9FC03} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {98EFB8B3-7795-444C-BBC0-B1F399BEB029} = {98EFB8B3-7795-444C-BBC0-B1F399BEB029} - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} = {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} - {127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0} = {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0} - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "config_h", "config_h\config_h.vcproj", "{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NVEC_SER", "Sundials\NVEC_SER\NVEC_SER.vcproj", "{D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}" - ProjectSection(ProjectDependencies) = postProject - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} = {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SUNDIALS_SHARED", "Sundials\SUNDIALS_SHARED\SUNDIALS_SHARED.vcproj", "{FCF87E3E-B8A7-47CA-864E-87E0166CCD79}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CVODES", "Sundials\CVODES\CVODES.vcproj", "{12D156A1-1BF6-42DF-8572-416AC1E9FC03}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} = {FCF87E3E-B8A7-47CA-864E-87E0166CCD79} - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} = {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCanteraLite", "SetupCantera\SetupCanteraLite.vdproj", "{6F530573-5D0C-4FEC-AB81-70FE059BDE5D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "base", "base\base.vcproj", "{D76CE458-2A16-42DD-AE25-E282886C358F}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "numerics", "numerics\numerics.vcproj", "{AD56DAD7-108B-4E82-993E-1EC6A0DFD209}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "thermo", "thermo\thermo.vcproj", "{5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kinetics", "kinetics\kinetics.vcproj", "{8CB43708-231A-4F80-B777-5F0A90CDB604}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "equil", "equil\equil.vcproj", "{5B4B5866-2B50-4E34-9F00-B5C12677B4B5}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "csvdiff", "csvdiff\csvdiff.vcproj", "{AF888A7A-C325-4312-9BE0-CDA1B1E540E9}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cti2ctml", "cti2ctml\cti2ctml.vcproj", "{4F5B4442-98E5-4B11-9239-CDF5148C1902}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clibstatic", "clibstatic\clibstatic.vcproj", "{98EFB8B3-7795-444C-BBC0-B1F399BEB029}" - ProjectSection(ProjectDependencies) = postProject - {8CB43708-231A-4F80-B777-5F0A90CDB604} = {8CB43708-231A-4F80-B777-5F0A90CDB604} - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} = {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {D76CE458-2A16-42DD-AE25-E282886C358F} = {D76CE458-2A16-42DD-AE25-E282886C358F} - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} = {5B4B5866-2B50-4E34-9F00-B5C12677B4B5} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} = {AD56DAD7-108B-4E82-993E-1EC6A0DFD209} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCanteraDebug", "SetupCanteraDebug\SetupCanteraDebug.vdproj", "{58191424-3B9D-4571-BC76-98D05A1CA424}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolnFolder", "SolnFolder", "{01747726-ACD9-4CA0-8809-BEA24CFF4E2E}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - DebugMDD|Win32 = DebugMDD|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug|Win32.ActiveCfg = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug|Win32.Build.0 = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release|Win32.ActiveCfg = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release|Win32.Build.0 = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug|Win32.ActiveCfg = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug|Win32.Build.0 = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release|Win32.ActiveCfg = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release|Win32.Build.0 = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug|Win32.ActiveCfg = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug|Win32.Build.0 = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release|Win32.ActiveCfg = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release|Win32.Build.0 = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug|Win32.ActiveCfg = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug|Win32.Build.0 = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release|Win32.ActiveCfg = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release|Win32.Build.0 = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug|Win32.ActiveCfg = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug|Win32.Build.0 = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release|Win32.ActiveCfg = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release|Win32.Build.0 = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug|Win32.ActiveCfg = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug|Win32.Build.0 = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release|Win32.ActiveCfg = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release|Win32.Build.0 = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug|Win32.ActiveCfg = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug|Win32.Build.0 = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release|Win32.ActiveCfg = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release|Win32.Build.0 = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug|Win32.ActiveCfg = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug|Win32.Build.0 = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release|Win32.ActiveCfg = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release|Win32.Build.0 = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug|Win32.ActiveCfg = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug|Win32.Build.0 = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release|Win32.ActiveCfg = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release|Win32.Build.0 = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug|Win32.ActiveCfg = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug|Win32.Build.0 = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release|Win32.ActiveCfg = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release|Win32.Build.0 = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug|Win32.ActiveCfg = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug|Win32.Build.0 = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release|Win32.ActiveCfg = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release|Win32.Build.0 = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug|Win32.ActiveCfg = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug|Win32.Build.0 = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release|Win32.ActiveCfg = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release|Win32.Build.0 = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug|Win32.ActiveCfg = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug|Win32.Build.0 = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release|Win32.ActiveCfg = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release|Win32.Build.0 = Release|Win32 - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Debug|Win32.ActiveCfg = Debug - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.DebugMDD|Win32.ActiveCfg = DebugMDD - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release|Win32.ActiveCfg = Release - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release|Win32.Build.0 = Release - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug|Win32.ActiveCfg = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug|Win32.Build.0 = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release|Win32.ActiveCfg = Release|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release|Win32.Build.0 = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug|Win32.ActiveCfg = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug|Win32.Build.0 = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release|Win32.ActiveCfg = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release|Win32.Build.0 = Release|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Debug|Win32.ActiveCfg = Debug|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Debug|Win32.Build.0 = Debug|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Release|Win32.ActiveCfg = Release|Win32 - {D1FA7E59-712E-4CC0-ACCA-85F6E41C1C81}.Release|Win32.Build.0 = Release|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Debug|Win32.ActiveCfg = Debug|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Debug|Win32.Build.0 = Debug|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Release|Win32.ActiveCfg = Release|Win32 - {FCF87E3E-B8A7-47CA-864E-87E0166CCD79}.Release|Win32.Build.0 = Release|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Debug|Win32.ActiveCfg = Debug|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Debug|Win32.Build.0 = Debug|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Release|Win32.ActiveCfg = Release|Win32 - {12D156A1-1BF6-42DF-8572-416AC1E9FC03}.Release|Win32.Build.0 = Release|Win32 - {6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Debug|Win32.ActiveCfg = Debug - {6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.DebugMDD|Win32.ActiveCfg = DebugMDD - {6F530573-5D0C-4FEC-AB81-70FE059BDE5D}.Release|Win32.ActiveCfg = Release - {D76CE458-2A16-42DD-AE25-E282886C358F}.Debug|Win32.ActiveCfg = Debug|Win32 - {D76CE458-2A16-42DD-AE25-E282886C358F}.Debug|Win32.Build.0 = Debug|Win32 - {D76CE458-2A16-42DD-AE25-E282886C358F}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {D76CE458-2A16-42DD-AE25-E282886C358F}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {D76CE458-2A16-42DD-AE25-E282886C358F}.Release|Win32.ActiveCfg = Release|Win32 - {D76CE458-2A16-42DD-AE25-E282886C358F}.Release|Win32.Build.0 = Release|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.Debug|Win32.ActiveCfg = Debug|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.Debug|Win32.Build.0 = Debug|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.Release|Win32.ActiveCfg = Release|Win32 - {AD56DAD7-108B-4E82-993E-1EC6A0DFD209}.Release|Win32.Build.0 = Release|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.Debug|Win32.ActiveCfg = Debug|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.Debug|Win32.Build.0 = Debug|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.Release|Win32.ActiveCfg = Release|Win32 - {5FD2CA3C-8968-4C49-9312-C2C96C4B59BC}.Release|Win32.Build.0 = Release|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.Debug|Win32.ActiveCfg = Debug|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.Debug|Win32.Build.0 = Debug|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.Release|Win32.ActiveCfg = Release|Win32 - {8CB43708-231A-4F80-B777-5F0A90CDB604}.Release|Win32.Build.0 = Release|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.Debug|Win32.ActiveCfg = Debug|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.Debug|Win32.Build.0 = Debug|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.Release|Win32.ActiveCfg = Release|Win32 - {5B4B5866-2B50-4E34-9F00-B5C12677B4B5}.Release|Win32.Build.0 = Release|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug|Win32.ActiveCfg = Debug|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Debug|Win32.Build.0 = Debug|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release|Win32.ActiveCfg = Release|Win32 - {AF888A7A-C325-4312-9BE0-CDA1B1E540E9}.Release|Win32.Build.0 = Release|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug|Win32.ActiveCfg = Debug|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Debug|Win32.Build.0 = Debug|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release|Win32.ActiveCfg = Release|Win32 - {4F5B4442-98E5-4B11-9239-CDF5148C1902}.Release|Win32.Build.0 = Release|Win32 - {98EFB8B3-7795-444C-BBC0-B1F399BEB029}.Debug|Win32.ActiveCfg = Debug|Win32 - {98EFB8B3-7795-444C-BBC0-B1F399BEB029}.DebugMDD|Win32.ActiveCfg = DebugMDD|Win32 - {98EFB8B3-7795-444C-BBC0-B1F399BEB029}.DebugMDD|Win32.Build.0 = DebugMDD|Win32 - {98EFB8B3-7795-444C-BBC0-B1F399BEB029}.Release|Win32.ActiveCfg = Release|Win32 - {58191424-3B9D-4571-BC76-98D05A1CA424}.Debug|Win32.ActiveCfg = Debug - {58191424-3B9D-4571-BC76-98D05A1CA424}.DebugMDD|Win32.ActiveCfg = DebugMDD - {58191424-3B9D-4571-BC76-98D05A1CA424}.DebugMDD|Win32.Build.0 = DebugMDD - {58191424-3B9D-4571-BC76-98D05A1CA424}.Release|Win32.ActiveCfg = Release - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/win32/vc9/cantera_examples.sln b/win32/vc9/cantera_examples.sln deleted file mode 100755 index b6a7533ce..000000000 --- a/win32/vc9/cantera_examples.sln +++ /dev/null @@ -1,37 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "diamondSurf", "diamondSurf\diamondSurf.vcproj", "{D600ECB2-D432-4E4D-9D70-BF94AEF31485}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "silane_equil", "silane_equil\silane_equil.vcproj", "{290DC5E5-0016-4CCF-84D5-6B997DD3664A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "surfkin", "surfkin\surfkin.vcproj", "{7A87791C-32F6-48B5-ADBB-A8E77DE13E16}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cxx_examples", "cxx_examples\cxx_examples.vcproj", "{0E635864-A310-4468-9D97-9CE67B078C97}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Debug|Win32.ActiveCfg = Debug|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Debug|Win32.Build.0 = Debug|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Release|Win32.ActiveCfg = Release|Win32 - {D600ECB2-D432-4E4D-9D70-BF94AEF31485}.Release|Win32.Build.0 = Release|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Debug|Win32.ActiveCfg = Debug|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Debug|Win32.Build.0 = Debug|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Release|Win32.ActiveCfg = Release|Win32 - {290DC5E5-0016-4CCF-84D5-6B997DD3664A}.Release|Win32.Build.0 = Release|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug|Win32.ActiveCfg = Debug|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug|Win32.Build.0 = Debug|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release|Win32.ActiveCfg = Release|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release|Win32.Build.0 = Release|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Debug|Win32.ActiveCfg = Debug|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Debug|Win32.Build.0 = Debug|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Release|Win32.ActiveCfg = Release|Win32 - {0E635864-A310-4468-9D97-9CE67B078C97}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/win32/vc9/cantera_no_sundials.sln b/win32/vc9/cantera_no_sundials.sln deleted file mode 100755 index 650a0169a..000000000 --- a/win32/vc9/cantera_no_sundials.sln +++ /dev/null @@ -1,180 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cvode", "cvode\cvode.vcproj", "{9BEC323F-1492-4AF0-8081-F8E3761D9FFC}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oneD", "oneD\oneD.vcproj", "{AFF4EF88-C100-4297-A150-B6C4C5A98F25}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cantera", "cantera\cantera.vcproj", "{E719804C-1351-4C44-BD5E-611AF464CD20}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "transport", "transport\transport.vcproj", "{0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zeroD", "zeroD\zeroD.vcproj", "{9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "converters", "converters\converters.vcproj", "{5D8C2EA9-A90C-48A7-A541-180332B941DD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tpx", "tpx\tpx.vcproj", "{A5DEA71E-15B1-4C59-94A8-01856D6E1F33}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_blas", "f2c_blas\f2c_blas.vcproj", "{5D8EADA5-2E37-4311-AD07-605A0B21F577}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_lapack", "f2c_lapack\f2c_lapack.vcproj", "{2701B198-FEC1-45A8-BC20-AACA46B64986}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctcxx", "cxxutils\cxxutils.vcproj", "{E342202C-F877-43D0-8E66-D2A7794AC900}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clib", "clib\clib.vcproj", "{C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}" - ProjectSection(ProjectDependencies) = postProject - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC} = {9BEC323F-1492-4AF0-8081-F8E3761D9FFC} - {E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20} - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} = {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D} - {AFF4EF88-C100-4297-A150-B6C4C5A98F25} = {AFF4EF88-C100-4297-A150-B6C4C5A98F25} - {2701B198-FEC1-45A8-BC20-AACA46B64986} = {2701B198-FEC1-45A8-BC20-AACA46B64986} - {5D8EADA5-2E37-4311-AD07-605A0B21F577} = {5D8EADA5-2E37-4311-AD07-605A0B21F577} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - {DD55E1AC-451C-422C-92BC-26E3F7AA137B} = {DD55E1AC-451C-422C-92BC-26E3F7AA137B} - {127547E3-416C-4C12-82E9-52F912142FB5} = {127547E3-416C-4C12-82E9-52F912142FB5} - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} = {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ck2cti", "ck2cti\ck2cti.vcproj", "{B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}" - ProjectSection(ProjectDependencies) = postProject - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} = {A5DEA71E-15B1-4C59-94A8-01856D6E1F33} - {E342202C-F877-43D0-8E66-D2A7794AC900} = {E342202C-F877-43D0-8E66-D2A7794AC900} - {E719804C-1351-4C44-BD5E-611AF464CD20} = {E719804C-1351-4C44-BD5E-611AF464CD20} - {5D8C2EA9-A90C-48A7-A541-180332B941DD} = {5D8C2EA9-A90C-48A7-A541-180332B941DD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_libs", "f2c_libs\f2c_libs.vcproj", "{DD55E1AC-451C-422C-92BC-26E3F7AA137B}" - ProjectSection(ProjectDependencies) = postProject - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} = {5DAFF608-0007-4EA3-AC5D-F573B77FA61C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "f2c_math", "f2c_math\f2c_math.vcproj", "{127547E3-416C-4C12-82E9-52F912142FB5}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctpython", "ctpython\ctpython.vcproj", "{ED939A01-860D-4E92-A892-E195CB311AB7}" - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCantera", "SetupCantera\SetupCantera.vdproj", "{AB8F959E-9DD3-47F3-8DAA-98BC12927A79}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctmatlab", "ctmatlab\ctmatlab.vcproj", "{92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}" - ProjectSection(ProjectDependencies) = postProject - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} = {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "config_h", "config_h\config_h.vcproj", "{5DAFF608-0007-4EA3-AC5D-F573B77FA61C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupCanteraLite", "SetupCantera\SetupCanteraLite.vdproj", "{F7607AF2-705A-4046-B7EC-067DEE3BB79F}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Debug.ActiveCfg = Debug|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Debug.Build.0 = Debug|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Release.ActiveCfg = Release|Win32 - {9BEC323F-1492-4AF0-8081-F8E3761D9FFC}.Release.Build.0 = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.ActiveCfg = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Debug.Build.0 = Debug|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.ActiveCfg = Release|Win32 - {AFF4EF88-C100-4297-A150-B6C4C5A98F25}.Release.Build.0 = Release|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.ActiveCfg = Debug|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Debug.Build.0 = Debug|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Release.ActiveCfg = Release|Win32 - {E719804C-1351-4C44-BD5E-611AF464CD20}.Release.Build.0 = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.ActiveCfg = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Debug.Build.0 = Debug|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.ActiveCfg = Release|Win32 - {0BEF3F54-8C5B-4E57-ABCE-B2E6E05B5E2D}.Release.Build.0 = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.ActiveCfg = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Debug.Build.0 = Debug|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.ActiveCfg = Release|Win32 - {9F1F6CE5-F388-4002-AD06-E1E0DB90CABD}.Release.Build.0 = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.ActiveCfg = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Debug.Build.0 = Debug|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.ActiveCfg = Release|Win32 - {5D8C2EA9-A90C-48A7-A541-180332B941DD}.Release.Build.0 = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.ActiveCfg = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Debug.Build.0 = Debug|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.ActiveCfg = Release|Win32 - {A5DEA71E-15B1-4C59-94A8-01856D6E1F33}.Release.Build.0 = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.ActiveCfg = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Debug.Build.0 = Debug|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.ActiveCfg = Release|Win32 - {5D8EADA5-2E37-4311-AD07-605A0B21F577}.Release.Build.0 = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.ActiveCfg = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Debug.Build.0 = Debug|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.ActiveCfg = Release|Win32 - {2701B198-FEC1-45A8-BC20-AACA46B64986}.Release.Build.0 = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.ActiveCfg = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Debug.Build.0 = Debug|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release.ActiveCfg = Release|Win32 - {E342202C-F877-43D0-8E66-D2A7794AC900}.Release.Build.0 = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.ActiveCfg = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Debug.Build.0 = Debug|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.ActiveCfg = Release|Win32 - {C885FEF3-86E5-47C2-8E39-E2A8F251EA8C}.Release.Build.0 = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.ActiveCfg = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Debug.Build.0 = Debug|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.ActiveCfg = Release|Win32 - {B5ADAEEF-F420-4BA5-A36E-4F1B0EEA27D0}.Release.Build.0 = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.ActiveCfg = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Debug.Build.0 = Debug|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.ActiveCfg = Release|Win32 - {DD55E1AC-451C-422C-92BC-26E3F7AA137B}.Release.Build.0 = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug.ActiveCfg = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Debug.Build.0 = Debug|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release.ActiveCfg = Release|Win32 - {127547E3-416C-4C12-82E9-52F912142FB5}.Release.Build.0 = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.ActiveCfg = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Debug.Build.0 = Debug|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release.ActiveCfg = Release|Win32 - {ED939A01-860D-4E92-A892-E195CB311AB7}.Release.Build.0 = Release|Win32 - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Debug.ActiveCfg = Debug - {AB8F959E-9DD3-47F3-8DAA-98BC12927A79}.Release.ActiveCfg = Release - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.ActiveCfg = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Debug.Build.0 = Debug|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.ActiveCfg = Release|Win32 - {92D13C3B-610D-4AD6-BB4D-DDA9E74EBD14}.Release.Build.0 = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.ActiveCfg = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Debug.Build.0 = Debug|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.ActiveCfg = Release|Win32 - {5DAFF608-0007-4EA3-AC5D-F573B77FA61C}.Release.Build.0 = Release|Win32 - {F7607AF2-705A-4046-B7EC-067DEE3BB79F}.Debug.ActiveCfg = Debug - {F7607AF2-705A-4046-B7EC-067DEE3BB79F}.Release.ActiveCfg = Release - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/win32/vc9/ck2cti/ck2cti.vcproj b/win32/vc9/ck2cti/ck2cti.vcproj deleted file mode 100755 index b891b0bdd..000000000 --- a/win32/vc9/ck2cti/ck2cti.vcproj +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/clib/clib.vcproj b/win32/vc9/clib/clib.vcproj deleted file mode 100755 index fa7698465..000000000 --- a/win32/vc9/clib/clib.vcproj +++ /dev/null @@ -1,374 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/clibstatic/clibstatic.vcproj b/win32/vc9/clibstatic/clibstatic.vcproj deleted file mode 100755 index 94e446bf4..000000000 --- a/win32/vc9/clibstatic/clibstatic.vcproj +++ /dev/null @@ -1,339 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/config_h/config_h.vcproj b/win32/vc9/config_h/config_h.vcproj deleted file mode 100755 index a52681f47..000000000 --- a/win32/vc9/config_h/config_h.vcproj +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/config_h/docopy.cmd b/win32/vc9/config_h/docopy.cmd deleted file mode 100755 index b762577d1..000000000 --- a/win32/vc9/config_h/docopy.cmd +++ /dev/null @@ -1,48 +0,0 @@ -echo on -cd ..\..\.. -copy winconfig.h config.h - -cd ext\f2c_libs -copy arith.hwin32 arith.h -copy sysdep1.h0 sysdep1.h -copy signal1.h0 signal1.h -cd ..\.. - -if not exist build\include\cantera mkdir build\include\cantera -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel -if not exist build\bin\i686-pc-win32 mkdir build\bin\i686-pc-win32 -if not exist build\lib\i686-pc-win32 mkdir build\lib\i686-pc-win32 - -copy config.h build\include\cantera -copy config.h build\include\cantera\winconfig.h - -cd Cantera\cxx\include - -copy Cantera.h ..\..\..\build\include\cantera -copy Edge.h ..\..\..\build\include\cantera -copy electrolyteThermo.h ..\..\..\build\include\cantera -copy equilibrium.h ..\..\..\build\include\cantera -copy GRI30.h ..\..\..\build\include\cantera -copy IdealGasMix.h ..\..\..\build\include\cantera -copy importPhase.h ..\..\..\build\include\cantera -copy IncompressibleSolid.h ..\..\..\build\include\cantera -copy integrators.h ..\..\..\build\include\cantera -copy Interface.h ..\..\..\build\include\cantera -copy kinetics.h ..\..\..\build\include\cantera -copy Metal.h ..\..\..\build\include\cantera -copy numerics.h ..\..\..\build\include\cantera -copy onedim.h ..\..\..\build\include\cantera -copy PureFluid.h ..\..\..\build\include\cantera -copy radiation.h ..\..\..\build\include\cantera -copy reactionpaths.h ..\..\..\build\include\cantera -copy spectra.h ..\..\..\build\include\cantera -copy surface.h ..\..\..\build\include\cantera -copy thermo.h ..\..\..\build\include\cantera -copy transport.h ..\..\..\build\include\cantera -copy zerodim.h ..\..\..\build\include\cantera - -cd ..\..\.. - -cd win32\vc9\config_h -echo ok -echo off diff --git a/win32/vc9/converters/converters.vcproj b/win32/vc9/converters/converters.vcproj deleted file mode 100755 index c643aed1b..000000000 --- a/win32/vc9/converters/converters.vcproj +++ /dev/null @@ -1,341 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/converters/docopy.cmd b/win32/vc9/converters/docopy.cmd deleted file mode 100755 index fbcb9b9a7..000000000 --- a/win32/vc9/converters/docopy.cmd +++ /dev/null @@ -1,21 +0,0 @@ -cd ..\..\..\ - -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\conver~1 - -copy ck2ct.h ..\..\..\build\include\cantera\kernel -copy CKParser.h ..\..\..\build\include\cantera\kernel -copy ckr_defs.h ..\..\..\build\include\cantera\kernel -copy ckr_utils.h ..\..\..\build\include\cantera\kernel -copy CKReader.h ..\..\..\build\include\cantera\kernel -copy Constituent.h ..\..\..\build\include\cantera\kernel -copy Element.h ..\..\..\build\include\cantera\kernel -copy Reaction.h ..\..\..\build\include\cantera\kernel -copy RxnSpecies.h ..\..\..\build\include\cantera\kernel -copy Species.h ..\..\..\build\include\cantera\kernel -copy thermoFunctions.h ..\..\..\build\include\cantera\kernel -copy writelog.h ..\..\..\build\include\cantera\kernel - -cd ..\..\..\win32\vc9\conver~1 -echo 'ok' diff --git a/win32/vc9/csvdiff/csvdiff.vcproj b/win32/vc9/csvdiff/csvdiff.vcproj deleted file mode 100755 index 8cebdff49..000000000 --- a/win32/vc9/csvdiff/csvdiff.vcproj +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/cti2ctml/cti2ctml.vcproj b/win32/vc9/cti2ctml/cti2ctml.vcproj deleted file mode 100755 index c395de28b..000000000 --- a/win32/vc9/cti2ctml/cti2ctml.vcproj +++ /dev/null @@ -1,290 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/ctmatlab/buildmlab.cmd b/win32/vc9/ctmatlab/buildmlab.cmd deleted file mode 100755 index 6249ad792..000000000 --- a/win32/vc9/ctmatlab/buildmlab.cmd +++ /dev/null @@ -1,3 +0,0 @@ -cd ..\..\..\Cantera\matlab -%PYTHON_CMD% setup_winmatlab.py build - diff --git a/win32/vc9/ctmatlab/buildmlab_d.cmd b/win32/vc9/ctmatlab/buildmlab_d.cmd deleted file mode 100755 index 3919da07a..000000000 --- a/win32/vc9/ctmatlab/buildmlab_d.cmd +++ /dev/null @@ -1,3 +0,0 @@ -cd ..\..\..\Cantera\matlab -%PYTHON_CMD% setup_winmatlab_d.py build - diff --git a/win32/vc9/ctmatlab/ctmatlab.vcproj b/win32/vc9/ctmatlab/ctmatlab.vcproj deleted file mode 100755 index f89669137..000000000 --- a/win32/vc9/ctmatlab/ctmatlab.vcproj +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/ctmatlab/runmlab.cmd b/win32/vc9/ctmatlab/runmlab.cmd deleted file mode 100755 index d2b774ba2..000000000 --- a/win32/vc9/ctmatlab/runmlab.cmd +++ /dev/null @@ -1,7 +0,0 @@ -cd ..\..\..\Cantera\matlab -"%MATLAB_CMD%" -nodisplay -nosplash -nojvm -r setup - -echo 'ok' > status - -more - diff --git a/win32/vc9/ctpython/ctpython.vcproj b/win32/vc9/ctpython/ctpython.vcproj deleted file mode 100755 index 9215c0e44..000000000 --- a/win32/vc9/ctpython/ctpython.vcproj +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/ctpython/runpython.cmd b/win32/vc9/ctpython/runpython.cmd deleted file mode 100755 index b31917435..000000000 --- a/win32/vc9/ctpython/runpython.cmd +++ /dev/null @@ -1,8 +0,0 @@ -cd ..\..\..\Cantera\python -%PYTHON_CMD% winsetup.py build -copy ..\..\build\lib\i686-pc-win32\clib.dll build\lib.win32-2.6\Cantera -copy ..\..\build\lib\i686-pc-win32\clib.exp build\lib.win32-2.6\Cantera -copy ..\..\build\lib\i686-pc-win32\clib.lib build\lib.win32-2.6\Cantera -%PYTHON_CMD% winsetup.py bdist_wininst -%PYTHON_CMD% winsetup.py install -echo 'ok' > status diff --git a/win32/vc9/ctpython/runpython_d.cmd b/win32/vc9/ctpython/runpython_d.cmd deleted file mode 100755 index a10deeddf..000000000 --- a/win32/vc9/ctpython/runpython_d.cmd +++ /dev/null @@ -1,8 +0,0 @@ -cd ..\..\..\Cantera\python -%PYTHON_CMD% winsetup.py build -copy ..\..\build\lib\i686-pc-win32\clib_d.dll build\lib.win32-2.6\Cantera -copy ..\..\build\lib\i686-pc-win32\clib_d.exp build\lib.win32-2.6\Cantera -copy ..\..\build\lib\i686-pc-win32\clib_d.lib build\lib.win32-2.6\Cantera -%PYTHON_CMD% winsetup_d.py bdist_wininst -%PYTHON_CMD% winsetup_d.py install -echo 'ok' > status diff --git a/win32/vc9/cvode/cvode.vcproj b/win32/vc9/cvode/cvode.vcproj deleted file mode 100755 index 543629dcc..000000000 --- a/win32/vc9/cvode/cvode.vcproj +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/cxx_examples/cxx_examples.vcproj b/win32/vc9/cxx_examples/cxx_examples.vcproj deleted file mode 100755 index 2eacc6767..000000000 --- a/win32/vc9/cxx_examples/cxx_examples.vcproj +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/cxxutils/cxxutils.vcproj b/win32/vc9/cxxutils/cxxutils.vcproj deleted file mode 100755 index ee8cdc3c4..000000000 --- a/win32/vc9/cxxutils/cxxutils.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/cxxutils/docopy.cmd b/win32/vc9/cxxutils/docopy.cmd deleted file mode 100755 index 60c8e8d4d..000000000 --- a/win32/vc9/cxxutils/docopy.cmd +++ /dev/null @@ -1,21 +0,0 @@ -cd ..\..\..\Cantera\cxx\include - -copy Cantera.h ..\..\..\build\include\cantera -copy Edge.h ..\..\..\build\include\cantera -copy equilibrium.h ..\..\..\build\include\cantera -copy GRI30.h ..\..\..\build\include\cantera -copy IdealGasMix.h ..\..\..\build\include\cantera -copy IncompressibleSolid.h ..\..\..\build\include\cantera -copy integrators.h ..\..\..\build\include\cantera -copy Interface.h ..\..\..\build\include\cantera -copy kinetics.h ..\..\..\build\include\cantera -copy Metal.h ..\..\..\build\include\cantera -copy numerics.h ..\..\..\build\include\cantera -copy onedim.h ..\..\..\build\include\cantera -copy reactionpaths.h ..\..\..\build\include\cantera -copy surface.h ..\..\..\build\include\cantera -copy transport.h ..\..\..\build\include\cantera -copy zerodim.h ..\..\..\build\include\cantera - -cd ..\..\..\win32\vc9\cxxutils -echo 'ok' > status diff --git a/win32/vc9/demos/CanteraDemos.sln b/win32/vc9/demos/CanteraDemos.sln deleted file mode 100755 index dc746232b..000000000 --- a/win32/vc9/demos/CanteraDemos.sln +++ /dev/null @@ -1,51 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "demo", "demo.vcproj", "{F0FBA57E-6E65-46E6-9DDD-2625E7082189}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{66D3DEAE-36EE-4A5C-B8C3-4A8286DA6599}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "combustor", "combustor\combustor.vcproj", "{25A7DE6A-30B8-4878-889B-F7D9D51E005E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "flamespeed", "flamespeed\flamespeed.vcproj", "{A839E4E1-9080-4236-BAB5-F1D0F700B806}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kinetics1", "kinetics1\kinetics1.vcproj", "{207B8CAD-03BA-4FAF-8AC4-8C45CF1838F0}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NASA_coeffs", "NASA_coeffs\NASA_coeffs.vcproj", "{4CC37329-C8ED-489E-A79B-5CF6B8570328}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Rankine", "rankine\Rankine.vcproj", "{02089181-7A2D-4933-9847-C9C687D3C99D}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Debug|Win32.ActiveCfg = Debug|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Debug|Win32.Build.0 = Debug|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Release|Win32.ActiveCfg = Release|Win32 - {F0FBA57E-6E65-46E6-9DDD-2625E7082189}.Release|Win32.Build.0 = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug|Win32.ActiveCfg = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Debug|Win32.Build.0 = Debug|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release|Win32.ActiveCfg = Release|Win32 - {25A7DE6A-30B8-4878-889B-F7D9D51E005E}.Release|Win32.Build.0 = Release|Win32 - {A839E4E1-9080-4236-BAB5-F1D0F700B806}.Debug|Win32.ActiveCfg = Debug|Win32 - {A839E4E1-9080-4236-BAB5-F1D0F700B806}.Debug|Win32.Build.0 = Debug|Win32 - {A839E4E1-9080-4236-BAB5-F1D0F700B806}.Release|Win32.ActiveCfg = Release|Win32 - {A839E4E1-9080-4236-BAB5-F1D0F700B806}.Release|Win32.Build.0 = Release|Win32 - {207B8CAD-03BA-4FAF-8AC4-8C45CF1838F0}.Debug|Win32.ActiveCfg = Debug|Win32 - {207B8CAD-03BA-4FAF-8AC4-8C45CF1838F0}.Debug|Win32.Build.0 = Debug|Win32 - {207B8CAD-03BA-4FAF-8AC4-8C45CF1838F0}.Release|Win32.ActiveCfg = Release|Win32 - {207B8CAD-03BA-4FAF-8AC4-8C45CF1838F0}.Release|Win32.Build.0 = Release|Win32 - {4CC37329-C8ED-489E-A79B-5CF6B8570328}.Debug|Win32.ActiveCfg = Debug|Win32 - {4CC37329-C8ED-489E-A79B-5CF6B8570328}.Debug|Win32.Build.0 = Debug|Win32 - {4CC37329-C8ED-489E-A79B-5CF6B8570328}.Release|Win32.ActiveCfg = Release|Win32 - {4CC37329-C8ED-489E-A79B-5CF6B8570328}.Release|Win32.Build.0 = Release|Win32 - {02089181-7A2D-4933-9847-C9C687D3C99D}.Debug|Win32.ActiveCfg = Debug|Win32 - {02089181-7A2D-4933-9847-C9C687D3C99D}.Debug|Win32.Build.0 = Debug|Win32 - {02089181-7A2D-4933-9847-C9C687D3C99D}.Release|Win32.ActiveCfg = Release|Win32 - {02089181-7A2D-4933-9847-C9C687D3C99D}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/win32/vc9/demos/NASA_coeffs.vcproj b/win32/vc9/demos/NASA_coeffs.vcproj deleted file mode 100755 index bbc374f10..000000000 --- a/win32/vc9/demos/NASA_coeffs.vcproj +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/demos/Rankine.vcproj b/win32/vc9/demos/Rankine.vcproj deleted file mode 100755 index bdf03e525..000000000 --- a/win32/vc9/demos/Rankine.vcproj +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/demos/ReadMe.txt b/win32/vc9/demos/ReadMe.txt deleted file mode 100755 index 8004e4508..000000000 --- a/win32/vc9/demos/ReadMe.txt +++ /dev/null @@ -1,9 +0,0 @@ -The project setttings assume Cantera is installed in the directory above this one. -If this is not the case, edit the project properties before building. -The project settings that differ from the defaults are: -1) use of multithreaded DLL system libraries -2) specification of the Cantera libraries as additional - input for the linker -3) Specification of the Cantera include and lib directories. - These changes to the default project settings need to be made whenever - you create a new project that you want to link to Cantera. \ No newline at end of file diff --git a/win32/vc9/demos/combustor.vcproj b/win32/vc9/demos/combustor.vcproj deleted file mode 100755 index 9448ccac4..000000000 --- a/win32/vc9/demos/combustor.vcproj +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/demos/demo.vcproj b/win32/vc9/demos/demo.vcproj deleted file mode 100755 index 333727f5a..000000000 --- a/win32/vc9/demos/demo.vcproj +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/demos/flamespeed.vcproj b/win32/vc9/demos/flamespeed.vcproj deleted file mode 100755 index 51e92e2c2..000000000 --- a/win32/vc9/demos/flamespeed.vcproj +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/demos/kinetics1.vcproj b/win32/vc9/demos/kinetics1.vcproj deleted file mode 100755 index 6ec1162f1..000000000 --- a/win32/vc9/demos/kinetics1.vcproj +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/diamondSurf/diamondSurf.vcproj b/win32/vc9/diamondSurf/diamondSurf.vcproj deleted file mode 100755 index 6000f4ecd..000000000 --- a/win32/vc9/diamondSurf/diamondSurf.vcproj +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/equil/docopy.cmd b/win32/vc9/equil/docopy.cmd deleted file mode 100755 index e52802430..000000000 --- a/win32/vc9/equil/docopy.cmd +++ /dev/null @@ -1,26 +0,0 @@ -cd ..\..\..\ - -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\equil - -copy ChemEquil.h ..\..\..\build\include\cantera\kernel -copy equil.h ..\..\..\build\include\cantera\kernel -copy MultiPhase.h ..\..\..\build\include\cantera\kernel -copy MultiPhaseEquil.h ..\..\..\build\include\cantera\kernel -copy PropertyCalculator.h ..\..\..\build\include\cantera\kernel -copy vcs_defs.h ..\..\..\build\include\cantera\kernel -copy vcs_DoubleStarStar.h ..\..\..\build\include\cantera\kernel -copy vcs_Exception.h ..\..\..\build\include\cantera\kernel -copy vcs_internal.h ..\..\..\build\include\cantera\kernel -copy vcs_IntStarStar.h ..\..\..\build\include\cantera\kernel -copy vcs_MultiPhaseEquil.h ..\..\..\build\include\cantera\kernel -copy vcs_nasa_poly.h ..\..\..\build\include\cantera\kernel -copy vcs_prob.h ..\..\..\build\include\cantera\kernel -copy vcs_solve.h ..\..\..\build\include\cantera\kernel -copy vcs_species_thermo.h ..\..\..\build\include\cantera\kernel -copy vcs_SpeciesProperties.h ..\..\..\build\include\cantera\kernel -copy vcs_VolPhase.h ..\..\..\build\include\cantera\kernel - -cd ..\..\..\win32\vc9\equil -echo 'ok' diff --git a/win32/vc9/equil/equil.vcproj b/win32/vc9/equil/equil.vcproj deleted file mode 100755 index 3a748494e..000000000 --- a/win32/vc9/equil/equil.vcproj +++ /dev/null @@ -1,460 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/f2c_blas/f2c_blas.vcproj b/win32/vc9/f2c_blas/f2c_blas.vcproj deleted file mode 100755 index 900e0e059..000000000 --- a/win32/vc9/f2c_blas/f2c_blas.vcproj +++ /dev/null @@ -1,409 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/f2c_lapack/f2c_lapack.vcproj b/win32/vc9/f2c_lapack/f2c_lapack.vcproj deleted file mode 100755 index 23ededf35..000000000 --- a/win32/vc9/f2c_lapack/f2c_lapack.vcproj +++ /dev/null @@ -1,508 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/f2c_libs/f2c_libs.vcproj b/win32/vc9/f2c_libs/f2c_libs.vcproj deleted file mode 100755 index c4e0dc810..000000000 --- a/win32/vc9/f2c_libs/f2c_libs.vcproj +++ /dev/null @@ -1,888 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/f2c_math/f2c_math.vcproj b/win32/vc9/f2c_math/f2c_math.vcproj deleted file mode 100755 index 3e569d640..000000000 --- a/win32/vc9/f2c_math/f2c_math.vcproj +++ /dev/null @@ -1,347 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/kinetics/docopy.cmd b/win32/vc9/kinetics/docopy.cmd deleted file mode 100755 index d03e3af6f..000000000 --- a/win32/vc9/kinetics/docopy.cmd +++ /dev/null @@ -1,35 +0,0 @@ -echo on -cd ..\..\..\ - -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\kinetics - -copy AqueousKinetics.h ..\..\..\build\include\cantera\kernel -copy EdgeKinetics.h ..\..\..\build\include\cantera\kernel -copy Enhanced3BConc.h ..\..\..\build\include\cantera\kernel -copy FalloffFactory.h ..\..\..\build\include\cantera\kernel -copy FalloffMgr.h ..\..\..\build\include\cantera\kernel -copy GasKinetics.h ..\..\..\build\include\cantera\kernel -copy GRI_30_Kinetics.h ..\..\..\build\include\cantera\kernel -copy Group.h ..\..\..\build\include\cantera\kernel -copy ImplicitChem.h ..\..\..\build\include\cantera\kernel -copy ImplicitSurfChem.h ..\..\..\build\include\cantera\kernel -copy importKinetics.h ..\..\..\build\include\cantera\kernel -copy InterfaceKinetics.h ..\..\..\build\include\cantera\kernel -copy Kinetics.h ..\..\..\build\include\cantera\kernel -copy KineticsFactory.h ..\..\..\build\include\cantera\kernel -copy RateCoeffMgr.h ..\..\..\build\include\cantera\kernel -copy reaction_defs.h ..\..\..\build\include\cantera\kernel -copy ReactionData.h ..\..\..\build\include\cantera\kernel -copy ReactionPath.h ..\..\..\build\include\cantera\kernel -copy ReactionStoichMgr.h ..\..\..\build\include\cantera\kernel -copy RxnRates.h ..\..\..\build\include\cantera\kernel -copy solveSP.h ..\..\..\build\include\cantera\kernel -copy StoichManager.h ..\..\..\build\include\cantera\kernel -copy ThirdBodyMgr.h ..\..\..\build\include\cantera\kernel - -cd ..\..\..\win32\vc9\kinetics - -echo off -echo 'ok' diff --git a/win32/vc9/kinetics/kinetics.vcproj b/win32/vc9/kinetics/kinetics.vcproj deleted file mode 100755 index 5f253d8b8..000000000 --- a/win32/vc9/kinetics/kinetics.vcproj +++ /dev/null @@ -1,389 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/numerics/docopy.cmd b/win32/vc9/numerics/docopy.cmd deleted file mode 100755 index bd81c1faf..000000000 --- a/win32/vc9/numerics/docopy.cmd +++ /dev/null @@ -1,29 +0,0 @@ -cd ..\..\..\ - -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\numerics - -copy ArrayViewer.h ..\..\..\build\include\cantera\kernel -copy BandMatrix.h ..\..\..\build\include\cantera\kernel -copy ctlapack.h ..\..\..\build\include\cantera\kernel -copy CVode.h ..\..\..\build\include\cantera\kernel -copy CVodesIntegrator.h ..\..\..\build\include\cantera\kernel -copy DAE_Solver.h ..\..\..\build\include\cantera\kernel -copy DASPK.h ..\..\..\build\include\cantera\kernel -copy DenseMatrix.h ..\..\..\build\include\cantera\kernel -copy Func1.h ..\..\..\build\include\cantera\kernel -copy FuncEval.h ..\..\..\build\include\cantera\kernel -copy funcs.h ..\..\..\build\include\cantera\kernel -copy IDA_Solver.h ..\..\..\build\include\cantera\kernel -copy Integrator.h ..\..\..\build\include\cantera\kernel -copy lapack.h ..\..\..\build\include\cantera\kernel -copy NonlinearSolver.h ..\..\..\build\include\cantera\kernel -copy polyfit.h ..\..\..\build\include\cantera\kernel -copy ResidEval.h ..\..\..\build\include\cantera\kernel -copy ResidJacEval.h ..\..\..\build\include\cantera\kernel -copy sort.h ..\..\..\build\include\cantera\kernel -copy SquareMatrix.h ..\..\..\build\include\cantera\kernel - -cd ..\..\..\win32\vc9\numerics -echo 'ok' > status diff --git a/win32/vc9/numerics/numerics.vcproj b/win32/vc9/numerics/numerics.vcproj deleted file mode 100755 index 7913ce1d3..000000000 --- a/win32/vc9/numerics/numerics.vcproj +++ /dev/null @@ -1,357 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/oneD/docopy.cmd b/win32/vc9/oneD/docopy.cmd deleted file mode 100755 index 399accdd6..000000000 --- a/win32/vc9/oneD/docopy.cmd +++ /dev/null @@ -1,22 +0,0 @@ -cd ..\..\..\ - -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\oneD - -echo on -copy Domain1D.h ..\..\..\build\include\cantera\kernel -copy Inlet1D.h ..\..\..\build\include\cantera\kernel -copy MultiJac.h ..\..\..\build\include\cantera\kernel -copy MultiNewton.h ..\..\..\build\include\cantera\kernel -copy OneDim.h ..\..\..\build\include\cantera\kernel -copy refine.h ..\..\..\build\include\cantera\kernel -copy Resid1D.h ..\..\..\build\include\cantera\kernel -copy Sim1D.h ..\..\..\build\include\cantera\kernel -copy Solid1D.h ..\..\..\build\include\cantera\kernel -copy StFlow.h ..\..\..\build\include\cantera\kernel -copy Surf1D.h ..\..\..\build\include\cantera\kernel -echo off - -cd ..\..\..\win32\vc9\oneD -echo 'ok' > status.tmp diff --git a/win32/vc9/oneD/oneD.vcproj b/win32/vc9/oneD/oneD.vcproj deleted file mode 100755 index 4b33cc0f9..000000000 --- a/win32/vc9/oneD/oneD.vcproj +++ /dev/null @@ -1,326 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/prepreconfig.vc++ b/win32/vc9/prepreconfig.vc++ deleted file mode 100755 index e0a39471c..000000000 --- a/win32/vc9/prepreconfig.vc++ +++ /dev/null @@ -1,102 +0,0 @@ -#!/bin/sh -# -# -# Sample bourne shell wrapper around Cantera's configure -# shell command, used for building and installing Cantera -# using MS VC++, without fortran support. -# Copy this file to the top directory of the Cantera distribution. -# Edit a few directory locations indicated below. Then execute it -# after autoconf is run. -# -# Tell Cantera you will be using a VC++ compiler to compile and link -# all of the programs -# -USE_VISUAL_STUDIO="y" -export USE_VISUAL_STUDIO -# -# Specify the root directory: Will need adjusting -# -CANTERA_ROOT="/cygwin/c/vc_env/cantera-1.7_develop" -export CANTERA_ROOT -# -# Specify the install directory: Will need adjusting -# -CANTERA_INSTALL_DIR="C:/vc_env/Cantera" -export CANTERA_INSTALL_DIR -# -# -# PYTHON_CMD: This is the default location that Python24 -# puts its files. -# -PYTHON_CMD="c:/python26/python.exe" -export PYTHON_CMD -# -# WIN_PYTHON_CMD: This is the default location that Python26 -# puts its files. -# -WIN_PYTHON_CMD='C:/Python26/python' -export WIN_PYTHON_CMD -# -# These 2 next lines tells Cantera and Python where to install -# the Cantera python modules. -# -SET_PYTHON_SITE_PACKAGE_TOPDIR=y -export SET_PYTHON_SITE_PACKAGE_TOPDIR -# -PYTHON_SITE_PACKAGE_TOPDIR="C:/Python26" -export PYTHON_SITE_PACKAGE_TOPDIR -# -# No matlab toolbox in this script. However, if you have matlab -# on your machine, you can change the "n" to a "y". -BUILD_MATLAB_TOOLBOX="y" -export BUILD_MATLAB_TOOLBOX -# -# Indicate that you will be using the clib.dll -# -USE_DLL="y" -export USE_DLL -# -# HKM -> note config chokes on cl.exe . It can't interpret the -# needed command line arguments. -#CXX="cl.exe" -#export CXX -#CC="cl.exe" -#export CC -# -CXXFLAGS="-g" -export CXXFLAGS -# -# -LCXX_END_LIBS="-lm -lstdc++" -export LCXX_END_LIBS -# -PYTHON_PACKAGE='full' -#PYTHON_PACKAGE='minimal' -export PYTHON_PACKAGE - -WITH_IDEAL_SOLUTIONS="y" -export WITH_IDEAL_SOLUTIONS - -WITH_ELECTROLYTES="y" -export WITH_ELECTROLYTES - -WITH_VCSNONIDEAL="y" -export WITH_VCSNONIDEAL - -USE_SUNDIALS='y' -export USE_SUNDIALS -SUNDIALS_HOME='/cygdrive/c/vc_env/sundials' -export SUNDIALS_HOME - -USE_NUMPY='y' -export USE_NUMPY - -NUMPY_INC_DIR='c:\python26\lib\site-packages\numpy\core\include' -export NUMPY_INC_DIR - -# -# Call the configure command at the top of the Cantera distribution -# in a cygwin shell -# -./preconfig -# diff --git a/win32/vc9/silane_equil/silane_equil.vcproj b/win32/vc9/silane_equil/silane_equil.vcproj deleted file mode 100755 index daa32b843..000000000 --- a/win32/vc9/silane_equil/silane_equil.vcproj +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/spectra/spectra.vcproj b/win32/vc9/spectra/spectra.vcproj deleted file mode 100755 index f00a36d33..000000000 --- a/win32/vc9/spectra/spectra.vcproj +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/surfkin/surfkin.sln b/win32/vc9/surfkin/surfkin.sln deleted file mode 100755 index dbcb8ecab..000000000 --- a/win32/vc9/surfkin/surfkin.sln +++ /dev/null @@ -1,20 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "surfkin", "surfkin.vcproj", "{7A87791C-32F6-48B5-ADBB-A8E77DE13E16}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug|Win32.ActiveCfg = Debug|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Debug|Win32.Build.0 = Debug|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release|Win32.ActiveCfg = Release|Win32 - {7A87791C-32F6-48B5-ADBB-A8E77DE13E16}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/win32/vc9/surfkin/surfkin.vcproj b/win32/vc9/surfkin/surfkin.vcproj deleted file mode 100755 index a717169e2..000000000 --- a/win32/vc9/surfkin/surfkin.vcproj +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/thermo/docopy.cmd b/win32/vc9/thermo/docopy.cmd deleted file mode 100755 index ac58dfa5b..000000000 --- a/win32/vc9/thermo/docopy.cmd +++ /dev/null @@ -1,76 +0,0 @@ -echo on -cd ..\..\..\ - -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\thermo - - -copy AdsorbateThermo.h ..\..\..\build\include\cantera\kernel -copy ConstCpPoly.h ..\..\..\build\include\cantera\kernel -copy Constituents.h ..\..\..\build\include\cantera\kernel -copy Crystal.h ..\..\..\build\include\cantera\kernel -copy DebyeHuckel.h ..\..\..\build\include\cantera\kernel -copy EdgePhase.h ..\..\..\build\include\cantera\kernel -copy electrolytes.h ..\..\..\build\include\cantera\kernel -copy Elements.h ..\..\..\build\include\cantera\kernel -copy GeneralSpeciesThermo.h ..\..\..\build\include\cantera\kernel -copy GibbsExcessVPSSTP.h ..\..\..\build\include\cantera\kernel -copy HMWSoln.h ..\..\..\build\include\cantera\kernel -copy IdealGasPhase.h ..\..\..\build\include\cantera\kernel -copy IdealMolalSoln.h ..\..\..\build\include\cantera\kernel -copy IdealSolidSolnPhase.h ..\..\..\build\include\cantera\kernel -copy IdealSolnGasVPSS.h ..\..\..\build\include\cantera\kernel -copy LatticePhase.h ..\..\..\build\include\cantera\kernel -copy LatticeSolidPhase.h ..\..\..\build\include\cantera\kernel -copy MargulesVPSSTP.h ..\..\..\build\include\cantera\kernel -copy MetalPhase.h ..\..\..\build\include\cantera\kernel -copy MineralEQ3.h ..\..\..\build\include\cantera\kernel -copy mix_defs.h ..\..\..\build\include\cantera\kernel -copy MolalityVPSSTP.h ..\..\..\build\include\cantera\kernel -copy Mu0Poly.h ..\..\..\build\include\cantera\kernel -copy Nasa9Poly1.h ..\..\..\build\include\cantera\kernel -copy Nasa9PolyMultiTempRegion.h ..\..\..\build\include\cantera\kernel -copy NasaPoly1.h ..\..\..\build\include\cantera\kernel -copy NasaPoly2.h ..\..\..\build\include\cantera\kernel -copy NasaThermo.h ..\..\..\build\include\cantera\kernel -copy PDSS.h ..\..\..\build\include\cantera\kernel -copy PDSS_ConstVol.h ..\..\..\build\include\cantera\kernel -copy PDSS_HKFT.h ..\..\..\build\include\cantera\kernel -copy PDSS_IdealGas.h ..\..\..\build\include\cantera\kernel -copy PDSS_Water.h ..\..\..\build\include\cantera\kernel -copy Phase.h ..\..\..\build\include\cantera\kernel -copy PseudoBinaryVPSSTP.h ..\..\..\build\include\cantera\kernel -copy PureFluidPhase.h ..\..\..\build\include\cantera\kernel -copy SemiconductorPhase.h ..\..\..\build\include\cantera\kernel -copy ShomateThermo.h ..\..\..\build\include\cantera\kernel -copy SimpleThermo.h ..\..\..\build\include\cantera\kernel -copy SingleSPeciesTP.h ..\..\..\build\include\cantera\kernel -copy SpeciesThermo.h ..\..\..\build\include\cantera\kernel -copy SpeciesThermoFactory.h ..\..\..\build\include\cantera\kernel -copy SpeciesThermoInterpType.h ..\..\..\build\include\cantera\kernel -copy SpeciesThermoMgr.h ..\..\..\build\include\cantera\kernel -copy SpeciesThermoTypes.h ..\..\..\build\include\cantera\kernel -copy State.h ..\..\..\build\include\cantera\kernel -copy StoichSubstance.h ..\..\..\build\include\cantera\kernel -copy StoichSubstanceSSTP.h ..\..\..\build\include\cantera\kernel -copy SurfPhase.h ..\..\..\build\include\cantera\kernel -copy ThermoFactory.h ..\..\..\build\include\cantera\kernel -copy ThermoPhase.h ..\..\..\build\include\cantera\kernel -copy VPSSMgr.h ..\..\..\build\include\cantera\kernel -copy VPSSMGr_ConstVol.h ..\..\..\build\include\cantera\kernel -copy VPSSMgr_General.h ..\..\..\build\include\cantera\kernel -copy VPSSMgr_IdealGas.h ..\..\..\build\include\cantera\kernel -copy VPSSMgr_types.h ..\..\..\build\include\cantera\kernel -copy VPSSMgr_Water_ConstVol.h ..\..\..\build\include\cantera\kernel -copy VPSSMgr_Water_HKFT.h ..\..\..\build\include\cantera\kernel -copy VPSSMgrFactory.h ..\..\..\build\include\cantera\kernel -copy VPStandardStateTP.h ..\..\..\build\include\cantera\kernel -copy WaterProps.h ..\..\..\build\include\cantera\kernel -copy WaterPropsIAPWS.h ..\..\..\build\include\cantera\kernel -copy WaterPropsIAPWSphi.h ..\..\..\build\include\cantera\kernel -copy WaterSSTP.h ..\..\..\build\include\cantera\kernel - -cd ..\..\..\win32\vc9\thermo -echo off -echo 'ok' > status.tmp diff --git a/win32/vc9/thermo/thermo.vcproj b/win32/vc9/thermo/thermo.vcproj deleted file mode 100755 index 844cb1086..000000000 --- a/win32/vc9/thermo/thermo.vcproj +++ /dev/null @@ -1,718 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/tpx/tpx.vcproj b/win32/vc9/tpx/tpx.vcproj deleted file mode 100755 index fd3b6595b..000000000 --- a/win32/vc9/tpx/tpx.vcproj +++ /dev/null @@ -1,339 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/transport/docopy.cmd b/win32/vc9/transport/docopy.cmd deleted file mode 100755 index c2f621c2d..000000000 --- a/win32/vc9/transport/docopy.cmd +++ /dev/null @@ -1,24 +0,0 @@ -echo on -cd ..\..\..\ - -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\transp~1 - -copy AqueousTransport.h ..\..\..\build\include\cantera\kernel -copy DustyGasTransport.h ..\..\..\build\include\cantera\kernel -copy FtnTransport.h ..\..\..\build\include\cantera\kernel -copy L_matrix.h ..\..\..\build\include\cantera\kernel -copy LiquidTransport.h ..\..\..\build\include\cantera\kernel -copy LiquidTransportParams.h ..\..\..\build\include\cantera\kernel -copy MixTransport.h ..\..\..\build\include\cantera\kernel -copy MMCollisionInt.h ..\..\..\build\include\cantera\kernel -copy MultiTransport.h ..\..\..\build\include\cantera\kernel -copy SolidTransport.h ..\..\..\build\include\cantera\kernel -copy TransportBase.h ..\..\..\build\include\cantera\kernel -copy TransportFactory.h ..\..\..\build\include\cantera\kernel -copy TransportParams.h ..\..\..\build\include\cantera\kernel - -cd ..\..\..\win32\vc9\transp~1 -echo off -echo 'ok' > status diff --git a/win32/vc9/transport/transport.vcproj b/win32/vc9/transport/transport.vcproj deleted file mode 100755 index af5a80505..000000000 --- a/win32/vc9/transport/transport.vcproj +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vc9/zeroD/docopy.cmd b/win32/vc9/zeroD/docopy.cmd deleted file mode 100755 index 71e78dcf7..000000000 --- a/win32/vc9/zeroD/docopy.cmd +++ /dev/null @@ -1,22 +0,0 @@ -REM echo on -cd ..\..\..\ - -if not exist build\include\cantera\kernel mkdir build\include\cantera\kernel - -cd Cantera\src\zeroD - -copy ConstPressureReactor.h ..\..\..\build\include\cantera\kernel -copy flowControllers.h ..\..\..\build\include\cantera\kernel -copy FlowDevice.h ..\..\..\build\include\cantera\kernel -copy FlowReactor.h ..\..\..\build\include\cantera\kernel -copy PID_Controller.h ..\..\..\build\include\cantera\kernel -copy Reactor.h ..\..\..\build\include\cantera\kernel -copy ReactorBase.h ..\..\..\build\include\cantera\kernel -copy ReactorFactory.h ..\..\..\build\include\cantera\kernel -copy ReactorNet.h ..\..\..\build\include\cantera\kernel -copy Reservoir.h ..\..\..\build\include\cantera\kernel -copy Wall.h ..\..\..\build\include\cantera\kernel - -cd ..\..\..\win32\vc9\zeroD -REM echo off -echo 'ok' diff --git a/win32/vc9/zeroD/zeroD.vcproj b/win32/vc9/zeroD/zeroD.vcproj deleted file mode 100755 index 97c27ec26..000000000 --- a/win32/vc9/zeroD/zeroD.vcproj +++ /dev/null @@ -1,325 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From eaeb49c22e3e8a30db78a2d11e31237c8d1f1b9c Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Sat, 4 Feb 2012 00:23:34 +0000 Subject: [PATCH 073/124] [cantera]: back to where we started --- Cantera/cxx/include/Cantera.h | 14 +++++++------- Cantera/ext/f2c_libs/Makefile.am | 12 +++++++----- Cantera/src/thermo/Makefile.am | 2 +- test_problems/cathermo/DH_graph_1/DH_graph_1.cpp | 5 ++--- test_problems/cathermo/DH_graph_1/Makefile.am | 2 +- 5 files changed, 18 insertions(+), 17 deletions(-) diff --git a/Cantera/cxx/include/Cantera.h b/Cantera/cxx/include/Cantera.h index 0093fe998..e4ef71e45 100755 --- a/Cantera/cxx/include/Cantera.h +++ b/Cantera/cxx/include/Cantera.h @@ -23,28 +23,28 @@ namespace Cantera_CXX{ } using namespace Cantera_CXX; -#include "kernel/ct_defs.h" +#include "ct_defs.h" // some useful functions -#include "kernel/global.h" +#include "global.h" // the CanteraError exception class -#include "kernel/ctexceptions.h" +#include "ctexceptions.h" // //#include "kernel/importCTML.h" // The Cantera logger class -#include "kernel/logger.h" +#include "logger.h" // Include the timer -#include "kernel/clockWC.h" +#include "clockWC.h" // Include routines for reading and writing XML files -#include "kernel/xml.h" +#include "xml.h" // Include string utility routines -#include "kernel/stringUtils.h" +#include "stringUtils.h" #endif diff --git a/Cantera/ext/f2c_libs/Makefile.am b/Cantera/ext/f2c_libs/Makefile.am index 85adc430b..3f3bef961 100644 --- a/Cantera/ext/f2c_libs/Makefile.am +++ b/Cantera/ext/f2c_libs/Makefile.am @@ -49,13 +49,15 @@ library_include_HEADERS = $(h_sources) # Cantera Converters C/C++ library #----------------------- -__top_builddir__build_lib_libctf2c_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -__top_builddir__build_lib_libctf2c_la_SOURCES = $(cc_sources) $(h_sources) - -CLEANFILES = *.o - # header file accumulation all: @echo copying headers $< cp sysdep1.h0 sysdep1.h + cp signal1.h0 signal1.h cp $(h_sources) $(top_builddir)/build/include/ + + +__top_builddir__build_lib_libctf2c_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) +__top_builddir__build_lib_libctf2c_la_SOURCES = $(cc_sources) $(h_sources) + +CLEANFILES = *.o diff --git a/Cantera/src/thermo/Makefile.am b/Cantera/src/thermo/Makefile.am index 13a5076dc..d8fdb1c63 100644 --- a/Cantera/src/thermo/Makefile.am +++ b/Cantera/src/thermo/Makefile.am @@ -19,7 +19,7 @@ h_sources = State.h Elements.h Constituents.h Phase.h mix_defs.h \ PDSS.h HMWSoln.h WaterSSTP.h MetalSHEelectrons.h \ IdealSolidSolnPhase.h StoichSubstanceSSTP.h \ SingleSpeciesTP.h MineralEQ3.h PseudoBinaryVPSSTP.h \ - MargulesVPSSTP.h StoichSubstance.h + MargulesVPSSTP.h StoichSubstance.h electrolytes.h cc_sources = State.cpp Elements.cpp Constituents.cpp Phase.cpp \ ThermoPhase.cpp IdealGasPhase.cpp ConstDensityThermo.cpp \ diff --git a/test_problems/cathermo/DH_graph_1/DH_graph_1.cpp b/test_problems/cathermo/DH_graph_1/DH_graph_1.cpp index f20d4f373..00000ab0f 100644 --- a/test_problems/cathermo/DH_graph_1/DH_graph_1.cpp +++ b/test_problems/cathermo/DH_graph_1/DH_graph_1.cpp @@ -15,10 +15,9 @@ #include "DebyeHuckel.h" #else #include "Cantera.h" -#include "kernel/logger.h" -#include "kernel/DebyeHuckel.h" +#include "logger.h" +#include "DebyeHuckel.h" #endif - #include using namespace std; diff --git a/test_problems/cathermo/DH_graph_1/Makefile.am b/test_problems/cathermo/DH_graph_1/Makefile.am index c0c7269d1..7a05008fd 100644 --- a/test_problems/cathermo/DH_graph_1/Makefile.am +++ b/test_problems/cathermo/DH_graph_1/Makefile.am @@ -1,6 +1,6 @@ cc_sources = DH_graph_1.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I. -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) From cf336ff3050ab3605f10388ddaa33405dd19e814 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Sat, 4 Feb 2012 00:36:22 +0000 Subject: [PATCH 074/124] [cantera]: removing deprecated blas dir --- Cantera/ext/blas/Makefile.am | 24 --- Cantera/ext/blas/dasum.f | 43 ---- Cantera/ext/blas/daxpy.f | 48 ----- Cantera/ext/blas/dcabs1.f | 8 - Cantera/ext/blas/dcopy.f | 50 ----- Cantera/ext/blas/ddot.f | 49 ----- Cantera/ext/blas/dgbmv.f | 300 --------------------------- Cantera/ext/blas/dgemm.f | 313 ---------------------------- Cantera/ext/blas/dgemv.f | 261 ----------------------- Cantera/ext/blas/dger.f | 157 -------------- Cantera/ext/blas/dnrm2.f | 60 ------ Cantera/ext/blas/drot.f | 37 ---- Cantera/ext/blas/drotg.f | 27 --- Cantera/ext/blas/drotm.f | 108 ---------- Cantera/ext/blas/drotmg.f | 169 --------------- Cantera/ext/blas/dsbmv.f | 303 --------------------------- Cantera/ext/blas/dscal.f | 43 ---- Cantera/ext/blas/dsdot.f | 74 ------- Cantera/ext/blas/dspmv.f | 262 ----------------------- Cantera/ext/blas/dspr.f | 198 ------------------ Cantera/ext/blas/dspr2.f | 229 -------------------- Cantera/ext/blas/dswap.f | 56 ----- Cantera/ext/blas/dsymm.f | 294 -------------------------- Cantera/ext/blas/dsymv.f | 262 ----------------------- Cantera/ext/blas/dsyr.f | 197 ------------------ Cantera/ext/blas/dsyr2.f | 230 --------------------- Cantera/ext/blas/dsyr2k.f | 327 ----------------------------- Cantera/ext/blas/dsyrk.f | 294 -------------------------- Cantera/ext/blas/dtbmv.f | 342 ------------------------------ Cantera/ext/blas/dtbsv.f | 346 ------------------------------- Cantera/ext/blas/dtpmv.f | 299 --------------------------- Cantera/ext/blas/dtpsv.f | 302 --------------------------- Cantera/ext/blas/dtrmm.f | 355 ------------------------------- Cantera/ext/blas/dtrmv.f | 286 ------------------------- Cantera/ext/blas/dtrsm.f | 378 ---------------------------------- Cantera/ext/blas/dtrsv.f | 289 -------------------------- Cantera/ext/blas/dzasum.f | 34 --- Cantera/ext/blas/dznrm2.f | 67 ------ Cantera/ext/blas/icamax.f | 43 ---- Cantera/ext/blas/idamax.f | 39 ---- Cantera/ext/blas/isamax.f | 39 ---- Cantera/ext/blas/izamax.f | 41 ---- Cantera/ext/blas/lsame.f | 87 -------- Cantera/ext/blas/xerbla.f | 43 ---- Cantera/ext/cvode/Makefile.am | 5 + 45 files changed, 5 insertions(+), 7413 deletions(-) delete mode 100644 Cantera/ext/blas/Makefile.am delete mode 100755 Cantera/ext/blas/dasum.f delete mode 100755 Cantera/ext/blas/daxpy.f delete mode 100755 Cantera/ext/blas/dcabs1.f delete mode 100755 Cantera/ext/blas/dcopy.f delete mode 100755 Cantera/ext/blas/ddot.f delete mode 100755 Cantera/ext/blas/dgbmv.f delete mode 100755 Cantera/ext/blas/dgemm.f delete mode 100755 Cantera/ext/blas/dgemv.f delete mode 100755 Cantera/ext/blas/dger.f delete mode 100755 Cantera/ext/blas/dnrm2.f delete mode 100755 Cantera/ext/blas/drot.f delete mode 100755 Cantera/ext/blas/drotg.f delete mode 100755 Cantera/ext/blas/drotm.f delete mode 100755 Cantera/ext/blas/drotmg.f delete mode 100755 Cantera/ext/blas/dsbmv.f delete mode 100755 Cantera/ext/blas/dscal.f delete mode 100755 Cantera/ext/blas/dsdot.f delete mode 100755 Cantera/ext/blas/dspmv.f delete mode 100755 Cantera/ext/blas/dspr.f delete mode 100755 Cantera/ext/blas/dspr2.f delete mode 100755 Cantera/ext/blas/dswap.f delete mode 100755 Cantera/ext/blas/dsymm.f delete mode 100755 Cantera/ext/blas/dsymv.f delete mode 100755 Cantera/ext/blas/dsyr.f delete mode 100755 Cantera/ext/blas/dsyr2.f delete mode 100755 Cantera/ext/blas/dsyr2k.f delete mode 100755 Cantera/ext/blas/dsyrk.f delete mode 100755 Cantera/ext/blas/dtbmv.f delete mode 100755 Cantera/ext/blas/dtbsv.f delete mode 100755 Cantera/ext/blas/dtpmv.f delete mode 100755 Cantera/ext/blas/dtpsv.f delete mode 100755 Cantera/ext/blas/dtrmm.f delete mode 100755 Cantera/ext/blas/dtrmv.f delete mode 100755 Cantera/ext/blas/dtrsm.f delete mode 100755 Cantera/ext/blas/dtrsv.f delete mode 100755 Cantera/ext/blas/dzasum.f delete mode 100755 Cantera/ext/blas/dznrm2.f delete mode 100755 Cantera/ext/blas/icamax.f delete mode 100755 Cantera/ext/blas/idamax.f delete mode 100755 Cantera/ext/blas/isamax.f delete mode 100755 Cantera/ext/blas/izamax.f delete mode 100755 Cantera/ext/blas/lsame.f delete mode 100755 Cantera/ext/blas/xerbla.f diff --git a/Cantera/ext/blas/Makefile.am b/Cantera/ext/blas/Makefile.am deleted file mode 100644 index 77ebce8b8..000000000 --- a/Cantera/ext/blas/Makefile.am +++ /dev/null @@ -1,24 +0,0 @@ -fc_sources = dasum.f dcabs1.f ddot.f dgemm.f dger.f drot.f drotm.f \ - dsbmv.f dsdot.f dspr2.f dswap.f dsymv.f dsyr2k.f \ - dsyrk.f dtbsv.f dtpsv.f dtrmv.f dtrsv.f dznrm2.f \ - idamax.f izamax.f xerbla.f daxpy.f dcopy.f dgbmv.f \ - dgemv.f dnrm2.f drotg.f drotmg.f dscal.f dspmv.f \ - dspr.f dsymm.f dsyr2.f dsyr.f dtbmv.f dtpmv.f dtrmm.f \ - dtrsm.f dzasum.f icamax.f isamax.f lsame.f - -AM_CPPFLAGS = -AM_CXXFLAGS = $(AM_CPPFLAGS) -AM_FCFLAGS = $(AM_CPPFLAGS) - -lib_LTLIBRARIES = $(top_builddir)/build/lib/libctblas.la -library_includedir = $(top_builddir)/build/include -library_include_HEADERS = $(h_sources) - -#----------------------- -# Cantera Converters C/C++ library -#----------------------- - -__top_builddir__build_lib_libctblas_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -__top_builddir__build_lib_libctblas_la_SOURCES = $(fc_sources) $(cc_sources) - -CLEANFILES = *.o diff --git a/Cantera/ext/blas/dasum.f b/Cantera/ext/blas/dasum.f deleted file mode 100755 index 28b128a84..000000000 --- a/Cantera/ext/blas/dasum.f +++ /dev/null @@ -1,43 +0,0 @@ - double precision function dasum(n,dx,incx) -c -c takes the sum of the absolute values. -c jack dongarra, linpack, 3/11/78. -c modified 3/93 to return if incx .le. 0. -c modified 12/3/93, array(1) declarations changed to array(*) -c - double precision dx(*),dtemp - integer i,incx,m,mp1,n,nincx -c - dasum = 0.0d0 - dtemp = 0.0d0 - if( n.le.0 .or. incx.le.0 )return - if(incx.eq.1)go to 20 -c -c code for increment not equal to 1 -c - nincx = n*incx - do 10 i = 1,nincx,incx - dtemp = dtemp + dabs(dx(i)) - 10 continue - dasum = dtemp - return -c -c code for increment equal to 1 -c -c -c clean-up loop -c - 20 m = mod(n,6) - if( m .eq. 0 ) go to 40 - do 30 i = 1,m - dtemp = dtemp + dabs(dx(i)) - 30 continue - if( n .lt. 6 ) go to 60 - 40 mp1 = m + 1 - do 50 i = mp1,n,6 - dtemp = dtemp + dabs(dx(i)) + dabs(dx(i + 1)) + dabs(dx(i + 2)) - * + dabs(dx(i + 3)) + dabs(dx(i + 4)) + dabs(dx(i + 5)) - 50 continue - 60 dasum = dtemp - return - end diff --git a/Cantera/ext/blas/daxpy.f b/Cantera/ext/blas/daxpy.f deleted file mode 100755 index 91daa3c64..000000000 --- a/Cantera/ext/blas/daxpy.f +++ /dev/null @@ -1,48 +0,0 @@ - subroutine daxpy(n,da,dx,incx,dy,incy) -c -c constant times a vector plus a vector. -c uses unrolled loops for increments equal to one. -c jack dongarra, linpack, 3/11/78. -c modified 12/3/93, array(1) declarations changed to array(*) -c - double precision dx(*),dy(*),da - integer i,incx,incy,ix,iy,m,mp1,n -c - if(n.le.0)return - if (da .eq. 0.0d0) return - if(incx.eq.1.and.incy.eq.1)go to 20 -c -c code for unequal increments or equal increments -c not equal to 1 -c - ix = 1 - iy = 1 - if(incx.lt.0)ix = (-n+1)*incx + 1 - if(incy.lt.0)iy = (-n+1)*incy + 1 - do 10 i = 1,n - dy(iy) = dy(iy) + da*dx(ix) - ix = ix + incx - iy = iy + incy - 10 continue - return -c -c code for both increments equal to 1 -c -c -c clean-up loop -c - 20 m = mod(n,4) - if( m .eq. 0 ) go to 40 - do 30 i = 1,m - dy(i) = dy(i) + da*dx(i) - 30 continue - if( n .lt. 4 ) return - 40 mp1 = m + 1 - do 50 i = mp1,n,4 - dy(i) = dy(i) + da*dx(i) - dy(i + 1) = dy(i + 1) + da*dx(i + 1) - dy(i + 2) = dy(i + 2) + da*dx(i + 2) - dy(i + 3) = dy(i + 3) + da*dx(i + 3) - 50 continue - return - end diff --git a/Cantera/ext/blas/dcabs1.f b/Cantera/ext/blas/dcabs1.f deleted file mode 100755 index 385ea5e1a..000000000 --- a/Cantera/ext/blas/dcabs1.f +++ /dev/null @@ -1,8 +0,0 @@ - double precision function dcabs1(z) - double complex z,zz - double precision t(2) - equivalence (zz,t(1)) - zz = z - dcabs1 = dabs(t(1)) + dabs(t(2)) - return - end diff --git a/Cantera/ext/blas/dcopy.f b/Cantera/ext/blas/dcopy.f deleted file mode 100755 index e16892716..000000000 --- a/Cantera/ext/blas/dcopy.f +++ /dev/null @@ -1,50 +0,0 @@ - subroutine dcopy(n,dx,incx,dy,incy) -c -c copies a vector, x, to a vector, y. -c uses unrolled loops for increments equal to one. -c jack dongarra, linpack, 3/11/78. -c modified 12/3/93, array(1) declarations changed to array(*) -c - double precision dx(*),dy(*) - integer i,incx,incy,ix,iy,m,mp1,n -c - if(n.le.0)return - if(incx.eq.1.and.incy.eq.1)go to 20 -c -c code for unequal increments or equal increments -c not equal to 1 -c - ix = 1 - iy = 1 - if(incx.lt.0)ix = (-n+1)*incx + 1 - if(incy.lt.0)iy = (-n+1)*incy + 1 - do 10 i = 1,n - dy(iy) = dx(ix) - ix = ix + incx - iy = iy + incy - 10 continue - return -c -c code for both increments equal to 1 -c -c -c clean-up loop -c - 20 m = mod(n,7) - if( m .eq. 0 ) go to 40 - do 30 i = 1,m - dy(i) = dx(i) - 30 continue - if( n .lt. 7 ) return - 40 mp1 = m + 1 - do 50 i = mp1,n,7 - dy(i) = dx(i) - dy(i + 1) = dx(i + 1) - dy(i + 2) = dx(i + 2) - dy(i + 3) = dx(i + 3) - dy(i + 4) = dx(i + 4) - dy(i + 5) = dx(i + 5) - dy(i + 6) = dx(i + 6) - 50 continue - return - end diff --git a/Cantera/ext/blas/ddot.f b/Cantera/ext/blas/ddot.f deleted file mode 100755 index e04c7c25e..000000000 --- a/Cantera/ext/blas/ddot.f +++ /dev/null @@ -1,49 +0,0 @@ - double precision function ddot(n,dx,incx,dy,incy) -c -c forms the dot product of two vectors. -c uses unrolled loops for increments equal to one. -c jack dongarra, linpack, 3/11/78. -c modified 12/3/93, array(1) declarations changed to array(*) -c - double precision dx(*),dy(*),dtemp - integer i,incx,incy,ix,iy,m,mp1,n -c - ddot = 0.0d0 - dtemp = 0.0d0 - if(n.le.0)return - if(incx.eq.1.and.incy.eq.1)go to 20 -c -c code for unequal increments or equal increments -c not equal to 1 -c - ix = 1 - iy = 1 - if(incx.lt.0)ix = (-n+1)*incx + 1 - if(incy.lt.0)iy = (-n+1)*incy + 1 - do 10 i = 1,n - dtemp = dtemp + dx(ix)*dy(iy) - ix = ix + incx - iy = iy + incy - 10 continue - ddot = dtemp - return -c -c code for both increments equal to 1 -c -c -c clean-up loop -c - 20 m = mod(n,5) - if( m .eq. 0 ) go to 40 - do 30 i = 1,m - dtemp = dtemp + dx(i)*dy(i) - 30 continue - if( n .lt. 5 ) go to 60 - 40 mp1 = m + 1 - do 50 i = mp1,n,5 - dtemp = dtemp + dx(i)*dy(i) + dx(i + 1)*dy(i + 1) + - * dx(i + 2)*dy(i + 2) + dx(i + 3)*dy(i + 3) + dx(i + 4)*dy(i + 4) - 50 continue - 60 ddot = dtemp - return - end diff --git a/Cantera/ext/blas/dgbmv.f b/Cantera/ext/blas/dgbmv.f deleted file mode 100755 index e9c8f76fb..000000000 --- a/Cantera/ext/blas/dgbmv.f +++ /dev/null @@ -1,300 +0,0 @@ - SUBROUTINE DGBMV ( TRANS, M, N, KL, KU, ALPHA, A, LDA, X, INCX, - $ BETA, Y, INCY ) -* .. Scalar Arguments .. - DOUBLE PRECISION ALPHA, BETA - INTEGER INCX, INCY, KL, KU, LDA, M, N - CHARACTER*1 TRANS -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), X( * ), Y( * ) -* .. -* -* Purpose -* ======= -* -* DGBMV performs one of the matrix-vector operations -* -* y := alpha*A*x + beta*y, or y := alpha*A'*x + beta*y, -* -* where alpha and beta are scalars, x and y are vectors and A is an -* m by n band matrix, with kl sub-diagonals and ku super-diagonals. -* -* Parameters -* ========== -* -* TRANS - CHARACTER*1. -* On entry, TRANS specifies the operation to be performed as -* follows: -* -* TRANS = 'N' or 'n' y := alpha*A*x + beta*y. -* -* TRANS = 'T' or 't' y := alpha*A'*x + beta*y. -* -* TRANS = 'C' or 'c' y := alpha*A'*x + beta*y. -* -* Unchanged on exit. -* -* M - INTEGER. -* On entry, M specifies the number of rows of the matrix A. -* M must be at least zero. -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the number of columns of the matrix A. -* N must be at least zero. -* Unchanged on exit. -* -* KL - INTEGER. -* On entry, KL specifies the number of sub-diagonals of the -* matrix A. KL must satisfy 0 .le. KL. -* Unchanged on exit. -* -* KU - INTEGER. -* On entry, KU specifies the number of super-diagonals of the -* matrix A. KU must satisfy 0 .le. KU. -* Unchanged on exit. -* -* ALPHA - DOUBLE PRECISION. -* On entry, ALPHA specifies the scalar alpha. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, n ). -* Before entry, the leading ( kl + ku + 1 ) by n part of the -* array A must contain the matrix of coefficients, supplied -* column by column, with the leading diagonal of the matrix in -* row ( ku + 1 ) of the array, the first super-diagonal -* starting at position 2 in row ku, the first sub-diagonal -* starting at position 1 in row ( ku + 2 ), and so on. -* Elements in the array A that do not correspond to elements -* in the band matrix (such as the top left ku by ku triangle) -* are not referenced. -* The following program segment will transfer a band matrix -* from conventional full matrix storage to band storage: -* -* DO 20, J = 1, N -* K = KU + 1 - J -* DO 10, I = MAX( 1, J - KU ), MIN( M, J + KL ) -* A( K + I, J ) = matrix( I, J ) -* 10 CONTINUE -* 20 CONTINUE -* -* Unchanged on exit. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. LDA must be at least -* ( kl + ku + 1 ). -* Unchanged on exit. -* -* X - DOUBLE PRECISION array of DIMENSION at least -* ( 1 + ( n - 1 )*abs( INCX ) ) when TRANS = 'N' or 'n' -* and at least -* ( 1 + ( m - 1 )*abs( INCX ) ) otherwise. -* Before entry, the incremented array X must contain the -* vector x. -* Unchanged on exit. -* -* INCX - INTEGER. -* On entry, INCX specifies the increment for the elements of -* X. INCX must not be zero. -* Unchanged on exit. -* -* BETA - DOUBLE PRECISION. -* On entry, BETA specifies the scalar beta. When BETA is -* supplied as zero then Y need not be set on input. -* Unchanged on exit. -* -* Y - DOUBLE PRECISION array of DIMENSION at least -* ( 1 + ( m - 1 )*abs( INCY ) ) when TRANS = 'N' or 'n' -* and at least -* ( 1 + ( n - 1 )*abs( INCY ) ) otherwise. -* Before entry, the incremented array Y must contain the -* vector y. On exit, Y is overwritten by the updated vector y. -* -* INCY - INTEGER. -* On entry, INCY specifies the increment for the elements of -* Y. INCY must not be zero. -* Unchanged on exit. -* -* -* Level 2 Blas routine. -* -* -- Written on 22-October-1986. -* Jack Dongarra, Argonne National Lab. -* Jeremy Du Croz, Nag Central Office. -* Sven Hammarling, Nag Central Office. -* Richard Hanson, Sandia National Labs. -* -* .. Parameters .. - DOUBLE PRECISION ONE , ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. Local Scalars .. - DOUBLE PRECISION TEMP - INTEGER I, INFO, IX, IY, J, JX, JY, K, KUP1, KX, KY, - $ LENX, LENY -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF ( .NOT.LSAME( TRANS, 'N' ).AND. - $ .NOT.LSAME( TRANS, 'T' ).AND. - $ .NOT.LSAME( TRANS, 'C' ) )THEN - INFO = 1 - ELSE IF( M.LT.0 )THEN - INFO = 2 - ELSE IF( N.LT.0 )THEN - INFO = 3 - ELSE IF( KL.LT.0 )THEN - INFO = 4 - ELSE IF( KU.LT.0 )THEN - INFO = 5 - ELSE IF( LDA.LT.( KL + KU + 1 ) )THEN - INFO = 8 - ELSE IF( INCX.EQ.0 )THEN - INFO = 10 - ELSE IF( INCY.EQ.0 )THEN - INFO = 13 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DGBMV ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( ( M.EQ.0 ).OR.( N.EQ.0 ).OR. - $ ( ( ALPHA.EQ.ZERO ).AND.( BETA.EQ.ONE ) ) ) - $ RETURN -* -* Set LENX and LENY, the lengths of the vectors x and y, and set -* up the start points in X and Y. -* - IF( LSAME( TRANS, 'N' ) )THEN - LENX = N - LENY = M - ELSE - LENX = M - LENY = N - END IF - IF( INCX.GT.0 )THEN - KX = 1 - ELSE - KX = 1 - ( LENX - 1 )*INCX - END IF - IF( INCY.GT.0 )THEN - KY = 1 - ELSE - KY = 1 - ( LENY - 1 )*INCY - END IF -* -* Start the operations. In this version the elements of A are -* accessed sequentially with one pass through the band part of A. -* -* First form y := beta*y. -* - IF( BETA.NE.ONE )THEN - IF( INCY.EQ.1 )THEN - IF( BETA.EQ.ZERO )THEN - DO 10, I = 1, LENY - Y( I ) = ZERO - 10 CONTINUE - ELSE - DO 20, I = 1, LENY - Y( I ) = BETA*Y( I ) - 20 CONTINUE - END IF - ELSE - IY = KY - IF( BETA.EQ.ZERO )THEN - DO 30, I = 1, LENY - Y( IY ) = ZERO - IY = IY + INCY - 30 CONTINUE - ELSE - DO 40, I = 1, LENY - Y( IY ) = BETA*Y( IY ) - IY = IY + INCY - 40 CONTINUE - END IF - END IF - END IF - IF( ALPHA.EQ.ZERO ) - $ RETURN - KUP1 = KU + 1 - IF( LSAME( TRANS, 'N' ) )THEN -* -* Form y := alpha*A*x + y. -* - JX = KX - IF( INCY.EQ.1 )THEN - DO 60, J = 1, N - IF( X( JX ).NE.ZERO )THEN - TEMP = ALPHA*X( JX ) - K = KUP1 - J - DO 50, I = MAX( 1, J - KU ), MIN( M, J + KL ) - Y( I ) = Y( I ) + TEMP*A( K + I, J ) - 50 CONTINUE - END IF - JX = JX + INCX - 60 CONTINUE - ELSE - DO 80, J = 1, N - IF( X( JX ).NE.ZERO )THEN - TEMP = ALPHA*X( JX ) - IY = KY - K = KUP1 - J - DO 70, I = MAX( 1, J - KU ), MIN( M, J + KL ) - Y( IY ) = Y( IY ) + TEMP*A( K + I, J ) - IY = IY + INCY - 70 CONTINUE - END IF - JX = JX + INCX - IF( J.GT.KU ) - $ KY = KY + INCY - 80 CONTINUE - END IF - ELSE -* -* Form y := alpha*A'*x + y. -* - JY = KY - IF( INCX.EQ.1 )THEN - DO 100, J = 1, N - TEMP = ZERO - K = KUP1 - J - DO 90, I = MAX( 1, J - KU ), MIN( M, J + KL ) - TEMP = TEMP + A( K + I, J )*X( I ) - 90 CONTINUE - Y( JY ) = Y( JY ) + ALPHA*TEMP - JY = JY + INCY - 100 CONTINUE - ELSE - DO 120, J = 1, N - TEMP = ZERO - IX = KX - K = KUP1 - J - DO 110, I = MAX( 1, J - KU ), MIN( M, J + KL ) - TEMP = TEMP + A( K + I, J )*X( IX ) - IX = IX + INCX - 110 CONTINUE - Y( JY ) = Y( JY ) + ALPHA*TEMP - JY = JY + INCY - IF( J.GT.KU ) - $ KX = KX + INCX - 120 CONTINUE - END IF - END IF -* - RETURN -* -* End of DGBMV . -* - END diff --git a/Cantera/ext/blas/dgemm.f b/Cantera/ext/blas/dgemm.f deleted file mode 100755 index baabe4c52..000000000 --- a/Cantera/ext/blas/dgemm.f +++ /dev/null @@ -1,313 +0,0 @@ - SUBROUTINE DGEMM ( TRANSA, TRANSB, M, N, K, ALPHA, A, LDA, B, LDB, - $ BETA, C, LDC ) -* .. Scalar Arguments .. - CHARACTER*1 TRANSA, TRANSB - INTEGER M, N, K, LDA, LDB, LDC - DOUBLE PRECISION ALPHA, BETA -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), B( LDB, * ), C( LDC, * ) -* .. -* -* Purpose -* ======= -* -* DGEMM performs one of the matrix-matrix operations -* -* C := alpha*op( A )*op( B ) + beta*C, -* -* where op( X ) is one of -* -* op( X ) = X or op( X ) = X', -* -* alpha and beta are scalars, and A, B and C are matrices, with op( A ) -* an m by k matrix, op( B ) a k by n matrix and C an m by n matrix. -* -* Parameters -* ========== -* -* TRANSA - CHARACTER*1. -* On entry, TRANSA specifies the form of op( A ) to be used in -* the matrix multiplication as follows: -* -* TRANSA = 'N' or 'n', op( A ) = A. -* -* TRANSA = 'T' or 't', op( A ) = A'. -* -* TRANSA = 'C' or 'c', op( A ) = A'. -* -* Unchanged on exit. -* -* TRANSB - CHARACTER*1. -* On entry, TRANSB specifies the form of op( B ) to be used in -* the matrix multiplication as follows: -* -* TRANSB = 'N' or 'n', op( B ) = B. -* -* TRANSB = 'T' or 't', op( B ) = B'. -* -* TRANSB = 'C' or 'c', op( B ) = B'. -* -* Unchanged on exit. -* -* M - INTEGER. -* On entry, M specifies the number of rows of the matrix -* op( A ) and of the matrix C. M must be at least zero. -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the number of columns of the matrix -* op( B ) and the number of columns of the matrix C. N must be -* at least zero. -* Unchanged on exit. -* -* K - INTEGER. -* On entry, K specifies the number of columns of the matrix -* op( A ) and the number of rows of the matrix op( B ). K must -* be at least zero. -* Unchanged on exit. -* -* ALPHA - DOUBLE PRECISION. -* On entry, ALPHA specifies the scalar alpha. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, ka ), where ka is -* k when TRANSA = 'N' or 'n', and is m otherwise. -* Before entry with TRANSA = 'N' or 'n', the leading m by k -* part of the array A must contain the matrix A, otherwise -* the leading k by m part of the array A must contain the -* matrix A. -* Unchanged on exit. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. When TRANSA = 'N' or 'n' then -* LDA must be at least max( 1, m ), otherwise LDA must be at -* least max( 1, k ). -* Unchanged on exit. -* -* B - DOUBLE PRECISION array of DIMENSION ( LDB, kb ), where kb is -* n when TRANSB = 'N' or 'n', and is k otherwise. -* Before entry with TRANSB = 'N' or 'n', the leading k by n -* part of the array B must contain the matrix B, otherwise -* the leading n by k part of the array B must contain the -* matrix B. -* Unchanged on exit. -* -* LDB - INTEGER. -* On entry, LDB specifies the first dimension of B as declared -* in the calling (sub) program. When TRANSB = 'N' or 'n' then -* LDB must be at least max( 1, k ), otherwise LDB must be at -* least max( 1, n ). -* Unchanged on exit. -* -* BETA - DOUBLE PRECISION. -* On entry, BETA specifies the scalar beta. When BETA is -* supplied as zero then C need not be set on input. -* Unchanged on exit. -* -* C - DOUBLE PRECISION array of DIMENSION ( LDC, n ). -* Before entry, the leading m by n part of the array C must -* contain the matrix C, except when beta is zero, in which -* case C need not be set on entry. -* On exit, the array C is overwritten by the m by n matrix -* ( alpha*op( A )*op( B ) + beta*C ). -* -* LDC - INTEGER. -* On entry, LDC specifies the first dimension of C as declared -* in the calling (sub) program. LDC must be at least -* max( 1, m ). -* Unchanged on exit. -* -* -* Level 3 Blas routine. -* -* -- Written on 8-February-1989. -* Jack Dongarra, Argonne National Laboratory. -* Iain Duff, AERE Harwell. -* Jeremy Du Croz, Numerical Algorithms Group Ltd. -* Sven Hammarling, Numerical Algorithms Group Ltd. -* -* -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. Local Scalars .. - LOGICAL NOTA, NOTB - INTEGER I, INFO, J, L, NCOLA, NROWA, NROWB - DOUBLE PRECISION TEMP -* .. Parameters .. - DOUBLE PRECISION ONE , ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Executable Statements .. -* -* Set NOTA and NOTB as true if A and B respectively are not -* transposed and set NROWA, NCOLA and NROWB as the number of rows -* and columns of A and the number of rows of B respectively. -* - NOTA = LSAME( TRANSA, 'N' ) - NOTB = LSAME( TRANSB, 'N' ) - IF( NOTA )THEN - NROWA = M - NCOLA = K - ELSE - NROWA = K - NCOLA = M - END IF - IF( NOTB )THEN - NROWB = K - ELSE - NROWB = N - END IF -* -* Test the input parameters. -* - INFO = 0 - IF( ( .NOT.NOTA ).AND. - $ ( .NOT.LSAME( TRANSA, 'C' ) ).AND. - $ ( .NOT.LSAME( TRANSA, 'T' ) ) )THEN - INFO = 1 - ELSE IF( ( .NOT.NOTB ).AND. - $ ( .NOT.LSAME( TRANSB, 'C' ) ).AND. - $ ( .NOT.LSAME( TRANSB, 'T' ) ) )THEN - INFO = 2 - ELSE IF( M .LT.0 )THEN - INFO = 3 - ELSE IF( N .LT.0 )THEN - INFO = 4 - ELSE IF( K .LT.0 )THEN - INFO = 5 - ELSE IF( LDA.LT.MAX( 1, NROWA ) )THEN - INFO = 8 - ELSE IF( LDB.LT.MAX( 1, NROWB ) )THEN - INFO = 10 - ELSE IF( LDC.LT.MAX( 1, M ) )THEN - INFO = 13 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DGEMM ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( ( M.EQ.0 ).OR.( N.EQ.0 ).OR. - $ ( ( ( ALPHA.EQ.ZERO ).OR.( K.EQ.0 ) ).AND.( BETA.EQ.ONE ) ) ) - $ RETURN -* -* And if alpha.eq.zero. -* - IF( ALPHA.EQ.ZERO )THEN - IF( BETA.EQ.ZERO )THEN - DO 20, J = 1, N - DO 10, I = 1, M - C( I, J ) = ZERO - 10 CONTINUE - 20 CONTINUE - ELSE - DO 40, J = 1, N - DO 30, I = 1, M - C( I, J ) = BETA*C( I, J ) - 30 CONTINUE - 40 CONTINUE - END IF - RETURN - END IF -* -* Start the operations. -* - IF( NOTB )THEN - IF( NOTA )THEN -* -* Form C := alpha*A*B + beta*C. -* - DO 90, J = 1, N - IF( BETA.EQ.ZERO )THEN - DO 50, I = 1, M - C( I, J ) = ZERO - 50 CONTINUE - ELSE IF( BETA.NE.ONE )THEN - DO 60, I = 1, M - C( I, J ) = BETA*C( I, J ) - 60 CONTINUE - END IF - DO 80, L = 1, K - IF( B( L, J ).NE.ZERO )THEN - TEMP = ALPHA*B( L, J ) - DO 70, I = 1, M - C( I, J ) = C( I, J ) + TEMP*A( I, L ) - 70 CONTINUE - END IF - 80 CONTINUE - 90 CONTINUE - ELSE -* -* Form C := alpha*A'*B + beta*C -* - DO 120, J = 1, N - DO 110, I = 1, M - TEMP = ZERO - DO 100, L = 1, K - TEMP = TEMP + A( L, I )*B( L, J ) - 100 CONTINUE - IF( BETA.EQ.ZERO )THEN - C( I, J ) = ALPHA*TEMP - ELSE - C( I, J ) = ALPHA*TEMP + BETA*C( I, J ) - END IF - 110 CONTINUE - 120 CONTINUE - END IF - ELSE - IF( NOTA )THEN -* -* Form C := alpha*A*B' + beta*C -* - DO 170, J = 1, N - IF( BETA.EQ.ZERO )THEN - DO 130, I = 1, M - C( I, J ) = ZERO - 130 CONTINUE - ELSE IF( BETA.NE.ONE )THEN - DO 140, I = 1, M - C( I, J ) = BETA*C( I, J ) - 140 CONTINUE - END IF - DO 160, L = 1, K - IF( B( J, L ).NE.ZERO )THEN - TEMP = ALPHA*B( J, L ) - DO 150, I = 1, M - C( I, J ) = C( I, J ) + TEMP*A( I, L ) - 150 CONTINUE - END IF - 160 CONTINUE - 170 CONTINUE - ELSE -* -* Form C := alpha*A'*B' + beta*C -* - DO 200, J = 1, N - DO 190, I = 1, M - TEMP = ZERO - DO 180, L = 1, K - TEMP = TEMP + A( L, I )*B( J, L ) - 180 CONTINUE - IF( BETA.EQ.ZERO )THEN - C( I, J ) = ALPHA*TEMP - ELSE - C( I, J ) = ALPHA*TEMP + BETA*C( I, J ) - END IF - 190 CONTINUE - 200 CONTINUE - END IF - END IF -* - RETURN -* -* End of DGEMM . -* - END diff --git a/Cantera/ext/blas/dgemv.f b/Cantera/ext/blas/dgemv.f deleted file mode 100755 index 8ef80b3a5..000000000 --- a/Cantera/ext/blas/dgemv.f +++ /dev/null @@ -1,261 +0,0 @@ - SUBROUTINE DGEMV ( TRANS, M, N, ALPHA, A, LDA, X, INCX, - $ BETA, Y, INCY ) -* .. Scalar Arguments .. - DOUBLE PRECISION ALPHA, BETA - INTEGER INCX, INCY, LDA, M, N - CHARACTER*1 TRANS -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), X( * ), Y( * ) -* .. -* -* Purpose -* ======= -* -* DGEMV performs one of the matrix-vector operations -* -* y := alpha*A*x + beta*y, or y := alpha*A'*x + beta*y, -* -* where alpha and beta are scalars, x and y are vectors and A is an -* m by n matrix. -* -* Parameters -* ========== -* -* TRANS - CHARACTER*1. -* On entry, TRANS specifies the operation to be performed as -* follows: -* -* TRANS = 'N' or 'n' y := alpha*A*x + beta*y. -* -* TRANS = 'T' or 't' y := alpha*A'*x + beta*y. -* -* TRANS = 'C' or 'c' y := alpha*A'*x + beta*y. -* -* Unchanged on exit. -* -* M - INTEGER. -* On entry, M specifies the number of rows of the matrix A. -* M must be at least zero. -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the number of columns of the matrix A. -* N must be at least zero. -* Unchanged on exit. -* -* ALPHA - DOUBLE PRECISION. -* On entry, ALPHA specifies the scalar alpha. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, n ). -* Before entry, the leading m by n part of the array A must -* contain the matrix of coefficients. -* Unchanged on exit. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. LDA must be at least -* max( 1, m ). -* Unchanged on exit. -* -* X - DOUBLE PRECISION array of DIMENSION at least -* ( 1 + ( n - 1 )*abs( INCX ) ) when TRANS = 'N' or 'n' -* and at least -* ( 1 + ( m - 1 )*abs( INCX ) ) otherwise. -* Before entry, the incremented array X must contain the -* vector x. -* Unchanged on exit. -* -* INCX - INTEGER. -* On entry, INCX specifies the increment for the elements of -* X. INCX must not be zero. -* Unchanged on exit. -* -* BETA - DOUBLE PRECISION. -* On entry, BETA specifies the scalar beta. When BETA is -* supplied as zero then Y need not be set on input. -* Unchanged on exit. -* -* Y - DOUBLE PRECISION array of DIMENSION at least -* ( 1 + ( m - 1 )*abs( INCY ) ) when TRANS = 'N' or 'n' -* and at least -* ( 1 + ( n - 1 )*abs( INCY ) ) otherwise. -* Before entry with BETA non-zero, the incremented array Y -* must contain the vector y. On exit, Y is overwritten by the -* updated vector y. -* -* INCY - INTEGER. -* On entry, INCY specifies the increment for the elements of -* Y. INCY must not be zero. -* Unchanged on exit. -* -* -* Level 2 Blas routine. -* -* -- Written on 22-October-1986. -* Jack Dongarra, Argonne National Lab. -* Jeremy Du Croz, Nag Central Office. -* Sven Hammarling, Nag Central Office. -* Richard Hanson, Sandia National Labs. -* -* -* .. Parameters .. - DOUBLE PRECISION ONE , ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. Local Scalars .. - DOUBLE PRECISION TEMP - INTEGER I, INFO, IX, IY, J, JX, JY, KX, KY, LENX, LENY -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF ( .NOT.LSAME( TRANS, 'N' ).AND. - $ .NOT.LSAME( TRANS, 'T' ).AND. - $ .NOT.LSAME( TRANS, 'C' ) )THEN - INFO = 1 - ELSE IF( M.LT.0 )THEN - INFO = 2 - ELSE IF( N.LT.0 )THEN - INFO = 3 - ELSE IF( LDA.LT.MAX( 1, M ) )THEN - INFO = 6 - ELSE IF( INCX.EQ.0 )THEN - INFO = 8 - ELSE IF( INCY.EQ.0 )THEN - INFO = 11 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DGEMV ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( ( M.EQ.0 ).OR.( N.EQ.0 ).OR. - $ ( ( ALPHA.EQ.ZERO ).AND.( BETA.EQ.ONE ) ) ) - $ RETURN -* -* Set LENX and LENY, the lengths of the vectors x and y, and set -* up the start points in X and Y. -* - IF( LSAME( TRANS, 'N' ) )THEN - LENX = N - LENY = M - ELSE - LENX = M - LENY = N - END IF - IF( INCX.GT.0 )THEN - KX = 1 - ELSE - KX = 1 - ( LENX - 1 )*INCX - END IF - IF( INCY.GT.0 )THEN - KY = 1 - ELSE - KY = 1 - ( LENY - 1 )*INCY - END IF -* -* Start the operations. In this version the elements of A are -* accessed sequentially with one pass through A. -* -* First form y := beta*y. -* - IF( BETA.NE.ONE )THEN - IF( INCY.EQ.1 )THEN - IF( BETA.EQ.ZERO )THEN - DO 10, I = 1, LENY - Y( I ) = ZERO - 10 CONTINUE - ELSE - DO 20, I = 1, LENY - Y( I ) = BETA*Y( I ) - 20 CONTINUE - END IF - ELSE - IY = KY - IF( BETA.EQ.ZERO )THEN - DO 30, I = 1, LENY - Y( IY ) = ZERO - IY = IY + INCY - 30 CONTINUE - ELSE - DO 40, I = 1, LENY - Y( IY ) = BETA*Y( IY ) - IY = IY + INCY - 40 CONTINUE - END IF - END IF - END IF - IF( ALPHA.EQ.ZERO ) - $ RETURN - IF( LSAME( TRANS, 'N' ) )THEN -* -* Form y := alpha*A*x + y. -* - JX = KX - IF( INCY.EQ.1 )THEN - DO 60, J = 1, N - IF( X( JX ).NE.ZERO )THEN - TEMP = ALPHA*X( JX ) - DO 50, I = 1, M - Y( I ) = Y( I ) + TEMP*A( I, J ) - 50 CONTINUE - END IF - JX = JX + INCX - 60 CONTINUE - ELSE - DO 80, J = 1, N - IF( X( JX ).NE.ZERO )THEN - TEMP = ALPHA*X( JX ) - IY = KY - DO 70, I = 1, M - Y( IY ) = Y( IY ) + TEMP*A( I, J ) - IY = IY + INCY - 70 CONTINUE - END IF - JX = JX + INCX - 80 CONTINUE - END IF - ELSE -* -* Form y := alpha*A'*x + y. -* - JY = KY - IF( INCX.EQ.1 )THEN - DO 100, J = 1, N - TEMP = ZERO - DO 90, I = 1, M - TEMP = TEMP + A( I, J )*X( I ) - 90 CONTINUE - Y( JY ) = Y( JY ) + ALPHA*TEMP - JY = JY + INCY - 100 CONTINUE - ELSE - DO 120, J = 1, N - TEMP = ZERO - IX = KX - DO 110, I = 1, M - TEMP = TEMP + A( I, J )*X( IX ) - IX = IX + INCX - 110 CONTINUE - Y( JY ) = Y( JY ) + ALPHA*TEMP - JY = JY + INCY - 120 CONTINUE - END IF - END IF -* - RETURN -* -* End of DGEMV . -* - END diff --git a/Cantera/ext/blas/dger.f b/Cantera/ext/blas/dger.f deleted file mode 100755 index d316000ab..000000000 --- a/Cantera/ext/blas/dger.f +++ /dev/null @@ -1,157 +0,0 @@ - SUBROUTINE DGER ( M, N, ALPHA, X, INCX, Y, INCY, A, LDA ) -* .. Scalar Arguments .. - DOUBLE PRECISION ALPHA - INTEGER INCX, INCY, LDA, M, N -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), X( * ), Y( * ) -* .. -* -* Purpose -* ======= -* -* DGER performs the rank 1 operation -* -* A := alpha*x*y' + A, -* -* where alpha is a scalar, x is an m element vector, y is an n element -* vector and A is an m by n matrix. -* -* Parameters -* ========== -* -* M - INTEGER. -* On entry, M specifies the number of rows of the matrix A. -* M must be at least zero. -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the number of columns of the matrix A. -* N must be at least zero. -* Unchanged on exit. -* -* ALPHA - DOUBLE PRECISION. -* On entry, ALPHA specifies the scalar alpha. -* Unchanged on exit. -* -* X - DOUBLE PRECISION array of dimension at least -* ( 1 + ( m - 1 )*abs( INCX ) ). -* Before entry, the incremented array X must contain the m -* element vector x. -* Unchanged on exit. -* -* INCX - INTEGER. -* On entry, INCX specifies the increment for the elements of -* X. INCX must not be zero. -* Unchanged on exit. -* -* Y - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCY ) ). -* Before entry, the incremented array Y must contain the n -* element vector y. -* Unchanged on exit. -* -* INCY - INTEGER. -* On entry, INCY specifies the increment for the elements of -* Y. INCY must not be zero. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, n ). -* Before entry, the leading m by n part of the array A must -* contain the matrix of coefficients. On exit, A is -* overwritten by the updated matrix. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. LDA must be at least -* max( 1, m ). -* Unchanged on exit. -* -* -* Level 2 Blas routine. -* -* -- Written on 22-October-1986. -* Jack Dongarra, Argonne National Lab. -* Jeremy Du Croz, Nag Central Office. -* Sven Hammarling, Nag Central Office. -* Richard Hanson, Sandia National Labs. -* -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D+0 ) -* .. Local Scalars .. - DOUBLE PRECISION TEMP - INTEGER I, INFO, IX, J, JY, KX -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF ( M.LT.0 )THEN - INFO = 1 - ELSE IF( N.LT.0 )THEN - INFO = 2 - ELSE IF( INCX.EQ.0 )THEN - INFO = 5 - ELSE IF( INCY.EQ.0 )THEN - INFO = 7 - ELSE IF( LDA.LT.MAX( 1, M ) )THEN - INFO = 9 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DGER ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( ( M.EQ.0 ).OR.( N.EQ.0 ).OR.( ALPHA.EQ.ZERO ) ) - $ RETURN -* -* Start the operations. In this version the elements of A are -* accessed sequentially with one pass through A. -* - IF( INCY.GT.0 )THEN - JY = 1 - ELSE - JY = 1 - ( N - 1 )*INCY - END IF - IF( INCX.EQ.1 )THEN - DO 20, J = 1, N - IF( Y( JY ).NE.ZERO )THEN - TEMP = ALPHA*Y( JY ) - DO 10, I = 1, M - A( I, J ) = A( I, J ) + X( I )*TEMP - 10 CONTINUE - END IF - JY = JY + INCY - 20 CONTINUE - ELSE - IF( INCX.GT.0 )THEN - KX = 1 - ELSE - KX = 1 - ( M - 1 )*INCX - END IF - DO 40, J = 1, N - IF( Y( JY ).NE.ZERO )THEN - TEMP = ALPHA*Y( JY ) - IX = KX - DO 30, I = 1, M - A( I, J ) = A( I, J ) + X( IX )*TEMP - IX = IX + INCX - 30 CONTINUE - END IF - JY = JY + INCY - 40 CONTINUE - END IF -* - RETURN -* -* End of DGER . -* - END diff --git a/Cantera/ext/blas/dnrm2.f b/Cantera/ext/blas/dnrm2.f deleted file mode 100755 index 119d0477e..000000000 --- a/Cantera/ext/blas/dnrm2.f +++ /dev/null @@ -1,60 +0,0 @@ - DOUBLE PRECISION FUNCTION DNRM2 ( N, X, INCX ) -* .. Scalar Arguments .. - INTEGER INCX, N -* .. Array Arguments .. - DOUBLE PRECISION X( * ) -* .. -* -* DNRM2 returns the euclidean norm of a vector via the function -* name, so that -* -* DNRM2 := sqrt( x'*x ) -* -* -* -* -- This version written on 25-October-1982. -* Modified on 14-October-1993 to inline the call to DLASSQ. -* Sven Hammarling, Nag Ltd. -* -* -* .. Parameters .. - DOUBLE PRECISION ONE , ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. Local Scalars .. - INTEGER IX - DOUBLE PRECISION ABSXI, NORM, SCALE, SSQ -* .. Intrinsic Functions .. - INTRINSIC ABS, SQRT -* .. -* .. Executable Statements .. - IF( N.LT.1 .OR. INCX.LT.1 )THEN - NORM = ZERO - ELSE IF( N.EQ.1 )THEN - NORM = ABS( X( 1 ) ) - ELSE - SCALE = ZERO - SSQ = ONE -* The following loop is equivalent to this call to the LAPACK -* auxiliary routine: -* CALL DLASSQ( N, X, INCX, SCALE, SSQ ) -* - DO 10, IX = 1, 1 + ( N - 1 )*INCX, INCX - IF( X( IX ).NE.ZERO )THEN - ABSXI = ABS( X( IX ) ) - IF( SCALE.LT.ABSXI )THEN - SSQ = ONE + SSQ*( SCALE/ABSXI )**2 - SCALE = ABSXI - ELSE - SSQ = SSQ + ( ABSXI/SCALE )**2 - END IF - END IF - 10 CONTINUE - NORM = SCALE * SQRT( SSQ ) - END IF -* - DNRM2 = NORM - RETURN -* -* End of DNRM2. -* - END diff --git a/Cantera/ext/blas/drot.f b/Cantera/ext/blas/drot.f deleted file mode 100755 index b9ea3bd91..000000000 --- a/Cantera/ext/blas/drot.f +++ /dev/null @@ -1,37 +0,0 @@ - subroutine drot (n,dx,incx,dy,incy,c,s) -c -c applies a plane rotation. -c jack dongarra, linpack, 3/11/78. -c modified 12/3/93, array(1) declarations changed to array(*) -c - double precision dx(*),dy(*),dtemp,c,s - integer i,incx,incy,ix,iy,n -c - if(n.le.0)return - if(incx.eq.1.and.incy.eq.1)go to 20 -c -c code for unequal increments or equal increments not equal -c to 1 -c - ix = 1 - iy = 1 - if(incx.lt.0)ix = (-n+1)*incx + 1 - if(incy.lt.0)iy = (-n+1)*incy + 1 - do 10 i = 1,n - dtemp = c*dx(ix) + s*dy(iy) - dy(iy) = c*dy(iy) - s*dx(ix) - dx(ix) = dtemp - ix = ix + incx - iy = iy + incy - 10 continue - return -c -c code for both increments equal to 1 -c - 20 do 30 i = 1,n - dtemp = c*dx(i) + s*dy(i) - dy(i) = c*dy(i) - s*dx(i) - dx(i) = dtemp - 30 continue - return - end diff --git a/Cantera/ext/blas/drotg.f b/Cantera/ext/blas/drotg.f deleted file mode 100755 index 67838e2cb..000000000 --- a/Cantera/ext/blas/drotg.f +++ /dev/null @@ -1,27 +0,0 @@ - subroutine drotg(da,db,c,s) -c -c construct givens plane rotation. -c jack dongarra, linpack, 3/11/78. -c - double precision da,db,c,s,roe,scale,r,z -c - roe = db - if( dabs(da) .gt. dabs(db) ) roe = da - scale = dabs(da) + dabs(db) - if( scale .ne. 0.0d0 ) go to 10 - c = 1.0d0 - s = 0.0d0 - r = 0.0d0 - z = 0.0d0 - go to 20 - 10 r = scale*dsqrt((da/scale)**2 + (db/scale)**2) - r = dsign(1.0d0,roe)*r - c = da/r - s = db/r - z = 1.0d0 - if( dabs(da) .gt. dabs(db) ) z = s - if( dabs(db) .ge. dabs(da) .and. c .ne. 0.0d0 ) z = 1.0d0/c - 20 da = r - db = z - return - end diff --git a/Cantera/ext/blas/drotm.f b/Cantera/ext/blas/drotm.f deleted file mode 100755 index 9a99eb7d1..000000000 --- a/Cantera/ext/blas/drotm.f +++ /dev/null @@ -1,108 +0,0 @@ - SUBROUTINE DROTM (N,DX,INCX,DY,INCY,DPARAM) -C -C APPLY THE MODIFIED GIVENS TRANSFORMATION, H, TO THE 2 BY N MATRIX -C -C (DX**T) , WHERE **T INDICATES TRANSPOSE. THE ELEMENTS OF DX ARE IN -C (DY**T) -C -C DX(LX+I*INCX), I = 0 TO N-1, WHERE LX = 1 IF INCX .GE. 0, ELSE -C LX = (-INCX)*N, AND SIMILARLY FOR SY USING LY AND INCY. -C WITH DPARAM(1)=DFLAG, H HAS ONE OF THE FOLLOWING FORMS.. -C -C DFLAG=-1.D0 DFLAG=0.D0 DFLAG=1.D0 DFLAG=-2.D0 -C -C (DH11 DH12) (1.D0 DH12) (DH11 1.D0) (1.D0 0.D0) -C H=( ) ( ) ( ) ( ) -C (DH21 DH22), (DH21 1.D0), (-1.D0 DH22), (0.D0 1.D0). -C SEE DROTMG FOR A DESCRIPTION OF DATA STORAGE IN DPARAM. -C - DOUBLE PRECISION DFLAG,DH12,DH22,DX,TWO,Z,DH11,DH21, - 1 DPARAM,DY,W,ZERO - DIMENSION DX(1),DY(1),DPARAM(5) - DATA ZERO,TWO/0.D0,2.D0/ -C - DFLAG=DPARAM(1) - IF(N .LE. 0 .OR.(DFLAG+TWO.EQ.ZERO)) GO TO 140 - IF(.NOT.(INCX.EQ.INCY.AND. INCX .GT.0)) GO TO 70 -C - NSTEPS=N*INCX - IF(DFLAG) 50,10,30 - 10 CONTINUE - DH12=DPARAM(4) - DH21=DPARAM(3) - DO 20 I=1,NSTEPS,INCX - W=DX(I) - Z=DY(I) - DX(I)=W+Z*DH12 - DY(I)=W*DH21+Z - 20 CONTINUE - GO TO 140 - 30 CONTINUE - DH11=DPARAM(2) - DH22=DPARAM(5) - DO 40 I=1,NSTEPS,INCX - W=DX(I) - Z=DY(I) - DX(I)=W*DH11+Z - DY(I)=-W+DH22*Z - 40 CONTINUE - GO TO 140 - 50 CONTINUE - DH11=DPARAM(2) - DH12=DPARAM(4) - DH21=DPARAM(3) - DH22=DPARAM(5) - DO 60 I=1,NSTEPS,INCX - W=DX(I) - Z=DY(I) - DX(I)=W*DH11+Z*DH12 - DY(I)=W*DH21+Z*DH22 - 60 CONTINUE - GO TO 140 - 70 CONTINUE - KX=1 - KY=1 - IF(INCX .LT. 0) KX=1+(1-N)*INCX - IF(INCY .LT. 0) KY=1+(1-N)*INCY -C - IF(DFLAG)120,80,100 - 80 CONTINUE - DH12=DPARAM(4) - DH21=DPARAM(3) - DO 90 I=1,N - W=DX(KX) - Z=DY(KY) - DX(KX)=W+Z*DH12 - DY(KY)=W*DH21+Z - KX=KX+INCX - KY=KY+INCY - 90 CONTINUE - GO TO 140 - 100 CONTINUE - DH11=DPARAM(2) - DH22=DPARAM(5) - DO 110 I=1,N - W=DX(KX) - Z=DY(KY) - DX(KX)=W*DH11+Z - DY(KY)=-W+DH22*Z - KX=KX+INCX - KY=KY+INCY - 110 CONTINUE - GO TO 140 - 120 CONTINUE - DH11=DPARAM(2) - DH12=DPARAM(4) - DH21=DPARAM(3) - DH22=DPARAM(5) - DO 130 I=1,N - W=DX(KX) - Z=DY(KY) - DX(KX)=W*DH11+Z*DH12 - DY(KY)=W*DH21+Z*DH22 - KX=KX+INCX - KY=KY+INCY - 130 CONTINUE - 140 CONTINUE - RETURN - END diff --git a/Cantera/ext/blas/drotmg.f b/Cantera/ext/blas/drotmg.f deleted file mode 100755 index 0068594c0..000000000 --- a/Cantera/ext/blas/drotmg.f +++ /dev/null @@ -1,169 +0,0 @@ - SUBROUTINE DROTMG (DD1,DD2,DX1,DY1,DPARAM) -C -C CONSTRUCT THE MODIFIED GIVENS TRANSFORMATION MATRIX H WHICH ZEROS -C THE SECOND COMPONENT OF THE 2-VECTOR (DSQRT(DD1)*DX1,DSQRT(DD2)* -C DY2)**T. -C WITH DPARAM(1)=DFLAG, H HAS ONE OF THE FOLLOWING FORMS.. -C -C DFLAG=-1.D0 DFLAG=0.D0 DFLAG=1.D0 DFLAG=-2.D0 -C -C (DH11 DH12) (1.D0 DH12) (DH11 1.D0) (1.D0 0.D0) -C H=( ) ( ) ( ) ( ) -C (DH21 DH22), (DH21 1.D0), (-1.D0 DH22), (0.D0 1.D0). -C LOCATIONS 2-4 OF DPARAM CONTAIN DH11, DH21, DH12, AND DH22 -C RESPECTIVELY. (VALUES OF 1.D0, -1.D0, OR 0.D0 IMPLIED BY THE -C VALUE OF DPARAM(1) ARE NOT STORED IN DPARAM.) -C -C THE VALUES OF GAMSQ AND RGAMSQ SET IN THE DATA STATEMENT MAY BE -C INEXACT. THIS IS OK AS THEY ARE ONLY USED FOR TESTING THE SIZE -C OF DD1 AND DD2. ALL ACTUAL SCALING OF DATA IS DONE USING GAM. -C - DOUBLE PRECISION GAM,ONE,RGAMSQ,DD2,DH11,DH21,DPARAM,DP2, - 1 DQ2,DU,DY1,ZERO,GAMSQ,DD1,DFLAG,DH12,DH22,DP1,DQ1, - 2 DTEMP,DX1,TWO - DIMENSION DPARAM(5) -C - DATA ZERO,ONE,TWO /0.D0,1.D0,2.D0/ - DATA GAM,GAMSQ,RGAMSQ/4096.D0,16777216.D0,5.9604645D-8/ - IF(.NOT. DD1 .LT. ZERO) GO TO 10 -C GO ZERO-H-D-AND-DX1.. - GO TO 60 - 10 CONTINUE -C CASE-DD1-NONNEGATIVE - DP2=DD2*DY1 - IF(.NOT. DP2 .EQ. ZERO) GO TO 20 - DFLAG=-TWO - GO TO 260 -C REGULAR-CASE.. - 20 CONTINUE - DP1=DD1*DX1 - DQ2=DP2*DY1 - DQ1=DP1*DX1 -C - IF(.NOT. DABS(DQ1) .GT. DABS(DQ2)) GO TO 40 - DH21=-DY1/DX1 - DH12=DP2/DP1 -C - DU=ONE-DH12*DH21 -C - IF(.NOT. DU .LE. ZERO) GO TO 30 -C GO ZERO-H-D-AND-DX1.. - GO TO 60 - 30 CONTINUE - DFLAG=ZERO - DD1=DD1/DU - DD2=DD2/DU - DX1=DX1*DU -C GO SCALE-CHECK.. - GO TO 100 - 40 CONTINUE - IF(.NOT. DQ2 .LT. ZERO) GO TO 50 -C GO ZERO-H-D-AND-DX1.. - GO TO 60 - 50 CONTINUE - DFLAG=ONE - DH11=DP1/DP2 - DH22=DX1/DY1 - DU=ONE+DH11*DH22 - DTEMP=DD2/DU - DD2=DD1/DU - DD1=DTEMP - DX1=DY1*DU -C GO SCALE-CHECK - GO TO 100 -C PROCEDURE..ZERO-H-D-AND-DX1.. - 60 CONTINUE - DFLAG=-ONE - DH11=ZERO - DH12=ZERO - DH21=ZERO - DH22=ZERO -C - DD1=ZERO - DD2=ZERO - DX1=ZERO -C RETURN.. - GO TO 220 -C PROCEDURE..FIX-H.. - 70 CONTINUE - IF(.NOT. DFLAG .GE. ZERO) GO TO 90 -C - IF(.NOT. DFLAG .EQ. ZERO) GO TO 80 - DH11=ONE - DH22=ONE - DFLAG=-ONE - GO TO 90 - 80 CONTINUE - DH21=-ONE - DH12=ONE - DFLAG=-ONE - 90 CONTINUE - GO TO IGO,(120,150,180,210) -C PROCEDURE..SCALE-CHECK - 100 CONTINUE - 110 CONTINUE - IF(.NOT. DD1 .LE. RGAMSQ) GO TO 130 - IF(DD1 .EQ. ZERO) GO TO 160 - ASSIGN 120 TO IGO -C FIX-H.. - GO TO 70 - 120 CONTINUE - DD1=DD1*GAM**2 - DX1=DX1/GAM - DH11=DH11/GAM - DH12=DH12/GAM - GO TO 110 - 130 CONTINUE - 140 CONTINUE - IF(.NOT. DD1 .GE. GAMSQ) GO TO 160 - ASSIGN 150 TO IGO -C FIX-H.. - GO TO 70 - 150 CONTINUE - DD1=DD1/GAM**2 - DX1=DX1*GAM - DH11=DH11*GAM - DH12=DH12*GAM - GO TO 140 - 160 CONTINUE - 170 CONTINUE - IF(.NOT. DABS(DD2) .LE. RGAMSQ) GO TO 190 - IF(DD2 .EQ. ZERO) GO TO 220 - ASSIGN 180 TO IGO -C FIX-H.. - GO TO 70 - 180 CONTINUE - DD2=DD2*GAM**2 - DH21=DH21/GAM - DH22=DH22/GAM - GO TO 170 - 190 CONTINUE - 200 CONTINUE - IF(.NOT. DABS(DD2) .GE. GAMSQ) GO TO 220 - ASSIGN 210 TO IGO -C FIX-H.. - GO TO 70 - 210 CONTINUE - DD2=DD2/GAM**2 - DH21=DH21*GAM - DH22=DH22*GAM - GO TO 200 - 220 CONTINUE - IF(DFLAG)250,230,240 - 230 CONTINUE - DPARAM(3)=DH21 - DPARAM(4)=DH12 - GO TO 260 - 240 CONTINUE - DPARAM(2)=DH11 - DPARAM(5)=DH22 - GO TO 260 - 250 CONTINUE - DPARAM(2)=DH11 - DPARAM(3)=DH21 - DPARAM(4)=DH12 - DPARAM(5)=DH22 - 260 CONTINUE - DPARAM(1)=DFLAG - RETURN - END diff --git a/Cantera/ext/blas/dsbmv.f b/Cantera/ext/blas/dsbmv.f deleted file mode 100755 index 272042af6..000000000 --- a/Cantera/ext/blas/dsbmv.f +++ /dev/null @@ -1,303 +0,0 @@ - SUBROUTINE DSBMV ( UPLO, N, K, ALPHA, A, LDA, X, INCX, - $ BETA, Y, INCY ) -* .. Scalar Arguments .. - DOUBLE PRECISION ALPHA, BETA - INTEGER INCX, INCY, K, LDA, N - CHARACTER*1 UPLO -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), X( * ), Y( * ) -* .. -* -* Purpose -* ======= -* -* DSBMV performs the matrix-vector operation -* -* y := alpha*A*x + beta*y, -* -* where alpha and beta are scalars, x and y are n element vectors and -* A is an n by n symmetric band matrix, with k super-diagonals. -* -* Parameters -* ========== -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the upper or lower -* triangular part of the band matrix A is being supplied as -* follows: -* -* UPLO = 'U' or 'u' The upper triangular part of A is -* being supplied. -* -* UPLO = 'L' or 'l' The lower triangular part of A is -* being supplied. -* -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the order of the matrix A. -* N must be at least zero. -* Unchanged on exit. -* -* K - INTEGER. -* On entry, K specifies the number of super-diagonals of the -* matrix A. K must satisfy 0 .le. K. -* Unchanged on exit. -* -* ALPHA - DOUBLE PRECISION. -* On entry, ALPHA specifies the scalar alpha. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, n ). -* Before entry with UPLO = 'U' or 'u', the leading ( k + 1 ) -* by n part of the array A must contain the upper triangular -* band part of the symmetric matrix, supplied column by -* column, with the leading diagonal of the matrix in row -* ( k + 1 ) of the array, the first super-diagonal starting at -* position 2 in row k, and so on. The top left k by k triangle -* of the array A is not referenced. -* The following program segment will transfer the upper -* triangular part of a symmetric band matrix from conventional -* full matrix storage to band storage: -* -* DO 20, J = 1, N -* M = K + 1 - J -* DO 10, I = MAX( 1, J - K ), J -* A( M + I, J ) = matrix( I, J ) -* 10 CONTINUE -* 20 CONTINUE -* -* Before entry with UPLO = 'L' or 'l', the leading ( k + 1 ) -* by n part of the array A must contain the lower triangular -* band part of the symmetric matrix, supplied column by -* column, with the leading diagonal of the matrix in row 1 of -* the array, the first sub-diagonal starting at position 1 in -* row 2, and so on. The bottom right k by k triangle of the -* array A is not referenced. -* The following program segment will transfer the lower -* triangular part of a symmetric band matrix from conventional -* full matrix storage to band storage: -* -* DO 20, J = 1, N -* M = 1 - J -* DO 10, I = J, MIN( N, J + K ) -* A( M + I, J ) = matrix( I, J ) -* 10 CONTINUE -* 20 CONTINUE -* -* Unchanged on exit. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. LDA must be at least -* ( k + 1 ). -* Unchanged on exit. -* -* X - DOUBLE PRECISION array of DIMENSION at least -* ( 1 + ( n - 1 )*abs( INCX ) ). -* Before entry, the incremented array X must contain the -* vector x. -* Unchanged on exit. -* -* INCX - INTEGER. -* On entry, INCX specifies the increment for the elements of -* X. INCX must not be zero. -* Unchanged on exit. -* -* BETA - DOUBLE PRECISION. -* On entry, BETA specifies the scalar beta. -* Unchanged on exit. -* -* Y - DOUBLE PRECISION array of DIMENSION at least -* ( 1 + ( n - 1 )*abs( INCY ) ). -* Before entry, the incremented array Y must contain the -* vector y. On exit, Y is overwritten by the updated vector y. -* -* INCY - INTEGER. -* On entry, INCY specifies the increment for the elements of -* Y. INCY must not be zero. -* Unchanged on exit. -* -* -* Level 2 Blas routine. -* -* -- Written on 22-October-1986. -* Jack Dongarra, Argonne National Lab. -* Jeremy Du Croz, Nag Central Office. -* Sven Hammarling, Nag Central Office. -* Richard Hanson, Sandia National Labs. -* -* -* .. Parameters .. - DOUBLE PRECISION ONE , ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. Local Scalars .. - DOUBLE PRECISION TEMP1, TEMP2 - INTEGER I, INFO, IX, IY, J, JX, JY, KPLUS1, KX, KY, L -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF ( .NOT.LSAME( UPLO, 'U' ).AND. - $ .NOT.LSAME( UPLO, 'L' ) )THEN - INFO = 1 - ELSE IF( N.LT.0 )THEN - INFO = 2 - ELSE IF( K.LT.0 )THEN - INFO = 3 - ELSE IF( LDA.LT.( K + 1 ) )THEN - INFO = 6 - ELSE IF( INCX.EQ.0 )THEN - INFO = 8 - ELSE IF( INCY.EQ.0 )THEN - INFO = 11 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DSBMV ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( ( N.EQ.0 ).OR.( ( ALPHA.EQ.ZERO ).AND.( BETA.EQ.ONE ) ) ) - $ RETURN -* -* Set up the start points in X and Y. -* - IF( INCX.GT.0 )THEN - KX = 1 - ELSE - KX = 1 - ( N - 1 )*INCX - END IF - IF( INCY.GT.0 )THEN - KY = 1 - ELSE - KY = 1 - ( N - 1 )*INCY - END IF -* -* Start the operations. In this version the elements of the array A -* are accessed sequentially with one pass through A. -* -* First form y := beta*y. -* - IF( BETA.NE.ONE )THEN - IF( INCY.EQ.1 )THEN - IF( BETA.EQ.ZERO )THEN - DO 10, I = 1, N - Y( I ) = ZERO - 10 CONTINUE - ELSE - DO 20, I = 1, N - Y( I ) = BETA*Y( I ) - 20 CONTINUE - END IF - ELSE - IY = KY - IF( BETA.EQ.ZERO )THEN - DO 30, I = 1, N - Y( IY ) = ZERO - IY = IY + INCY - 30 CONTINUE - ELSE - DO 40, I = 1, N - Y( IY ) = BETA*Y( IY ) - IY = IY + INCY - 40 CONTINUE - END IF - END IF - END IF - IF( ALPHA.EQ.ZERO ) - $ RETURN - IF( LSAME( UPLO, 'U' ) )THEN -* -* Form y when upper triangle of A is stored. -* - KPLUS1 = K + 1 - IF( ( INCX.EQ.1 ).AND.( INCY.EQ.1 ) )THEN - DO 60, J = 1, N - TEMP1 = ALPHA*X( J ) - TEMP2 = ZERO - L = KPLUS1 - J - DO 50, I = MAX( 1, J - K ), J - 1 - Y( I ) = Y( I ) + TEMP1*A( L + I, J ) - TEMP2 = TEMP2 + A( L + I, J )*X( I ) - 50 CONTINUE - Y( J ) = Y( J ) + TEMP1*A( KPLUS1, J ) + ALPHA*TEMP2 - 60 CONTINUE - ELSE - JX = KX - JY = KY - DO 80, J = 1, N - TEMP1 = ALPHA*X( JX ) - TEMP2 = ZERO - IX = KX - IY = KY - L = KPLUS1 - J - DO 70, I = MAX( 1, J - K ), J - 1 - Y( IY ) = Y( IY ) + TEMP1*A( L + I, J ) - TEMP2 = TEMP2 + A( L + I, J )*X( IX ) - IX = IX + INCX - IY = IY + INCY - 70 CONTINUE - Y( JY ) = Y( JY ) + TEMP1*A( KPLUS1, J ) + ALPHA*TEMP2 - JX = JX + INCX - JY = JY + INCY - IF( J.GT.K )THEN - KX = KX + INCX - KY = KY + INCY - END IF - 80 CONTINUE - END IF - ELSE -* -* Form y when lower triangle of A is stored. -* - IF( ( INCX.EQ.1 ).AND.( INCY.EQ.1 ) )THEN - DO 100, J = 1, N - TEMP1 = ALPHA*X( J ) - TEMP2 = ZERO - Y( J ) = Y( J ) + TEMP1*A( 1, J ) - L = 1 - J - DO 90, I = J + 1, MIN( N, J + K ) - Y( I ) = Y( I ) + TEMP1*A( L + I, J ) - TEMP2 = TEMP2 + A( L + I, J )*X( I ) - 90 CONTINUE - Y( J ) = Y( J ) + ALPHA*TEMP2 - 100 CONTINUE - ELSE - JX = KX - JY = KY - DO 120, J = 1, N - TEMP1 = ALPHA*X( JX ) - TEMP2 = ZERO - Y( JY ) = Y( JY ) + TEMP1*A( 1, J ) - L = 1 - J - IX = JX - IY = JY - DO 110, I = J + 1, MIN( N, J + K ) - IX = IX + INCX - IY = IY + INCY - Y( IY ) = Y( IY ) + TEMP1*A( L + I, J ) - TEMP2 = TEMP2 + A( L + I, J )*X( IX ) - 110 CONTINUE - Y( JY ) = Y( JY ) + ALPHA*TEMP2 - JX = JX + INCX - JY = JY + INCY - 120 CONTINUE - END IF - END IF -* - RETURN -* -* End of DSBMV . -* - END diff --git a/Cantera/ext/blas/dscal.f b/Cantera/ext/blas/dscal.f deleted file mode 100755 index e1467faf2..000000000 --- a/Cantera/ext/blas/dscal.f +++ /dev/null @@ -1,43 +0,0 @@ - subroutine dscal(n,da,dx,incx) -c -c scales a vector by a constant. -c uses unrolled loops for increment equal to one. -c jack dongarra, linpack, 3/11/78. -c modified 3/93 to return if incx .le. 0. -c modified 12/3/93, array(1) declarations changed to array(*) -c - double precision da,dx(*) - integer i,incx,m,mp1,n,nincx -c - if( n.le.0 .or. incx.le.0 )return - if(incx.eq.1)go to 20 -c -c code for increment not equal to 1 -c - nincx = n*incx - do 10 i = 1,nincx,incx - dx(i) = da*dx(i) - 10 continue - return -c -c code for increment equal to 1 -c -c -c clean-up loop -c - 20 m = mod(n,5) - if( m .eq. 0 ) go to 40 - do 30 i = 1,m - dx(i) = da*dx(i) - 30 continue - if( n .lt. 5 ) return - 40 mp1 = m + 1 - do 50 i = mp1,n,5 - dx(i) = da*dx(i) - dx(i + 1) = da*dx(i + 1) - dx(i + 2) = da*dx(i + 2) - dx(i + 3) = da*dx(i + 3) - dx(i + 4) = da*dx(i + 4) - 50 continue - return - end diff --git a/Cantera/ext/blas/dsdot.f b/Cantera/ext/blas/dsdot.f deleted file mode 100755 index 85adb68d6..000000000 --- a/Cantera/ext/blas/dsdot.f +++ /dev/null @@ -1,74 +0,0 @@ -*DECK DSDOT - DOUBLE PRECISION FUNCTION DSDOT (N, SX, INCX, SY, INCY) -C***BEGIN PROLOGUE DSDOT -C***PURPOSE Compute the inner product of two vectors with extended -C precision accumulation and result. -C***LIBRARY SLATEC (BLAS) -C***CATEGORY D1A4 -C***TYPE DOUBLE PRECISION (DSDOT-D, DCDOT-C) -C***KEYWORDS BLAS, COMPLEX VECTORS, DOT PRODUCT, INNER PRODUCT, -C LINEAR ALGEBRA, VECTOR -C***AUTHOR Lawson, C. L., (JPL) -C Hanson, R. J., (SNLA) -C Kincaid, D. R., (U. of Texas) -C Krogh, F. T., (JPL) -C***DESCRIPTION -C -C B L A S Subprogram -C Description of Parameters -C -C --Input-- -C N number of elements in input vector(s) -C SX single precision vector with N elements -C INCX storage spacing between elements of SX -C SY single precision vector with N elements -C INCY storage spacing between elements of SY -C -C --Output-- -C DSDOT double precision dot product (zero if N.LE.0) -C -C Returns D.P. dot product accumulated in D.P., for S.P. SX and SY -C DSDOT = sum for I = 0 to N-1 of SX(LX+I*INCX) * SY(LY+I*INCY), -C where LX = 1 if INCX .GE. 0, else LX = 1+(1-N)*INCX, and LY is -C defined in a similar way using INCY. -C -C***REFERENCES C. L. Lawson, R. J. Hanson, D. R. Kincaid and F. T. -C Krogh, Basic linear algebra subprograms for Fortran -C usage, Algorithm No. 539, Transactions on Mathematical -C Software 5, 3 (September 1979), pp. 308-323. -C***ROUTINES CALLED (NONE) -C***REVISION HISTORY (YYMMDD) -C 791001 DATE WRITTEN -C 890831 Modified array declarations. (WRB) -C 890831 REVISION DATE from Version 3.2 -C 891214 Prologue converted to Version 4.0 format. (BAB) -C 920310 Corrected definition of LX in DESCRIPTION. (WRB) -C 920501 Reformatted the REFERENCES section. (WRB) -C***END PROLOGUE DSDOT - REAL SX(*),SY(*) -C***FIRST EXECUTABLE STATEMENT DSDOT - DSDOT = 0.0D0 - IF (N .LE. 0) RETURN - IF (INCX.EQ.INCY .AND. INCX.GT.0) GO TO 20 -C -C Code for unequal or nonpositive increments. -C - KX = 1 - KY = 1 - IF (INCX .LT. 0) KX = 1+(1-N)*INCX - IF (INCY .LT. 0) KY = 1+(1-N)*INCY - DO 10 I = 1,N - DSDOT = DSDOT + DBLE(SX(KX))*DBLE(SY(KY)) - KX = KX + INCX - KY = KY + INCY - 10 CONTINUE - RETURN -C -C Code for equal, positive, non-unit increments. -C - 20 NS = N*INCX - DO 30 I = 1,NS,INCX - DSDOT = DSDOT + DBLE(SX(I))*DBLE(SY(I)) - 30 CONTINUE - RETURN - END diff --git a/Cantera/ext/blas/dspmv.f b/Cantera/ext/blas/dspmv.f deleted file mode 100755 index 3ace7bf26..000000000 --- a/Cantera/ext/blas/dspmv.f +++ /dev/null @@ -1,262 +0,0 @@ - SUBROUTINE DSPMV ( UPLO, N, ALPHA, AP, X, INCX, BETA, Y, INCY ) -* .. Scalar Arguments .. - DOUBLE PRECISION ALPHA, BETA - INTEGER INCX, INCY, N - CHARACTER*1 UPLO -* .. Array Arguments .. - DOUBLE PRECISION AP( * ), X( * ), Y( * ) -* .. -* -* Purpose -* ======= -* -* DSPMV performs the matrix-vector operation -* -* y := alpha*A*x + beta*y, -* -* where alpha and beta are scalars, x and y are n element vectors and -* A is an n by n symmetric matrix, supplied in packed form. -* -* Parameters -* ========== -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the upper or lower -* triangular part of the matrix A is supplied in the packed -* array AP as follows: -* -* UPLO = 'U' or 'u' The upper triangular part of A is -* supplied in AP. -* -* UPLO = 'L' or 'l' The lower triangular part of A is -* supplied in AP. -* -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the order of the matrix A. -* N must be at least zero. -* Unchanged on exit. -* -* ALPHA - DOUBLE PRECISION. -* On entry, ALPHA specifies the scalar alpha. -* Unchanged on exit. -* -* AP - DOUBLE PRECISION array of DIMENSION at least -* ( ( n*( n + 1 ) )/2 ). -* Before entry with UPLO = 'U' or 'u', the array AP must -* contain the upper triangular part of the symmetric matrix -* packed sequentially, column by column, so that AP( 1 ) -* contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 1, 2 ) -* and a( 2, 2 ) respectively, and so on. -* Before entry with UPLO = 'L' or 'l', the array AP must -* contain the lower triangular part of the symmetric matrix -* packed sequentially, column by column, so that AP( 1 ) -* contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 2, 1 ) -* and a( 3, 1 ) respectively, and so on. -* Unchanged on exit. -* -* X - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCX ) ). -* Before entry, the incremented array X must contain the n -* element vector x. -* Unchanged on exit. -* -* INCX - INTEGER. -* On entry, INCX specifies the increment for the elements of -* X. INCX must not be zero. -* Unchanged on exit. -* -* BETA - DOUBLE PRECISION. -* On entry, BETA specifies the scalar beta. When BETA is -* supplied as zero then Y need not be set on input. -* Unchanged on exit. -* -* Y - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCY ) ). -* Before entry, the incremented array Y must contain the n -* element vector y. On exit, Y is overwritten by the updated -* vector y. -* -* INCY - INTEGER. -* On entry, INCY specifies the increment for the elements of -* Y. INCY must not be zero. -* Unchanged on exit. -* -* -* Level 2 Blas routine. -* -* -- Written on 22-October-1986. -* Jack Dongarra, Argonne National Lab. -* Jeremy Du Croz, Nag Central Office. -* Sven Hammarling, Nag Central Office. -* Richard Hanson, Sandia National Labs. -* -* -* .. Parameters .. - DOUBLE PRECISION ONE , ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. Local Scalars .. - DOUBLE PRECISION TEMP1, TEMP2 - INTEGER I, INFO, IX, IY, J, JX, JY, K, KK, KX, KY -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF ( .NOT.LSAME( UPLO, 'U' ).AND. - $ .NOT.LSAME( UPLO, 'L' ) )THEN - INFO = 1 - ELSE IF( N.LT.0 )THEN - INFO = 2 - ELSE IF( INCX.EQ.0 )THEN - INFO = 6 - ELSE IF( INCY.EQ.0 )THEN - INFO = 9 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DSPMV ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( ( N.EQ.0 ).OR.( ( ALPHA.EQ.ZERO ).AND.( BETA.EQ.ONE ) ) ) - $ RETURN -* -* Set up the start points in X and Y. -* - IF( INCX.GT.0 )THEN - KX = 1 - ELSE - KX = 1 - ( N - 1 )*INCX - END IF - IF( INCY.GT.0 )THEN - KY = 1 - ELSE - KY = 1 - ( N - 1 )*INCY - END IF -* -* Start the operations. In this version the elements of the array AP -* are accessed sequentially with one pass through AP. -* -* First form y := beta*y. -* - IF( BETA.NE.ONE )THEN - IF( INCY.EQ.1 )THEN - IF( BETA.EQ.ZERO )THEN - DO 10, I = 1, N - Y( I ) = ZERO - 10 CONTINUE - ELSE - DO 20, I = 1, N - Y( I ) = BETA*Y( I ) - 20 CONTINUE - END IF - ELSE - IY = KY - IF( BETA.EQ.ZERO )THEN - DO 30, I = 1, N - Y( IY ) = ZERO - IY = IY + INCY - 30 CONTINUE - ELSE - DO 40, I = 1, N - Y( IY ) = BETA*Y( IY ) - IY = IY + INCY - 40 CONTINUE - END IF - END IF - END IF - IF( ALPHA.EQ.ZERO ) - $ RETURN - KK = 1 - IF( LSAME( UPLO, 'U' ) )THEN -* -* Form y when AP contains the upper triangle. -* - IF( ( INCX.EQ.1 ).AND.( INCY.EQ.1 ) )THEN - DO 60, J = 1, N - TEMP1 = ALPHA*X( J ) - TEMP2 = ZERO - K = KK - DO 50, I = 1, J - 1 - Y( I ) = Y( I ) + TEMP1*AP( K ) - TEMP2 = TEMP2 + AP( K )*X( I ) - K = K + 1 - 50 CONTINUE - Y( J ) = Y( J ) + TEMP1*AP( KK + J - 1 ) + ALPHA*TEMP2 - KK = KK + J - 60 CONTINUE - ELSE - JX = KX - JY = KY - DO 80, J = 1, N - TEMP1 = ALPHA*X( JX ) - TEMP2 = ZERO - IX = KX - IY = KY - DO 70, K = KK, KK + J - 2 - Y( IY ) = Y( IY ) + TEMP1*AP( K ) - TEMP2 = TEMP2 + AP( K )*X( IX ) - IX = IX + INCX - IY = IY + INCY - 70 CONTINUE - Y( JY ) = Y( JY ) + TEMP1*AP( KK + J - 1 ) + ALPHA*TEMP2 - JX = JX + INCX - JY = JY + INCY - KK = KK + J - 80 CONTINUE - END IF - ELSE -* -* Form y when AP contains the lower triangle. -* - IF( ( INCX.EQ.1 ).AND.( INCY.EQ.1 ) )THEN - DO 100, J = 1, N - TEMP1 = ALPHA*X( J ) - TEMP2 = ZERO - Y( J ) = Y( J ) + TEMP1*AP( KK ) - K = KK + 1 - DO 90, I = J + 1, N - Y( I ) = Y( I ) + TEMP1*AP( K ) - TEMP2 = TEMP2 + AP( K )*X( I ) - K = K + 1 - 90 CONTINUE - Y( J ) = Y( J ) + ALPHA*TEMP2 - KK = KK + ( N - J + 1 ) - 100 CONTINUE - ELSE - JX = KX - JY = KY - DO 120, J = 1, N - TEMP1 = ALPHA*X( JX ) - TEMP2 = ZERO - Y( JY ) = Y( JY ) + TEMP1*AP( KK ) - IX = JX - IY = JY - DO 110, K = KK + 1, KK + N - J - IX = IX + INCX - IY = IY + INCY - Y( IY ) = Y( IY ) + TEMP1*AP( K ) - TEMP2 = TEMP2 + AP( K )*X( IX ) - 110 CONTINUE - Y( JY ) = Y( JY ) + ALPHA*TEMP2 - JX = JX + INCX - JY = JY + INCY - KK = KK + ( N - J + 1 ) - 120 CONTINUE - END IF - END IF -* - RETURN -* -* End of DSPMV . -* - END diff --git a/Cantera/ext/blas/dspr.f b/Cantera/ext/blas/dspr.f deleted file mode 100755 index 3da6889c9..000000000 --- a/Cantera/ext/blas/dspr.f +++ /dev/null @@ -1,198 +0,0 @@ - SUBROUTINE DSPR ( UPLO, N, ALPHA, X, INCX, AP ) -* .. Scalar Arguments .. - DOUBLE PRECISION ALPHA - INTEGER INCX, N - CHARACTER*1 UPLO -* .. Array Arguments .. - DOUBLE PRECISION AP( * ), X( * ) -* .. -* -* Purpose -* ======= -* -* DSPR performs the symmetric rank 1 operation -* -* A := alpha*x*x' + A, -* -* where alpha is a real scalar, x is an n element vector and A is an -* n by n symmetric matrix, supplied in packed form. -* -* Parameters -* ========== -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the upper or lower -* triangular part of the matrix A is supplied in the packed -* array AP as follows: -* -* UPLO = 'U' or 'u' The upper triangular part of A is -* supplied in AP. -* -* UPLO = 'L' or 'l' The lower triangular part of A is -* supplied in AP. -* -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the order of the matrix A. -* N must be at least zero. -* Unchanged on exit. -* -* ALPHA - DOUBLE PRECISION. -* On entry, ALPHA specifies the scalar alpha. -* Unchanged on exit. -* -* X - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCX ) ). -* Before entry, the incremented array X must contain the n -* element vector x. -* Unchanged on exit. -* -* INCX - INTEGER. -* On entry, INCX specifies the increment for the elements of -* X. INCX must not be zero. -* Unchanged on exit. -* -* AP - DOUBLE PRECISION array of DIMENSION at least -* ( ( n*( n + 1 ) )/2 ). -* Before entry with UPLO = 'U' or 'u', the array AP must -* contain the upper triangular part of the symmetric matrix -* packed sequentially, column by column, so that AP( 1 ) -* contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 1, 2 ) -* and a( 2, 2 ) respectively, and so on. On exit, the array -* AP is overwritten by the upper triangular part of the -* updated matrix. -* Before entry with UPLO = 'L' or 'l', the array AP must -* contain the lower triangular part of the symmetric matrix -* packed sequentially, column by column, so that AP( 1 ) -* contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 2, 1 ) -* and a( 3, 1 ) respectively, and so on. On exit, the array -* AP is overwritten by the lower triangular part of the -* updated matrix. -* -* -* Level 2 Blas routine. -* -* -- Written on 22-October-1986. -* Jack Dongarra, Argonne National Lab. -* Jeremy Du Croz, Nag Central Office. -* Sven Hammarling, Nag Central Office. -* Richard Hanson, Sandia National Labs. -* -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D+0 ) -* .. Local Scalars .. - DOUBLE PRECISION TEMP - INTEGER I, INFO, IX, J, JX, K, KK, KX -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF ( .NOT.LSAME( UPLO, 'U' ).AND. - $ .NOT.LSAME( UPLO, 'L' ) )THEN - INFO = 1 - ELSE IF( N.LT.0 )THEN - INFO = 2 - ELSE IF( INCX.EQ.0 )THEN - INFO = 5 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DSPR ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( ( N.EQ.0 ).OR.( ALPHA.EQ.ZERO ) ) - $ RETURN -* -* Set the start point in X if the increment is not unity. -* - IF( INCX.LE.0 )THEN - KX = 1 - ( N - 1 )*INCX - ELSE IF( INCX.NE.1 )THEN - KX = 1 - END IF -* -* Start the operations. In this version the elements of the array AP -* are accessed sequentially with one pass through AP. -* - KK = 1 - IF( LSAME( UPLO, 'U' ) )THEN -* -* Form A when upper triangle is stored in AP. -* - IF( INCX.EQ.1 )THEN - DO 20, J = 1, N - IF( X( J ).NE.ZERO )THEN - TEMP = ALPHA*X( J ) - K = KK - DO 10, I = 1, J - AP( K ) = AP( K ) + X( I )*TEMP - K = K + 1 - 10 CONTINUE - END IF - KK = KK + J - 20 CONTINUE - ELSE - JX = KX - DO 40, J = 1, N - IF( X( JX ).NE.ZERO )THEN - TEMP = ALPHA*X( JX ) - IX = KX - DO 30, K = KK, KK + J - 1 - AP( K ) = AP( K ) + X( IX )*TEMP - IX = IX + INCX - 30 CONTINUE - END IF - JX = JX + INCX - KK = KK + J - 40 CONTINUE - END IF - ELSE -* -* Form A when lower triangle is stored in AP. -* - IF( INCX.EQ.1 )THEN - DO 60, J = 1, N - IF( X( J ).NE.ZERO )THEN - TEMP = ALPHA*X( J ) - K = KK - DO 50, I = J, N - AP( K ) = AP( K ) + X( I )*TEMP - K = K + 1 - 50 CONTINUE - END IF - KK = KK + N - J + 1 - 60 CONTINUE - ELSE - JX = KX - DO 80, J = 1, N - IF( X( JX ).NE.ZERO )THEN - TEMP = ALPHA*X( JX ) - IX = JX - DO 70, K = KK, KK + N - J - AP( K ) = AP( K ) + X( IX )*TEMP - IX = IX + INCX - 70 CONTINUE - END IF - JX = JX + INCX - KK = KK + N - J + 1 - 80 CONTINUE - END IF - END IF -* - RETURN -* -* End of DSPR . -* - END diff --git a/Cantera/ext/blas/dspr2.f b/Cantera/ext/blas/dspr2.f deleted file mode 100755 index 1cfce21b0..000000000 --- a/Cantera/ext/blas/dspr2.f +++ /dev/null @@ -1,229 +0,0 @@ - SUBROUTINE DSPR2 ( UPLO, N, ALPHA, X, INCX, Y, INCY, AP ) -* .. Scalar Arguments .. - DOUBLE PRECISION ALPHA - INTEGER INCX, INCY, N - CHARACTER*1 UPLO -* .. Array Arguments .. - DOUBLE PRECISION AP( * ), X( * ), Y( * ) -* .. -* -* Purpose -* ======= -* -* DSPR2 performs the symmetric rank 2 operation -* -* A := alpha*x*y' + alpha*y*x' + A, -* -* where alpha is a scalar, x and y are n element vectors and A is an -* n by n symmetric matrix, supplied in packed form. -* -* Parameters -* ========== -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the upper or lower -* triangular part of the matrix A is supplied in the packed -* array AP as follows: -* -* UPLO = 'U' or 'u' The upper triangular part of A is -* supplied in AP. -* -* UPLO = 'L' or 'l' The lower triangular part of A is -* supplied in AP. -* -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the order of the matrix A. -* N must be at least zero. -* Unchanged on exit. -* -* ALPHA - DOUBLE PRECISION. -* On entry, ALPHA specifies the scalar alpha. -* Unchanged on exit. -* -* X - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCX ) ). -* Before entry, the incremented array X must contain the n -* element vector x. -* Unchanged on exit. -* -* INCX - INTEGER. -* On entry, INCX specifies the increment for the elements of -* X. INCX must not be zero. -* Unchanged on exit. -* -* Y - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCY ) ). -* Before entry, the incremented array Y must contain the n -* element vector y. -* Unchanged on exit. -* -* INCY - INTEGER. -* On entry, INCY specifies the increment for the elements of -* Y. INCY must not be zero. -* Unchanged on exit. -* -* AP - DOUBLE PRECISION array of DIMENSION at least -* ( ( n*( n + 1 ) )/2 ). -* Before entry with UPLO = 'U' or 'u', the array AP must -* contain the upper triangular part of the symmetric matrix -* packed sequentially, column by column, so that AP( 1 ) -* contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 1, 2 ) -* and a( 2, 2 ) respectively, and so on. On exit, the array -* AP is overwritten by the upper triangular part of the -* updated matrix. -* Before entry with UPLO = 'L' or 'l', the array AP must -* contain the lower triangular part of the symmetric matrix -* packed sequentially, column by column, so that AP( 1 ) -* contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 2, 1 ) -* and a( 3, 1 ) respectively, and so on. On exit, the array -* AP is overwritten by the lower triangular part of the -* updated matrix. -* -* -* Level 2 Blas routine. -* -* -- Written on 22-October-1986. -* Jack Dongarra, Argonne National Lab. -* Jeremy Du Croz, Nag Central Office. -* Sven Hammarling, Nag Central Office. -* Richard Hanson, Sandia National Labs. -* -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D+0 ) -* .. Local Scalars .. - DOUBLE PRECISION TEMP1, TEMP2 - INTEGER I, INFO, IX, IY, J, JX, JY, K, KK, KX, KY -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF ( .NOT.LSAME( UPLO, 'U' ).AND. - $ .NOT.LSAME( UPLO, 'L' ) )THEN - INFO = 1 - ELSE IF( N.LT.0 )THEN - INFO = 2 - ELSE IF( INCX.EQ.0 )THEN - INFO = 5 - ELSE IF( INCY.EQ.0 )THEN - INFO = 7 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DSPR2 ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( ( N.EQ.0 ).OR.( ALPHA.EQ.ZERO ) ) - $ RETURN -* -* Set up the start points in X and Y if the increments are not both -* unity. -* - IF( ( INCX.NE.1 ).OR.( INCY.NE.1 ) )THEN - IF( INCX.GT.0 )THEN - KX = 1 - ELSE - KX = 1 - ( N - 1 )*INCX - END IF - IF( INCY.GT.0 )THEN - KY = 1 - ELSE - KY = 1 - ( N - 1 )*INCY - END IF - JX = KX - JY = KY - END IF -* -* Start the operations. In this version the elements of the array AP -* are accessed sequentially with one pass through AP. -* - KK = 1 - IF( LSAME( UPLO, 'U' ) )THEN -* -* Form A when upper triangle is stored in AP. -* - IF( ( INCX.EQ.1 ).AND.( INCY.EQ.1 ) )THEN - DO 20, J = 1, N - IF( ( X( J ).NE.ZERO ).OR.( Y( J ).NE.ZERO ) )THEN - TEMP1 = ALPHA*Y( J ) - TEMP2 = ALPHA*X( J ) - K = KK - DO 10, I = 1, J - AP( K ) = AP( K ) + X( I )*TEMP1 + Y( I )*TEMP2 - K = K + 1 - 10 CONTINUE - END IF - KK = KK + J - 20 CONTINUE - ELSE - DO 40, J = 1, N - IF( ( X( JX ).NE.ZERO ).OR.( Y( JY ).NE.ZERO ) )THEN - TEMP1 = ALPHA*Y( JY ) - TEMP2 = ALPHA*X( JX ) - IX = KX - IY = KY - DO 30, K = KK, KK + J - 1 - AP( K ) = AP( K ) + X( IX )*TEMP1 + Y( IY )*TEMP2 - IX = IX + INCX - IY = IY + INCY - 30 CONTINUE - END IF - JX = JX + INCX - JY = JY + INCY - KK = KK + J - 40 CONTINUE - END IF - ELSE -* -* Form A when lower triangle is stored in AP. -* - IF( ( INCX.EQ.1 ).AND.( INCY.EQ.1 ) )THEN - DO 60, J = 1, N - IF( ( X( J ).NE.ZERO ).OR.( Y( J ).NE.ZERO ) )THEN - TEMP1 = ALPHA*Y( J ) - TEMP2 = ALPHA*X( J ) - K = KK - DO 50, I = J, N - AP( K ) = AP( K ) + X( I )*TEMP1 + Y( I )*TEMP2 - K = K + 1 - 50 CONTINUE - END IF - KK = KK + N - J + 1 - 60 CONTINUE - ELSE - DO 80, J = 1, N - IF( ( X( JX ).NE.ZERO ).OR.( Y( JY ).NE.ZERO ) )THEN - TEMP1 = ALPHA*Y( JY ) - TEMP2 = ALPHA*X( JX ) - IX = JX - IY = JY - DO 70, K = KK, KK + N - J - AP( K ) = AP( K ) + X( IX )*TEMP1 + Y( IY )*TEMP2 - IX = IX + INCX - IY = IY + INCY - 70 CONTINUE - END IF - JX = JX + INCX - JY = JY + INCY - KK = KK + N - J + 1 - 80 CONTINUE - END IF - END IF -* - RETURN -* -* End of DSPR2 . -* - END diff --git a/Cantera/ext/blas/dswap.f b/Cantera/ext/blas/dswap.f deleted file mode 100755 index 7f7d1fbba..000000000 --- a/Cantera/ext/blas/dswap.f +++ /dev/null @@ -1,56 +0,0 @@ - subroutine dswap (n,dx,incx,dy,incy) -c -c interchanges two vectors. -c uses unrolled loops for increments equal one. -c jack dongarra, linpack, 3/11/78. -c modified 12/3/93, array(1) declarations changed to array(*) -c - double precision dx(*),dy(*),dtemp - integer i,incx,incy,ix,iy,m,mp1,n -c - if(n.le.0)return - if(incx.eq.1.and.incy.eq.1)go to 20 -c -c code for unequal increments or equal increments not equal -c to 1 -c - ix = 1 - iy = 1 - if(incx.lt.0)ix = (-n+1)*incx + 1 - if(incy.lt.0)iy = (-n+1)*incy + 1 - do 10 i = 1,n - dtemp = dx(ix) - dx(ix) = dy(iy) - dy(iy) = dtemp - ix = ix + incx - iy = iy + incy - 10 continue - return -c -c code for both increments equal to 1 -c -c -c clean-up loop -c - 20 m = mod(n,3) - if( m .eq. 0 ) go to 40 - do 30 i = 1,m - dtemp = dx(i) - dx(i) = dy(i) - dy(i) = dtemp - 30 continue - if( n .lt. 3 ) return - 40 mp1 = m + 1 - do 50 i = mp1,n,3 - dtemp = dx(i) - dx(i) = dy(i) - dy(i) = dtemp - dtemp = dx(i + 1) - dx(i + 1) = dy(i + 1) - dy(i + 1) = dtemp - dtemp = dx(i + 2) - dx(i + 2) = dy(i + 2) - dy(i + 2) = dtemp - 50 continue - return - end diff --git a/Cantera/ext/blas/dsymm.f b/Cantera/ext/blas/dsymm.f deleted file mode 100755 index 0f2514170..000000000 --- a/Cantera/ext/blas/dsymm.f +++ /dev/null @@ -1,294 +0,0 @@ - SUBROUTINE DSYMM ( SIDE, UPLO, M, N, ALPHA, A, LDA, B, LDB, - $ BETA, C, LDC ) -* .. Scalar Arguments .. - CHARACTER*1 SIDE, UPLO - INTEGER M, N, LDA, LDB, LDC - DOUBLE PRECISION ALPHA, BETA -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), B( LDB, * ), C( LDC, * ) -* .. -* -* Purpose -* ======= -* -* DSYMM performs one of the matrix-matrix operations -* -* C := alpha*A*B + beta*C, -* -* or -* -* C := alpha*B*A + beta*C, -* -* where alpha and beta are scalars, A is a symmetric matrix and B and -* C are m by n matrices. -* -* Parameters -* ========== -* -* SIDE - CHARACTER*1. -* On entry, SIDE specifies whether the symmetric matrix A -* appears on the left or right in the operation as follows: -* -* SIDE = 'L' or 'l' C := alpha*A*B + beta*C, -* -* SIDE = 'R' or 'r' C := alpha*B*A + beta*C, -* -* Unchanged on exit. -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the upper or lower -* triangular part of the symmetric matrix A is to be -* referenced as follows: -* -* UPLO = 'U' or 'u' Only the upper triangular part of the -* symmetric matrix is to be referenced. -* -* UPLO = 'L' or 'l' Only the lower triangular part of the -* symmetric matrix is to be referenced. -* -* Unchanged on exit. -* -* M - INTEGER. -* On entry, M specifies the number of rows of the matrix C. -* M must be at least zero. -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the number of columns of the matrix C. -* N must be at least zero. -* Unchanged on exit. -* -* ALPHA - DOUBLE PRECISION. -* On entry, ALPHA specifies the scalar alpha. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, ka ), where ka is -* m when SIDE = 'L' or 'l' and is n otherwise. -* Before entry with SIDE = 'L' or 'l', the m by m part of -* the array A must contain the symmetric matrix, such that -* when UPLO = 'U' or 'u', the leading m by m upper triangular -* part of the array A must contain the upper triangular part -* of the symmetric matrix and the strictly lower triangular -* part of A is not referenced, and when UPLO = 'L' or 'l', -* the leading m by m lower triangular part of the array A -* must contain the lower triangular part of the symmetric -* matrix and the strictly upper triangular part of A is not -* referenced. -* Before entry with SIDE = 'R' or 'r', the n by n part of -* the array A must contain the symmetric matrix, such that -* when UPLO = 'U' or 'u', the leading n by n upper triangular -* part of the array A must contain the upper triangular part -* of the symmetric matrix and the strictly lower triangular -* part of A is not referenced, and when UPLO = 'L' or 'l', -* the leading n by n lower triangular part of the array A -* must contain the lower triangular part of the symmetric -* matrix and the strictly upper triangular part of A is not -* referenced. -* Unchanged on exit. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. When SIDE = 'L' or 'l' then -* LDA must be at least max( 1, m ), otherwise LDA must be at -* least max( 1, n ). -* Unchanged on exit. -* -* B - DOUBLE PRECISION array of DIMENSION ( LDB, n ). -* Before entry, the leading m by n part of the array B must -* contain the matrix B. -* Unchanged on exit. -* -* LDB - INTEGER. -* On entry, LDB specifies the first dimension of B as declared -* in the calling (sub) program. LDB must be at least -* max( 1, m ). -* Unchanged on exit. -* -* BETA - DOUBLE PRECISION. -* On entry, BETA specifies the scalar beta. When BETA is -* supplied as zero then C need not be set on input. -* Unchanged on exit. -* -* C - DOUBLE PRECISION array of DIMENSION ( LDC, n ). -* Before entry, the leading m by n part of the array C must -* contain the matrix C, except when beta is zero, in which -* case C need not be set on entry. -* On exit, the array C is overwritten by the m by n updated -* matrix. -* -* LDC - INTEGER. -* On entry, LDC specifies the first dimension of C as declared -* in the calling (sub) program. LDC must be at least -* max( 1, m ). -* Unchanged on exit. -* -* -* Level 3 Blas routine. -* -* -- Written on 8-February-1989. -* Jack Dongarra, Argonne National Laboratory. -* Iain Duff, AERE Harwell. -* Jeremy Du Croz, Numerical Algorithms Group Ltd. -* Sven Hammarling, Numerical Algorithms Group Ltd. -* -* -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. Local Scalars .. - LOGICAL UPPER - INTEGER I, INFO, J, K, NROWA - DOUBLE PRECISION TEMP1, TEMP2 -* .. Parameters .. - DOUBLE PRECISION ONE , ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Executable Statements .. -* -* Set NROWA as the number of rows of A. -* - IF( LSAME( SIDE, 'L' ) )THEN - NROWA = M - ELSE - NROWA = N - END IF - UPPER = LSAME( UPLO, 'U' ) -* -* Test the input parameters. -* - INFO = 0 - IF( ( .NOT.LSAME( SIDE, 'L' ) ).AND. - $ ( .NOT.LSAME( SIDE, 'R' ) ) )THEN - INFO = 1 - ELSE IF( ( .NOT.UPPER ).AND. - $ ( .NOT.LSAME( UPLO, 'L' ) ) )THEN - INFO = 2 - ELSE IF( M .LT.0 )THEN - INFO = 3 - ELSE IF( N .LT.0 )THEN - INFO = 4 - ELSE IF( LDA.LT.MAX( 1, NROWA ) )THEN - INFO = 7 - ELSE IF( LDB.LT.MAX( 1, M ) )THEN - INFO = 9 - ELSE IF( LDC.LT.MAX( 1, M ) )THEN - INFO = 12 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DSYMM ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( ( M.EQ.0 ).OR.( N.EQ.0 ).OR. - $ ( ( ALPHA.EQ.ZERO ).AND.( BETA.EQ.ONE ) ) ) - $ RETURN -* -* And when alpha.eq.zero. -* - IF( ALPHA.EQ.ZERO )THEN - IF( BETA.EQ.ZERO )THEN - DO 20, J = 1, N - DO 10, I = 1, M - C( I, J ) = ZERO - 10 CONTINUE - 20 CONTINUE - ELSE - DO 40, J = 1, N - DO 30, I = 1, M - C( I, J ) = BETA*C( I, J ) - 30 CONTINUE - 40 CONTINUE - END IF - RETURN - END IF -* -* Start the operations. -* - IF( LSAME( SIDE, 'L' ) )THEN -* -* Form C := alpha*A*B + beta*C. -* - IF( UPPER )THEN - DO 70, J = 1, N - DO 60, I = 1, M - TEMP1 = ALPHA*B( I, J ) - TEMP2 = ZERO - DO 50, K = 1, I - 1 - C( K, J ) = C( K, J ) + TEMP1 *A( K, I ) - TEMP2 = TEMP2 + B( K, J )*A( K, I ) - 50 CONTINUE - IF( BETA.EQ.ZERO )THEN - C( I, J ) = TEMP1*A( I, I ) + ALPHA*TEMP2 - ELSE - C( I, J ) = BETA *C( I, J ) + - $ TEMP1*A( I, I ) + ALPHA*TEMP2 - END IF - 60 CONTINUE - 70 CONTINUE - ELSE - DO 100, J = 1, N - DO 90, I = M, 1, -1 - TEMP1 = ALPHA*B( I, J ) - TEMP2 = ZERO - DO 80, K = I + 1, M - C( K, J ) = C( K, J ) + TEMP1 *A( K, I ) - TEMP2 = TEMP2 + B( K, J )*A( K, I ) - 80 CONTINUE - IF( BETA.EQ.ZERO )THEN - C( I, J ) = TEMP1*A( I, I ) + ALPHA*TEMP2 - ELSE - C( I, J ) = BETA *C( I, J ) + - $ TEMP1*A( I, I ) + ALPHA*TEMP2 - END IF - 90 CONTINUE - 100 CONTINUE - END IF - ELSE -* -* Form C := alpha*B*A + beta*C. -* - DO 170, J = 1, N - TEMP1 = ALPHA*A( J, J ) - IF( BETA.EQ.ZERO )THEN - DO 110, I = 1, M - C( I, J ) = TEMP1*B( I, J ) - 110 CONTINUE - ELSE - DO 120, I = 1, M - C( I, J ) = BETA*C( I, J ) + TEMP1*B( I, J ) - 120 CONTINUE - END IF - DO 140, K = 1, J - 1 - IF( UPPER )THEN - TEMP1 = ALPHA*A( K, J ) - ELSE - TEMP1 = ALPHA*A( J, K ) - END IF - DO 130, I = 1, M - C( I, J ) = C( I, J ) + TEMP1*B( I, K ) - 130 CONTINUE - 140 CONTINUE - DO 160, K = J + 1, N - IF( UPPER )THEN - TEMP1 = ALPHA*A( J, K ) - ELSE - TEMP1 = ALPHA*A( K, J ) - END IF - DO 150, I = 1, M - C( I, J ) = C( I, J ) + TEMP1*B( I, K ) - 150 CONTINUE - 160 CONTINUE - 170 CONTINUE - END IF -* - RETURN -* -* End of DSYMM . -* - END diff --git a/Cantera/ext/blas/dsymv.f b/Cantera/ext/blas/dsymv.f deleted file mode 100755 index 7592d156b..000000000 --- a/Cantera/ext/blas/dsymv.f +++ /dev/null @@ -1,262 +0,0 @@ - SUBROUTINE DSYMV ( UPLO, N, ALPHA, A, LDA, X, INCX, - $ BETA, Y, INCY ) -* .. Scalar Arguments .. - DOUBLE PRECISION ALPHA, BETA - INTEGER INCX, INCY, LDA, N - CHARACTER*1 UPLO -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), X( * ), Y( * ) -* .. -* -* Purpose -* ======= -* -* DSYMV performs the matrix-vector operation -* -* y := alpha*A*x + beta*y, -* -* where alpha and beta are scalars, x and y are n element vectors and -* A is an n by n symmetric matrix. -* -* Parameters -* ========== -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the upper or lower -* triangular part of the array A is to be referenced as -* follows: -* -* UPLO = 'U' or 'u' Only the upper triangular part of A -* is to be referenced. -* -* UPLO = 'L' or 'l' Only the lower triangular part of A -* is to be referenced. -* -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the order of the matrix A. -* N must be at least zero. -* Unchanged on exit. -* -* ALPHA - DOUBLE PRECISION. -* On entry, ALPHA specifies the scalar alpha. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, n ). -* Before entry with UPLO = 'U' or 'u', the leading n by n -* upper triangular part of the array A must contain the upper -* triangular part of the symmetric matrix and the strictly -* lower triangular part of A is not referenced. -* Before entry with UPLO = 'L' or 'l', the leading n by n -* lower triangular part of the array A must contain the lower -* triangular part of the symmetric matrix and the strictly -* upper triangular part of A is not referenced. -* Unchanged on exit. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. LDA must be at least -* max( 1, n ). -* Unchanged on exit. -* -* X - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCX ) ). -* Before entry, the incremented array X must contain the n -* element vector x. -* Unchanged on exit. -* -* INCX - INTEGER. -* On entry, INCX specifies the increment for the elements of -* X. INCX must not be zero. -* Unchanged on exit. -* -* BETA - DOUBLE PRECISION. -* On entry, BETA specifies the scalar beta. When BETA is -* supplied as zero then Y need not be set on input. -* Unchanged on exit. -* -* Y - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCY ) ). -* Before entry, the incremented array Y must contain the n -* element vector y. On exit, Y is overwritten by the updated -* vector y. -* -* INCY - INTEGER. -* On entry, INCY specifies the increment for the elements of -* Y. INCY must not be zero. -* Unchanged on exit. -* -* -* Level 2 Blas routine. -* -* -- Written on 22-October-1986. -* Jack Dongarra, Argonne National Lab. -* Jeremy Du Croz, Nag Central Office. -* Sven Hammarling, Nag Central Office. -* Richard Hanson, Sandia National Labs. -* -* -* .. Parameters .. - DOUBLE PRECISION ONE , ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. Local Scalars .. - DOUBLE PRECISION TEMP1, TEMP2 - INTEGER I, INFO, IX, IY, J, JX, JY, KX, KY -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF ( .NOT.LSAME( UPLO, 'U' ).AND. - $ .NOT.LSAME( UPLO, 'L' ) )THEN - INFO = 1 - ELSE IF( N.LT.0 )THEN - INFO = 2 - ELSE IF( LDA.LT.MAX( 1, N ) )THEN - INFO = 5 - ELSE IF( INCX.EQ.0 )THEN - INFO = 7 - ELSE IF( INCY.EQ.0 )THEN - INFO = 10 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DSYMV ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( ( N.EQ.0 ).OR.( ( ALPHA.EQ.ZERO ).AND.( BETA.EQ.ONE ) ) ) - $ RETURN -* -* Set up the start points in X and Y. -* - IF( INCX.GT.0 )THEN - KX = 1 - ELSE - KX = 1 - ( N - 1 )*INCX - END IF - IF( INCY.GT.0 )THEN - KY = 1 - ELSE - KY = 1 - ( N - 1 )*INCY - END IF -* -* Start the operations. In this version the elements of A are -* accessed sequentially with one pass through the triangular part -* of A. -* -* First form y := beta*y. -* - IF( BETA.NE.ONE )THEN - IF( INCY.EQ.1 )THEN - IF( BETA.EQ.ZERO )THEN - DO 10, I = 1, N - Y( I ) = ZERO - 10 CONTINUE - ELSE - DO 20, I = 1, N - Y( I ) = BETA*Y( I ) - 20 CONTINUE - END IF - ELSE - IY = KY - IF( BETA.EQ.ZERO )THEN - DO 30, I = 1, N - Y( IY ) = ZERO - IY = IY + INCY - 30 CONTINUE - ELSE - DO 40, I = 1, N - Y( IY ) = BETA*Y( IY ) - IY = IY + INCY - 40 CONTINUE - END IF - END IF - END IF - IF( ALPHA.EQ.ZERO ) - $ RETURN - IF( LSAME( UPLO, 'U' ) )THEN -* -* Form y when A is stored in upper triangle. -* - IF( ( INCX.EQ.1 ).AND.( INCY.EQ.1 ) )THEN - DO 60, J = 1, N - TEMP1 = ALPHA*X( J ) - TEMP2 = ZERO - DO 50, I = 1, J - 1 - Y( I ) = Y( I ) + TEMP1*A( I, J ) - TEMP2 = TEMP2 + A( I, J )*X( I ) - 50 CONTINUE - Y( J ) = Y( J ) + TEMP1*A( J, J ) + ALPHA*TEMP2 - 60 CONTINUE - ELSE - JX = KX - JY = KY - DO 80, J = 1, N - TEMP1 = ALPHA*X( JX ) - TEMP2 = ZERO - IX = KX - IY = KY - DO 70, I = 1, J - 1 - Y( IY ) = Y( IY ) + TEMP1*A( I, J ) - TEMP2 = TEMP2 + A( I, J )*X( IX ) - IX = IX + INCX - IY = IY + INCY - 70 CONTINUE - Y( JY ) = Y( JY ) + TEMP1*A( J, J ) + ALPHA*TEMP2 - JX = JX + INCX - JY = JY + INCY - 80 CONTINUE - END IF - ELSE -* -* Form y when A is stored in lower triangle. -* - IF( ( INCX.EQ.1 ).AND.( INCY.EQ.1 ) )THEN - DO 100, J = 1, N - TEMP1 = ALPHA*X( J ) - TEMP2 = ZERO - Y( J ) = Y( J ) + TEMP1*A( J, J ) - DO 90, I = J + 1, N - Y( I ) = Y( I ) + TEMP1*A( I, J ) - TEMP2 = TEMP2 + A( I, J )*X( I ) - 90 CONTINUE - Y( J ) = Y( J ) + ALPHA*TEMP2 - 100 CONTINUE - ELSE - JX = KX - JY = KY - DO 120, J = 1, N - TEMP1 = ALPHA*X( JX ) - TEMP2 = ZERO - Y( JY ) = Y( JY ) + TEMP1*A( J, J ) - IX = JX - IY = JY - DO 110, I = J + 1, N - IX = IX + INCX - IY = IY + INCY - Y( IY ) = Y( IY ) + TEMP1*A( I, J ) - TEMP2 = TEMP2 + A( I, J )*X( IX ) - 110 CONTINUE - Y( JY ) = Y( JY ) + ALPHA*TEMP2 - JX = JX + INCX - JY = JY + INCY - 120 CONTINUE - END IF - END IF -* - RETURN -* -* End of DSYMV . -* - END diff --git a/Cantera/ext/blas/dsyr.f b/Cantera/ext/blas/dsyr.f deleted file mode 100755 index 873771967..000000000 --- a/Cantera/ext/blas/dsyr.f +++ /dev/null @@ -1,197 +0,0 @@ - SUBROUTINE DSYR ( UPLO, N, ALPHA, X, INCX, A, LDA ) -* .. Scalar Arguments .. - DOUBLE PRECISION ALPHA - INTEGER INCX, LDA, N - CHARACTER*1 UPLO -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), X( * ) -* .. -* -* Purpose -* ======= -* -* DSYR performs the symmetric rank 1 operation -* -* A := alpha*x*x' + A, -* -* where alpha is a real scalar, x is an n element vector and A is an -* n by n symmetric matrix. -* -* Parameters -* ========== -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the upper or lower -* triangular part of the array A is to be referenced as -* follows: -* -* UPLO = 'U' or 'u' Only the upper triangular part of A -* is to be referenced. -* -* UPLO = 'L' or 'l' Only the lower triangular part of A -* is to be referenced. -* -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the order of the matrix A. -* N must be at least zero. -* Unchanged on exit. -* -* ALPHA - DOUBLE PRECISION. -* On entry, ALPHA specifies the scalar alpha. -* Unchanged on exit. -* -* X - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCX ) ). -* Before entry, the incremented array X must contain the n -* element vector x. -* Unchanged on exit. -* -* INCX - INTEGER. -* On entry, INCX specifies the increment for the elements of -* X. INCX must not be zero. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, n ). -* Before entry with UPLO = 'U' or 'u', the leading n by n -* upper triangular part of the array A must contain the upper -* triangular part of the symmetric matrix and the strictly -* lower triangular part of A is not referenced. On exit, the -* upper triangular part of the array A is overwritten by the -* upper triangular part of the updated matrix. -* Before entry with UPLO = 'L' or 'l', the leading n by n -* lower triangular part of the array A must contain the lower -* triangular part of the symmetric matrix and the strictly -* upper triangular part of A is not referenced. On exit, the -* lower triangular part of the array A is overwritten by the -* lower triangular part of the updated matrix. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. LDA must be at least -* max( 1, n ). -* Unchanged on exit. -* -* -* Level 2 Blas routine. -* -* -- Written on 22-October-1986. -* Jack Dongarra, Argonne National Lab. -* Jeremy Du Croz, Nag Central Office. -* Sven Hammarling, Nag Central Office. -* Richard Hanson, Sandia National Labs. -* -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D+0 ) -* .. Local Scalars .. - DOUBLE PRECISION TEMP - INTEGER I, INFO, IX, J, JX, KX -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF ( .NOT.LSAME( UPLO, 'U' ).AND. - $ .NOT.LSAME( UPLO, 'L' ) )THEN - INFO = 1 - ELSE IF( N.LT.0 )THEN - INFO = 2 - ELSE IF( INCX.EQ.0 )THEN - INFO = 5 - ELSE IF( LDA.LT.MAX( 1, N ) )THEN - INFO = 7 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DSYR ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( ( N.EQ.0 ).OR.( ALPHA.EQ.ZERO ) ) - $ RETURN -* -* Set the start point in X if the increment is not unity. -* - IF( INCX.LE.0 )THEN - KX = 1 - ( N - 1 )*INCX - ELSE IF( INCX.NE.1 )THEN - KX = 1 - END IF -* -* Start the operations. In this version the elements of A are -* accessed sequentially with one pass through the triangular part -* of A. -* - IF( LSAME( UPLO, 'U' ) )THEN -* -* Form A when A is stored in upper triangle. -* - IF( INCX.EQ.1 )THEN - DO 20, J = 1, N - IF( X( J ).NE.ZERO )THEN - TEMP = ALPHA*X( J ) - DO 10, I = 1, J - A( I, J ) = A( I, J ) + X( I )*TEMP - 10 CONTINUE - END IF - 20 CONTINUE - ELSE - JX = KX - DO 40, J = 1, N - IF( X( JX ).NE.ZERO )THEN - TEMP = ALPHA*X( JX ) - IX = KX - DO 30, I = 1, J - A( I, J ) = A( I, J ) + X( IX )*TEMP - IX = IX + INCX - 30 CONTINUE - END IF - JX = JX + INCX - 40 CONTINUE - END IF - ELSE -* -* Form A when A is stored in lower triangle. -* - IF( INCX.EQ.1 )THEN - DO 60, J = 1, N - IF( X( J ).NE.ZERO )THEN - TEMP = ALPHA*X( J ) - DO 50, I = J, N - A( I, J ) = A( I, J ) + X( I )*TEMP - 50 CONTINUE - END IF - 60 CONTINUE - ELSE - JX = KX - DO 80, J = 1, N - IF( X( JX ).NE.ZERO )THEN - TEMP = ALPHA*X( JX ) - IX = JX - DO 70, I = J, N - A( I, J ) = A( I, J ) + X( IX )*TEMP - IX = IX + INCX - 70 CONTINUE - END IF - JX = JX + INCX - 80 CONTINUE - END IF - END IF -* - RETURN -* -* End of DSYR . -* - END diff --git a/Cantera/ext/blas/dsyr2.f b/Cantera/ext/blas/dsyr2.f deleted file mode 100755 index 918ad8a7d..000000000 --- a/Cantera/ext/blas/dsyr2.f +++ /dev/null @@ -1,230 +0,0 @@ - SUBROUTINE DSYR2 ( UPLO, N, ALPHA, X, INCX, Y, INCY, A, LDA ) -* .. Scalar Arguments .. - DOUBLE PRECISION ALPHA - INTEGER INCX, INCY, LDA, N - CHARACTER*1 UPLO -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), X( * ), Y( * ) -* .. -* -* Purpose -* ======= -* -* DSYR2 performs the symmetric rank 2 operation -* -* A := alpha*x*y' + alpha*y*x' + A, -* -* where alpha is a scalar, x and y are n element vectors and A is an n -* by n symmetric matrix. -* -* Parameters -* ========== -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the upper or lower -* triangular part of the array A is to be referenced as -* follows: -* -* UPLO = 'U' or 'u' Only the upper triangular part of A -* is to be referenced. -* -* UPLO = 'L' or 'l' Only the lower triangular part of A -* is to be referenced. -* -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the order of the matrix A. -* N must be at least zero. -* Unchanged on exit. -* -* ALPHA - DOUBLE PRECISION. -* On entry, ALPHA specifies the scalar alpha. -* Unchanged on exit. -* -* X - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCX ) ). -* Before entry, the incremented array X must contain the n -* element vector x. -* Unchanged on exit. -* -* INCX - INTEGER. -* On entry, INCX specifies the increment for the elements of -* X. INCX must not be zero. -* Unchanged on exit. -* -* Y - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCY ) ). -* Before entry, the incremented array Y must contain the n -* element vector y. -* Unchanged on exit. -* -* INCY - INTEGER. -* On entry, INCY specifies the increment for the elements of -* Y. INCY must not be zero. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, n ). -* Before entry with UPLO = 'U' or 'u', the leading n by n -* upper triangular part of the array A must contain the upper -* triangular part of the symmetric matrix and the strictly -* lower triangular part of A is not referenced. On exit, the -* upper triangular part of the array A is overwritten by the -* upper triangular part of the updated matrix. -* Before entry with UPLO = 'L' or 'l', the leading n by n -* lower triangular part of the array A must contain the lower -* triangular part of the symmetric matrix and the strictly -* upper triangular part of A is not referenced. On exit, the -* lower triangular part of the array A is overwritten by the -* lower triangular part of the updated matrix. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. LDA must be at least -* max( 1, n ). -* Unchanged on exit. -* -* -* Level 2 Blas routine. -* -* -- Written on 22-October-1986. -* Jack Dongarra, Argonne National Lab. -* Jeremy Du Croz, Nag Central Office. -* Sven Hammarling, Nag Central Office. -* Richard Hanson, Sandia National Labs. -* -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D+0 ) -* .. Local Scalars .. - DOUBLE PRECISION TEMP1, TEMP2 - INTEGER I, INFO, IX, IY, J, JX, JY, KX, KY -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF ( .NOT.LSAME( UPLO, 'U' ).AND. - $ .NOT.LSAME( UPLO, 'L' ) )THEN - INFO = 1 - ELSE IF( N.LT.0 )THEN - INFO = 2 - ELSE IF( INCX.EQ.0 )THEN - INFO = 5 - ELSE IF( INCY.EQ.0 )THEN - INFO = 7 - ELSE IF( LDA.LT.MAX( 1, N ) )THEN - INFO = 9 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DSYR2 ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( ( N.EQ.0 ).OR.( ALPHA.EQ.ZERO ) ) - $ RETURN -* -* Set up the start points in X and Y if the increments are not both -* unity. -* - IF( ( INCX.NE.1 ).OR.( INCY.NE.1 ) )THEN - IF( INCX.GT.0 )THEN - KX = 1 - ELSE - KX = 1 - ( N - 1 )*INCX - END IF - IF( INCY.GT.0 )THEN - KY = 1 - ELSE - KY = 1 - ( N - 1 )*INCY - END IF - JX = KX - JY = KY - END IF -* -* Start the operations. In this version the elements of A are -* accessed sequentially with one pass through the triangular part -* of A. -* - IF( LSAME( UPLO, 'U' ) )THEN -* -* Form A when A is stored in the upper triangle. -* - IF( ( INCX.EQ.1 ).AND.( INCY.EQ.1 ) )THEN - DO 20, J = 1, N - IF( ( X( J ).NE.ZERO ).OR.( Y( J ).NE.ZERO ) )THEN - TEMP1 = ALPHA*Y( J ) - TEMP2 = ALPHA*X( J ) - DO 10, I = 1, J - A( I, J ) = A( I, J ) + X( I )*TEMP1 + Y( I )*TEMP2 - 10 CONTINUE - END IF - 20 CONTINUE - ELSE - DO 40, J = 1, N - IF( ( X( JX ).NE.ZERO ).OR.( Y( JY ).NE.ZERO ) )THEN - TEMP1 = ALPHA*Y( JY ) - TEMP2 = ALPHA*X( JX ) - IX = KX - IY = KY - DO 30, I = 1, J - A( I, J ) = A( I, J ) + X( IX )*TEMP1 - $ + Y( IY )*TEMP2 - IX = IX + INCX - IY = IY + INCY - 30 CONTINUE - END IF - JX = JX + INCX - JY = JY + INCY - 40 CONTINUE - END IF - ELSE -* -* Form A when A is stored in the lower triangle. -* - IF( ( INCX.EQ.1 ).AND.( INCY.EQ.1 ) )THEN - DO 60, J = 1, N - IF( ( X( J ).NE.ZERO ).OR.( Y( J ).NE.ZERO ) )THEN - TEMP1 = ALPHA*Y( J ) - TEMP2 = ALPHA*X( J ) - DO 50, I = J, N - A( I, J ) = A( I, J ) + X( I )*TEMP1 + Y( I )*TEMP2 - 50 CONTINUE - END IF - 60 CONTINUE - ELSE - DO 80, J = 1, N - IF( ( X( JX ).NE.ZERO ).OR.( Y( JY ).NE.ZERO ) )THEN - TEMP1 = ALPHA*Y( JY ) - TEMP2 = ALPHA*X( JX ) - IX = JX - IY = JY - DO 70, I = J, N - A( I, J ) = A( I, J ) + X( IX )*TEMP1 - $ + Y( IY )*TEMP2 - IX = IX + INCX - IY = IY + INCY - 70 CONTINUE - END IF - JX = JX + INCX - JY = JY + INCY - 80 CONTINUE - END IF - END IF -* - RETURN -* -* End of DSYR2 . -* - END diff --git a/Cantera/ext/blas/dsyr2k.f b/Cantera/ext/blas/dsyr2k.f deleted file mode 100755 index ac7d97de6..000000000 --- a/Cantera/ext/blas/dsyr2k.f +++ /dev/null @@ -1,327 +0,0 @@ - SUBROUTINE DSYR2K( UPLO, TRANS, N, K, ALPHA, A, LDA, B, LDB, - $ BETA, C, LDC ) -* .. Scalar Arguments .. - CHARACTER*1 UPLO, TRANS - INTEGER N, K, LDA, LDB, LDC - DOUBLE PRECISION ALPHA, BETA -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), B( LDB, * ), C( LDC, * ) -* .. -* -* Purpose -* ======= -* -* DSYR2K performs one of the symmetric rank 2k operations -* -* C := alpha*A*B' + alpha*B*A' + beta*C, -* -* or -* -* C := alpha*A'*B + alpha*B'*A + beta*C, -* -* where alpha and beta are scalars, C is an n by n symmetric matrix -* and A and B are n by k matrices in the first case and k by n -* matrices in the second case. -* -* Parameters -* ========== -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the upper or lower -* triangular part of the array C is to be referenced as -* follows: -* -* UPLO = 'U' or 'u' Only the upper triangular part of C -* is to be referenced. -* -* UPLO = 'L' or 'l' Only the lower triangular part of C -* is to be referenced. -* -* Unchanged on exit. -* -* TRANS - CHARACTER*1. -* On entry, TRANS specifies the operation to be performed as -* follows: -* -* TRANS = 'N' or 'n' C := alpha*A*B' + alpha*B*A' + -* beta*C. -* -* TRANS = 'T' or 't' C := alpha*A'*B + alpha*B'*A + -* beta*C. -* -* TRANS = 'C' or 'c' C := alpha*A'*B + alpha*B'*A + -* beta*C. -* -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the order of the matrix C. N must be -* at least zero. -* Unchanged on exit. -* -* K - INTEGER. -* On entry with TRANS = 'N' or 'n', K specifies the number -* of columns of the matrices A and B, and on entry with -* TRANS = 'T' or 't' or 'C' or 'c', K specifies the number -* of rows of the matrices A and B. K must be at least zero. -* Unchanged on exit. -* -* ALPHA - DOUBLE PRECISION. -* On entry, ALPHA specifies the scalar alpha. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, ka ), where ka is -* k when TRANS = 'N' or 'n', and is n otherwise. -* Before entry with TRANS = 'N' or 'n', the leading n by k -* part of the array A must contain the matrix A, otherwise -* the leading k by n part of the array A must contain the -* matrix A. -* Unchanged on exit. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. When TRANS = 'N' or 'n' -* then LDA must be at least max( 1, n ), otherwise LDA must -* be at least max( 1, k ). -* Unchanged on exit. -* -* B - DOUBLE PRECISION array of DIMENSION ( LDB, kb ), where kb is -* k when TRANS = 'N' or 'n', and is n otherwise. -* Before entry with TRANS = 'N' or 'n', the leading n by k -* part of the array B must contain the matrix B, otherwise -* the leading k by n part of the array B must contain the -* matrix B. -* Unchanged on exit. -* -* LDB - INTEGER. -* On entry, LDB specifies the first dimension of B as declared -* in the calling (sub) program. When TRANS = 'N' or 'n' -* then LDB must be at least max( 1, n ), otherwise LDB must -* be at least max( 1, k ). -* Unchanged on exit. -* -* BETA - DOUBLE PRECISION. -* On entry, BETA specifies the scalar beta. -* Unchanged on exit. -* -* C - DOUBLE PRECISION array of DIMENSION ( LDC, n ). -* Before entry with UPLO = 'U' or 'u', the leading n by n -* upper triangular part of the array C must contain the upper -* triangular part of the symmetric matrix and the strictly -* lower triangular part of C is not referenced. On exit, the -* upper triangular part of the array C is overwritten by the -* upper triangular part of the updated matrix. -* Before entry with UPLO = 'L' or 'l', the leading n by n -* lower triangular part of the array C must contain the lower -* triangular part of the symmetric matrix and the strictly -* upper triangular part of C is not referenced. On exit, the -* lower triangular part of the array C is overwritten by the -* lower triangular part of the updated matrix. -* -* LDC - INTEGER. -* On entry, LDC specifies the first dimension of C as declared -* in the calling (sub) program. LDC must be at least -* max( 1, n ). -* Unchanged on exit. -* -* -* Level 3 Blas routine. -* -* -* -- Written on 8-February-1989. -* Jack Dongarra, Argonne National Laboratory. -* Iain Duff, AERE Harwell. -* Jeremy Du Croz, Numerical Algorithms Group Ltd. -* Sven Hammarling, Numerical Algorithms Group Ltd. -* -* -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. Local Scalars .. - LOGICAL UPPER - INTEGER I, INFO, J, L, NROWA - DOUBLE PRECISION TEMP1, TEMP2 -* .. Parameters .. - DOUBLE PRECISION ONE , ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - IF( LSAME( TRANS, 'N' ) )THEN - NROWA = N - ELSE - NROWA = K - END IF - UPPER = LSAME( UPLO, 'U' ) -* - INFO = 0 - IF( ( .NOT.UPPER ).AND. - $ ( .NOT.LSAME( UPLO , 'L' ) ) )THEN - INFO = 1 - ELSE IF( ( .NOT.LSAME( TRANS, 'N' ) ).AND. - $ ( .NOT.LSAME( TRANS, 'T' ) ).AND. - $ ( .NOT.LSAME( TRANS, 'C' ) ) )THEN - INFO = 2 - ELSE IF( N .LT.0 )THEN - INFO = 3 - ELSE IF( K .LT.0 )THEN - INFO = 4 - ELSE IF( LDA.LT.MAX( 1, NROWA ) )THEN - INFO = 7 - ELSE IF( LDB.LT.MAX( 1, NROWA ) )THEN - INFO = 9 - ELSE IF( LDC.LT.MAX( 1, N ) )THEN - INFO = 12 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DSYR2K', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( ( N.EQ.0 ).OR. - $ ( ( ( ALPHA.EQ.ZERO ).OR.( K.EQ.0 ) ).AND.( BETA.EQ.ONE ) ) ) - $ RETURN -* -* And when alpha.eq.zero. -* - IF( ALPHA.EQ.ZERO )THEN - IF( UPPER )THEN - IF( BETA.EQ.ZERO )THEN - DO 20, J = 1, N - DO 10, I = 1, J - C( I, J ) = ZERO - 10 CONTINUE - 20 CONTINUE - ELSE - DO 40, J = 1, N - DO 30, I = 1, J - C( I, J ) = BETA*C( I, J ) - 30 CONTINUE - 40 CONTINUE - END IF - ELSE - IF( BETA.EQ.ZERO )THEN - DO 60, J = 1, N - DO 50, I = J, N - C( I, J ) = ZERO - 50 CONTINUE - 60 CONTINUE - ELSE - DO 80, J = 1, N - DO 70, I = J, N - C( I, J ) = BETA*C( I, J ) - 70 CONTINUE - 80 CONTINUE - END IF - END IF - RETURN - END IF -* -* Start the operations. -* - IF( LSAME( TRANS, 'N' ) )THEN -* -* Form C := alpha*A*B' + alpha*B*A' + C. -* - IF( UPPER )THEN - DO 130, J = 1, N - IF( BETA.EQ.ZERO )THEN - DO 90, I = 1, J - C( I, J ) = ZERO - 90 CONTINUE - ELSE IF( BETA.NE.ONE )THEN - DO 100, I = 1, J - C( I, J ) = BETA*C( I, J ) - 100 CONTINUE - END IF - DO 120, L = 1, K - IF( ( A( J, L ).NE.ZERO ).OR. - $ ( B( J, L ).NE.ZERO ) )THEN - TEMP1 = ALPHA*B( J, L ) - TEMP2 = ALPHA*A( J, L ) - DO 110, I = 1, J - C( I, J ) = C( I, J ) + - $ A( I, L )*TEMP1 + B( I, L )*TEMP2 - 110 CONTINUE - END IF - 120 CONTINUE - 130 CONTINUE - ELSE - DO 180, J = 1, N - IF( BETA.EQ.ZERO )THEN - DO 140, I = J, N - C( I, J ) = ZERO - 140 CONTINUE - ELSE IF( BETA.NE.ONE )THEN - DO 150, I = J, N - C( I, J ) = BETA*C( I, J ) - 150 CONTINUE - END IF - DO 170, L = 1, K - IF( ( A( J, L ).NE.ZERO ).OR. - $ ( B( J, L ).NE.ZERO ) )THEN - TEMP1 = ALPHA*B( J, L ) - TEMP2 = ALPHA*A( J, L ) - DO 160, I = J, N - C( I, J ) = C( I, J ) + - $ A( I, L )*TEMP1 + B( I, L )*TEMP2 - 160 CONTINUE - END IF - 170 CONTINUE - 180 CONTINUE - END IF - ELSE -* -* Form C := alpha*A'*B + alpha*B'*A + C. -* - IF( UPPER )THEN - DO 210, J = 1, N - DO 200, I = 1, J - TEMP1 = ZERO - TEMP2 = ZERO - DO 190, L = 1, K - TEMP1 = TEMP1 + A( L, I )*B( L, J ) - TEMP2 = TEMP2 + B( L, I )*A( L, J ) - 190 CONTINUE - IF( BETA.EQ.ZERO )THEN - C( I, J ) = ALPHA*TEMP1 + ALPHA*TEMP2 - ELSE - C( I, J ) = BETA *C( I, J ) + - $ ALPHA*TEMP1 + ALPHA*TEMP2 - END IF - 200 CONTINUE - 210 CONTINUE - ELSE - DO 240, J = 1, N - DO 230, I = J, N - TEMP1 = ZERO - TEMP2 = ZERO - DO 220, L = 1, K - TEMP1 = TEMP1 + A( L, I )*B( L, J ) - TEMP2 = TEMP2 + B( L, I )*A( L, J ) - 220 CONTINUE - IF( BETA.EQ.ZERO )THEN - C( I, J ) = ALPHA*TEMP1 + ALPHA*TEMP2 - ELSE - C( I, J ) = BETA *C( I, J ) + - $ ALPHA*TEMP1 + ALPHA*TEMP2 - END IF - 230 CONTINUE - 240 CONTINUE - END IF - END IF -* - RETURN -* -* End of DSYR2K. -* - END diff --git a/Cantera/ext/blas/dsyrk.f b/Cantera/ext/blas/dsyrk.f deleted file mode 100755 index b618b2968..000000000 --- a/Cantera/ext/blas/dsyrk.f +++ /dev/null @@ -1,294 +0,0 @@ - SUBROUTINE DSYRK ( UPLO, TRANS, N, K, ALPHA, A, LDA, - $ BETA, C, LDC ) -* .. Scalar Arguments .. - CHARACTER*1 UPLO, TRANS - INTEGER N, K, LDA, LDC - DOUBLE PRECISION ALPHA, BETA -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), C( LDC, * ) -* .. -* -* Purpose -* ======= -* -* DSYRK performs one of the symmetric rank k operations -* -* C := alpha*A*A' + beta*C, -* -* or -* -* C := alpha*A'*A + beta*C, -* -* where alpha and beta are scalars, C is an n by n symmetric matrix -* and A is an n by k matrix in the first case and a k by n matrix -* in the second case. -* -* Parameters -* ========== -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the upper or lower -* triangular part of the array C is to be referenced as -* follows: -* -* UPLO = 'U' or 'u' Only the upper triangular part of C -* is to be referenced. -* -* UPLO = 'L' or 'l' Only the lower triangular part of C -* is to be referenced. -* -* Unchanged on exit. -* -* TRANS - CHARACTER*1. -* On entry, TRANS specifies the operation to be performed as -* follows: -* -* TRANS = 'N' or 'n' C := alpha*A*A' + beta*C. -* -* TRANS = 'T' or 't' C := alpha*A'*A + beta*C. -* -* TRANS = 'C' or 'c' C := alpha*A'*A + beta*C. -* -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the order of the matrix C. N must be -* at least zero. -* Unchanged on exit. -* -* K - INTEGER. -* On entry with TRANS = 'N' or 'n', K specifies the number -* of columns of the matrix A, and on entry with -* TRANS = 'T' or 't' or 'C' or 'c', K specifies the number -* of rows of the matrix A. K must be at least zero. -* Unchanged on exit. -* -* ALPHA - DOUBLE PRECISION. -* On entry, ALPHA specifies the scalar alpha. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, ka ), where ka is -* k when TRANS = 'N' or 'n', and is n otherwise. -* Before entry with TRANS = 'N' or 'n', the leading n by k -* part of the array A must contain the matrix A, otherwise -* the leading k by n part of the array A must contain the -* matrix A. -* Unchanged on exit. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. When TRANS = 'N' or 'n' -* then LDA must be at least max( 1, n ), otherwise LDA must -* be at least max( 1, k ). -* Unchanged on exit. -* -* BETA - DOUBLE PRECISION. -* On entry, BETA specifies the scalar beta. -* Unchanged on exit. -* -* C - DOUBLE PRECISION array of DIMENSION ( LDC, n ). -* Before entry with UPLO = 'U' or 'u', the leading n by n -* upper triangular part of the array C must contain the upper -* triangular part of the symmetric matrix and the strictly -* lower triangular part of C is not referenced. On exit, the -* upper triangular part of the array C is overwritten by the -* upper triangular part of the updated matrix. -* Before entry with UPLO = 'L' or 'l', the leading n by n -* lower triangular part of the array C must contain the lower -* triangular part of the symmetric matrix and the strictly -* upper triangular part of C is not referenced. On exit, the -* lower triangular part of the array C is overwritten by the -* lower triangular part of the updated matrix. -* -* LDC - INTEGER. -* On entry, LDC specifies the first dimension of C as declared -* in the calling (sub) program. LDC must be at least -* max( 1, n ). -* Unchanged on exit. -* -* -* Level 3 Blas routine. -* -* -- Written on 8-February-1989. -* Jack Dongarra, Argonne National Laboratory. -* Iain Duff, AERE Harwell. -* Jeremy Du Croz, Numerical Algorithms Group Ltd. -* Sven Hammarling, Numerical Algorithms Group Ltd. -* -* -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. Local Scalars .. - LOGICAL UPPER - INTEGER I, INFO, J, L, NROWA - DOUBLE PRECISION TEMP -* .. Parameters .. - DOUBLE PRECISION ONE , ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - IF( LSAME( TRANS, 'N' ) )THEN - NROWA = N - ELSE - NROWA = K - END IF - UPPER = LSAME( UPLO, 'U' ) -* - INFO = 0 - IF( ( .NOT.UPPER ).AND. - $ ( .NOT.LSAME( UPLO , 'L' ) ) )THEN - INFO = 1 - ELSE IF( ( .NOT.LSAME( TRANS, 'N' ) ).AND. - $ ( .NOT.LSAME( TRANS, 'T' ) ).AND. - $ ( .NOT.LSAME( TRANS, 'C' ) ) )THEN - INFO = 2 - ELSE IF( N .LT.0 )THEN - INFO = 3 - ELSE IF( K .LT.0 )THEN - INFO = 4 - ELSE IF( LDA.LT.MAX( 1, NROWA ) )THEN - INFO = 7 - ELSE IF( LDC.LT.MAX( 1, N ) )THEN - INFO = 10 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DSYRK ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( ( N.EQ.0 ).OR. - $ ( ( ( ALPHA.EQ.ZERO ).OR.( K.EQ.0 ) ).AND.( BETA.EQ.ONE ) ) ) - $ RETURN -* -* And when alpha.eq.zero. -* - IF( ALPHA.EQ.ZERO )THEN - IF( UPPER )THEN - IF( BETA.EQ.ZERO )THEN - DO 20, J = 1, N - DO 10, I = 1, J - C( I, J ) = ZERO - 10 CONTINUE - 20 CONTINUE - ELSE - DO 40, J = 1, N - DO 30, I = 1, J - C( I, J ) = BETA*C( I, J ) - 30 CONTINUE - 40 CONTINUE - END IF - ELSE - IF( BETA.EQ.ZERO )THEN - DO 60, J = 1, N - DO 50, I = J, N - C( I, J ) = ZERO - 50 CONTINUE - 60 CONTINUE - ELSE - DO 80, J = 1, N - DO 70, I = J, N - C( I, J ) = BETA*C( I, J ) - 70 CONTINUE - 80 CONTINUE - END IF - END IF - RETURN - END IF -* -* Start the operations. -* - IF( LSAME( TRANS, 'N' ) )THEN -* -* Form C := alpha*A*A' + beta*C. -* - IF( UPPER )THEN - DO 130, J = 1, N - IF( BETA.EQ.ZERO )THEN - DO 90, I = 1, J - C( I, J ) = ZERO - 90 CONTINUE - ELSE IF( BETA.NE.ONE )THEN - DO 100, I = 1, J - C( I, J ) = BETA*C( I, J ) - 100 CONTINUE - END IF - DO 120, L = 1, K - IF( A( J, L ).NE.ZERO )THEN - TEMP = ALPHA*A( J, L ) - DO 110, I = 1, J - C( I, J ) = C( I, J ) + TEMP*A( I, L ) - 110 CONTINUE - END IF - 120 CONTINUE - 130 CONTINUE - ELSE - DO 180, J = 1, N - IF( BETA.EQ.ZERO )THEN - DO 140, I = J, N - C( I, J ) = ZERO - 140 CONTINUE - ELSE IF( BETA.NE.ONE )THEN - DO 150, I = J, N - C( I, J ) = BETA*C( I, J ) - 150 CONTINUE - END IF - DO 170, L = 1, K - IF( A( J, L ).NE.ZERO )THEN - TEMP = ALPHA*A( J, L ) - DO 160, I = J, N - C( I, J ) = C( I, J ) + TEMP*A( I, L ) - 160 CONTINUE - END IF - 170 CONTINUE - 180 CONTINUE - END IF - ELSE -* -* Form C := alpha*A'*A + beta*C. -* - IF( UPPER )THEN - DO 210, J = 1, N - DO 200, I = 1, J - TEMP = ZERO - DO 190, L = 1, K - TEMP = TEMP + A( L, I )*A( L, J ) - 190 CONTINUE - IF( BETA.EQ.ZERO )THEN - C( I, J ) = ALPHA*TEMP - ELSE - C( I, J ) = ALPHA*TEMP + BETA*C( I, J ) - END IF - 200 CONTINUE - 210 CONTINUE - ELSE - DO 240, J = 1, N - DO 230, I = J, N - TEMP = ZERO - DO 220, L = 1, K - TEMP = TEMP + A( L, I )*A( L, J ) - 220 CONTINUE - IF( BETA.EQ.ZERO )THEN - C( I, J ) = ALPHA*TEMP - ELSE - C( I, J ) = ALPHA*TEMP + BETA*C( I, J ) - END IF - 230 CONTINUE - 240 CONTINUE - END IF - END IF -* - RETURN -* -* End of DSYRK . -* - END diff --git a/Cantera/ext/blas/dtbmv.f b/Cantera/ext/blas/dtbmv.f deleted file mode 100755 index 1363db79c..000000000 --- a/Cantera/ext/blas/dtbmv.f +++ /dev/null @@ -1,342 +0,0 @@ - SUBROUTINE DTBMV ( UPLO, TRANS, DIAG, N, K, A, LDA, X, INCX ) -* .. Scalar Arguments .. - INTEGER INCX, K, LDA, N - CHARACTER*1 DIAG, TRANS, UPLO -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), X( * ) -* .. -* -* Purpose -* ======= -* -* DTBMV performs one of the matrix-vector operations -* -* x := A*x, or x := A'*x, -* -* where x is an n element vector and A is an n by n unit, or non-unit, -* upper or lower triangular band matrix, with ( k + 1 ) diagonals. -* -* Parameters -* ========== -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the matrix is an upper or -* lower triangular matrix as follows: -* -* UPLO = 'U' or 'u' A is an upper triangular matrix. -* -* UPLO = 'L' or 'l' A is a lower triangular matrix. -* -* Unchanged on exit. -* -* TRANS - CHARACTER*1. -* On entry, TRANS specifies the operation to be performed as -* follows: -* -* TRANS = 'N' or 'n' x := A*x. -* -* TRANS = 'T' or 't' x := A'*x. -* -* TRANS = 'C' or 'c' x := A'*x. -* -* Unchanged on exit. -* -* DIAG - CHARACTER*1. -* On entry, DIAG specifies whether or not A is unit -* triangular as follows: -* -* DIAG = 'U' or 'u' A is assumed to be unit triangular. -* -* DIAG = 'N' or 'n' A is not assumed to be unit -* triangular. -* -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the order of the matrix A. -* N must be at least zero. -* Unchanged on exit. -* -* K - INTEGER. -* On entry with UPLO = 'U' or 'u', K specifies the number of -* super-diagonals of the matrix A. -* On entry with UPLO = 'L' or 'l', K specifies the number of -* sub-diagonals of the matrix A. -* K must satisfy 0 .le. K. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, n ). -* Before entry with UPLO = 'U' or 'u', the leading ( k + 1 ) -* by n part of the array A must contain the upper triangular -* band part of the matrix of coefficients, supplied column by -* column, with the leading diagonal of the matrix in row -* ( k + 1 ) of the array, the first super-diagonal starting at -* position 2 in row k, and so on. The top left k by k triangle -* of the array A is not referenced. -* The following program segment will transfer an upper -* triangular band matrix from conventional full matrix storage -* to band storage: -* -* DO 20, J = 1, N -* M = K + 1 - J -* DO 10, I = MAX( 1, J - K ), J -* A( M + I, J ) = matrix( I, J ) -* 10 CONTINUE -* 20 CONTINUE -* -* Before entry with UPLO = 'L' or 'l', the leading ( k + 1 ) -* by n part of the array A must contain the lower triangular -* band part of the matrix of coefficients, supplied column by -* column, with the leading diagonal of the matrix in row 1 of -* the array, the first sub-diagonal starting at position 1 in -* row 2, and so on. The bottom right k by k triangle of the -* array A is not referenced. -* The following program segment will transfer a lower -* triangular band matrix from conventional full matrix storage -* to band storage: -* -* DO 20, J = 1, N -* M = 1 - J -* DO 10, I = J, MIN( N, J + K ) -* A( M + I, J ) = matrix( I, J ) -* 10 CONTINUE -* 20 CONTINUE -* -* Note that when DIAG = 'U' or 'u' the elements of the array A -* corresponding to the diagonal elements of the matrix are not -* referenced, but are assumed to be unity. -* Unchanged on exit. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. LDA must be at least -* ( k + 1 ). -* Unchanged on exit. -* -* X - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCX ) ). -* Before entry, the incremented array X must contain the n -* element vector x. On exit, X is overwritten with the -* tranformed vector x. -* -* INCX - INTEGER. -* On entry, INCX specifies the increment for the elements of -* X. INCX must not be zero. -* Unchanged on exit. -* -* -* Level 2 Blas routine. -* -* -- Written on 22-October-1986. -* Jack Dongarra, Argonne National Lab. -* Jeremy Du Croz, Nag Central Office. -* Sven Hammarling, Nag Central Office. -* Richard Hanson, Sandia National Labs. -* -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D+0 ) -* .. Local Scalars .. - DOUBLE PRECISION TEMP - INTEGER I, INFO, IX, J, JX, KPLUS1, KX, L - LOGICAL NOUNIT -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF ( .NOT.LSAME( UPLO , 'U' ).AND. - $ .NOT.LSAME( UPLO , 'L' ) )THEN - INFO = 1 - ELSE IF( .NOT.LSAME( TRANS, 'N' ).AND. - $ .NOT.LSAME( TRANS, 'T' ).AND. - $ .NOT.LSAME( TRANS, 'C' ) )THEN - INFO = 2 - ELSE IF( .NOT.LSAME( DIAG , 'U' ).AND. - $ .NOT.LSAME( DIAG , 'N' ) )THEN - INFO = 3 - ELSE IF( N.LT.0 )THEN - INFO = 4 - ELSE IF( K.LT.0 )THEN - INFO = 5 - ELSE IF( LDA.LT.( K + 1 ) )THEN - INFO = 7 - ELSE IF( INCX.EQ.0 )THEN - INFO = 9 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DTBMV ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( N.EQ.0 ) - $ RETURN -* - NOUNIT = LSAME( DIAG, 'N' ) -* -* Set up the start point in X if the increment is not unity. This -* will be ( N - 1 )*INCX too small for descending loops. -* - IF( INCX.LE.0 )THEN - KX = 1 - ( N - 1 )*INCX - ELSE IF( INCX.NE.1 )THEN - KX = 1 - END IF -* -* Start the operations. In this version the elements of A are -* accessed sequentially with one pass through A. -* - IF( LSAME( TRANS, 'N' ) )THEN -* -* Form x := A*x. -* - IF( LSAME( UPLO, 'U' ) )THEN - KPLUS1 = K + 1 - IF( INCX.EQ.1 )THEN - DO 20, J = 1, N - IF( X( J ).NE.ZERO )THEN - TEMP = X( J ) - L = KPLUS1 - J - DO 10, I = MAX( 1, J - K ), J - 1 - X( I ) = X( I ) + TEMP*A( L + I, J ) - 10 CONTINUE - IF( NOUNIT ) - $ X( J ) = X( J )*A( KPLUS1, J ) - END IF - 20 CONTINUE - ELSE - JX = KX - DO 40, J = 1, N - IF( X( JX ).NE.ZERO )THEN - TEMP = X( JX ) - IX = KX - L = KPLUS1 - J - DO 30, I = MAX( 1, J - K ), J - 1 - X( IX ) = X( IX ) + TEMP*A( L + I, J ) - IX = IX + INCX - 30 CONTINUE - IF( NOUNIT ) - $ X( JX ) = X( JX )*A( KPLUS1, J ) - END IF - JX = JX + INCX - IF( J.GT.K ) - $ KX = KX + INCX - 40 CONTINUE - END IF - ELSE - IF( INCX.EQ.1 )THEN - DO 60, J = N, 1, -1 - IF( X( J ).NE.ZERO )THEN - TEMP = X( J ) - L = 1 - J - DO 50, I = MIN( N, J + K ), J + 1, -1 - X( I ) = X( I ) + TEMP*A( L + I, J ) - 50 CONTINUE - IF( NOUNIT ) - $ X( J ) = X( J )*A( 1, J ) - END IF - 60 CONTINUE - ELSE - KX = KX + ( N - 1 )*INCX - JX = KX - DO 80, J = N, 1, -1 - IF( X( JX ).NE.ZERO )THEN - TEMP = X( JX ) - IX = KX - L = 1 - J - DO 70, I = MIN( N, J + K ), J + 1, -1 - X( IX ) = X( IX ) + TEMP*A( L + I, J ) - IX = IX - INCX - 70 CONTINUE - IF( NOUNIT ) - $ X( JX ) = X( JX )*A( 1, J ) - END IF - JX = JX - INCX - IF( ( N - J ).GE.K ) - $ KX = KX - INCX - 80 CONTINUE - END IF - END IF - ELSE -* -* Form x := A'*x. -* - IF( LSAME( UPLO, 'U' ) )THEN - KPLUS1 = K + 1 - IF( INCX.EQ.1 )THEN - DO 100, J = N, 1, -1 - TEMP = X( J ) - L = KPLUS1 - J - IF( NOUNIT ) - $ TEMP = TEMP*A( KPLUS1, J ) - DO 90, I = J - 1, MAX( 1, J - K ), -1 - TEMP = TEMP + A( L + I, J )*X( I ) - 90 CONTINUE - X( J ) = TEMP - 100 CONTINUE - ELSE - KX = KX + ( N - 1 )*INCX - JX = KX - DO 120, J = N, 1, -1 - TEMP = X( JX ) - KX = KX - INCX - IX = KX - L = KPLUS1 - J - IF( NOUNIT ) - $ TEMP = TEMP*A( KPLUS1, J ) - DO 110, I = J - 1, MAX( 1, J - K ), -1 - TEMP = TEMP + A( L + I, J )*X( IX ) - IX = IX - INCX - 110 CONTINUE - X( JX ) = TEMP - JX = JX - INCX - 120 CONTINUE - END IF - ELSE - IF( INCX.EQ.1 )THEN - DO 140, J = 1, N - TEMP = X( J ) - L = 1 - J - IF( NOUNIT ) - $ TEMP = TEMP*A( 1, J ) - DO 130, I = J + 1, MIN( N, J + K ) - TEMP = TEMP + A( L + I, J )*X( I ) - 130 CONTINUE - X( J ) = TEMP - 140 CONTINUE - ELSE - JX = KX - DO 160, J = 1, N - TEMP = X( JX ) - KX = KX + INCX - IX = KX - L = 1 - J - IF( NOUNIT ) - $ TEMP = TEMP*A( 1, J ) - DO 150, I = J + 1, MIN( N, J + K ) - TEMP = TEMP + A( L + I, J )*X( IX ) - IX = IX + INCX - 150 CONTINUE - X( JX ) = TEMP - JX = JX + INCX - 160 CONTINUE - END IF - END IF - END IF -* - RETURN -* -* End of DTBMV . -* - END diff --git a/Cantera/ext/blas/dtbsv.f b/Cantera/ext/blas/dtbsv.f deleted file mode 100755 index d87ed82d5..000000000 --- a/Cantera/ext/blas/dtbsv.f +++ /dev/null @@ -1,346 +0,0 @@ - SUBROUTINE DTBSV ( UPLO, TRANS, DIAG, N, K, A, LDA, X, INCX ) -* .. Scalar Arguments .. - INTEGER INCX, K, LDA, N - CHARACTER*1 DIAG, TRANS, UPLO -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), X( * ) -* .. -* -* Purpose -* ======= -* -* DTBSV solves one of the systems of equations -* -* A*x = b, or A'*x = b, -* -* where b and x are n element vectors and A is an n by n unit, or -* non-unit, upper or lower triangular band matrix, with ( k + 1 ) -* diagonals. -* -* No test for singularity or near-singularity is included in this -* routine. Such tests must be performed before calling this routine. -* -* Parameters -* ========== -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the matrix is an upper or -* lower triangular matrix as follows: -* -* UPLO = 'U' or 'u' A is an upper triangular matrix. -* -* UPLO = 'L' or 'l' A is a lower triangular matrix. -* -* Unchanged on exit. -* -* TRANS - CHARACTER*1. -* On entry, TRANS specifies the equations to be solved as -* follows: -* -* TRANS = 'N' or 'n' A*x = b. -* -* TRANS = 'T' or 't' A'*x = b. -* -* TRANS = 'C' or 'c' A'*x = b. -* -* Unchanged on exit. -* -* DIAG - CHARACTER*1. -* On entry, DIAG specifies whether or not A is unit -* triangular as follows: -* -* DIAG = 'U' or 'u' A is assumed to be unit triangular. -* -* DIAG = 'N' or 'n' A is not assumed to be unit -* triangular. -* -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the order of the matrix A. -* N must be at least zero. -* Unchanged on exit. -* -* K - INTEGER. -* On entry with UPLO = 'U' or 'u', K specifies the number of -* super-diagonals of the matrix A. -* On entry with UPLO = 'L' or 'l', K specifies the number of -* sub-diagonals of the matrix A. -* K must satisfy 0 .le. K. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, n ). -* Before entry with UPLO = 'U' or 'u', the leading ( k + 1 ) -* by n part of the array A must contain the upper triangular -* band part of the matrix of coefficients, supplied column by -* column, with the leading diagonal of the matrix in row -* ( k + 1 ) of the array, the first super-diagonal starting at -* position 2 in row k, and so on. The top left k by k triangle -* of the array A is not referenced. -* The following program segment will transfer an upper -* triangular band matrix from conventional full matrix storage -* to band storage: -* -* DO 20, J = 1, N -* M = K + 1 - J -* DO 10, I = MAX( 1, J - K ), J -* A( M + I, J ) = matrix( I, J ) -* 10 CONTINUE -* 20 CONTINUE -* -* Before entry with UPLO = 'L' or 'l', the leading ( k + 1 ) -* by n part of the array A must contain the lower triangular -* band part of the matrix of coefficients, supplied column by -* column, with the leading diagonal of the matrix in row 1 of -* the array, the first sub-diagonal starting at position 1 in -* row 2, and so on. The bottom right k by k triangle of the -* array A is not referenced. -* The following program segment will transfer a lower -* triangular band matrix from conventional full matrix storage -* to band storage: -* -* DO 20, J = 1, N -* M = 1 - J -* DO 10, I = J, MIN( N, J + K ) -* A( M + I, J ) = matrix( I, J ) -* 10 CONTINUE -* 20 CONTINUE -* -* Note that when DIAG = 'U' or 'u' the elements of the array A -* corresponding to the diagonal elements of the matrix are not -* referenced, but are assumed to be unity. -* Unchanged on exit. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. LDA must be at least -* ( k + 1 ). -* Unchanged on exit. -* -* X - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCX ) ). -* Before entry, the incremented array X must contain the n -* element right-hand side vector b. On exit, X is overwritten -* with the solution vector x. -* -* INCX - INTEGER. -* On entry, INCX specifies the increment for the elements of -* X. INCX must not be zero. -* Unchanged on exit. -* -* -* Level 2 Blas routine. -* -* -- Written on 22-October-1986. -* Jack Dongarra, Argonne National Lab. -* Jeremy Du Croz, Nag Central Office. -* Sven Hammarling, Nag Central Office. -* Richard Hanson, Sandia National Labs. -* -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D+0 ) -* .. Local Scalars .. - DOUBLE PRECISION TEMP - INTEGER I, INFO, IX, J, JX, KPLUS1, KX, L - LOGICAL NOUNIT -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF ( .NOT.LSAME( UPLO , 'U' ).AND. - $ .NOT.LSAME( UPLO , 'L' ) )THEN - INFO = 1 - ELSE IF( .NOT.LSAME( TRANS, 'N' ).AND. - $ .NOT.LSAME( TRANS, 'T' ).AND. - $ .NOT.LSAME( TRANS, 'C' ) )THEN - INFO = 2 - ELSE IF( .NOT.LSAME( DIAG , 'U' ).AND. - $ .NOT.LSAME( DIAG , 'N' ) )THEN - INFO = 3 - ELSE IF( N.LT.0 )THEN - INFO = 4 - ELSE IF( K.LT.0 )THEN - INFO = 5 - ELSE IF( LDA.LT.( K + 1 ) )THEN - INFO = 7 - ELSE IF( INCX.EQ.0 )THEN - INFO = 9 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DTBSV ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( N.EQ.0 ) - $ RETURN -* - NOUNIT = LSAME( DIAG, 'N' ) -* -* Set up the start point in X if the increment is not unity. This -* will be ( N - 1 )*INCX too small for descending loops. -* - IF( INCX.LE.0 )THEN - KX = 1 - ( N - 1 )*INCX - ELSE IF( INCX.NE.1 )THEN - KX = 1 - END IF -* -* Start the operations. In this version the elements of A are -* accessed by sequentially with one pass through A. -* - IF( LSAME( TRANS, 'N' ) )THEN -* -* Form x := inv( A )*x. -* - IF( LSAME( UPLO, 'U' ) )THEN - KPLUS1 = K + 1 - IF( INCX.EQ.1 )THEN - DO 20, J = N, 1, -1 - IF( X( J ).NE.ZERO )THEN - L = KPLUS1 - J - IF( NOUNIT ) - $ X( J ) = X( J )/A( KPLUS1, J ) - TEMP = X( J ) - DO 10, I = J - 1, MAX( 1, J - K ), -1 - X( I ) = X( I ) - TEMP*A( L + I, J ) - 10 CONTINUE - END IF - 20 CONTINUE - ELSE - KX = KX + ( N - 1 )*INCX - JX = KX - DO 40, J = N, 1, -1 - KX = KX - INCX - IF( X( JX ).NE.ZERO )THEN - IX = KX - L = KPLUS1 - J - IF( NOUNIT ) - $ X( JX ) = X( JX )/A( KPLUS1, J ) - TEMP = X( JX ) - DO 30, I = J - 1, MAX( 1, J - K ), -1 - X( IX ) = X( IX ) - TEMP*A( L + I, J ) - IX = IX - INCX - 30 CONTINUE - END IF - JX = JX - INCX - 40 CONTINUE - END IF - ELSE - IF( INCX.EQ.1 )THEN - DO 60, J = 1, N - IF( X( J ).NE.ZERO )THEN - L = 1 - J - IF( NOUNIT ) - $ X( J ) = X( J )/A( 1, J ) - TEMP = X( J ) - DO 50, I = J + 1, MIN( N, J + K ) - X( I ) = X( I ) - TEMP*A( L + I, J ) - 50 CONTINUE - END IF - 60 CONTINUE - ELSE - JX = KX - DO 80, J = 1, N - KX = KX + INCX - IF( X( JX ).NE.ZERO )THEN - IX = KX - L = 1 - J - IF( NOUNIT ) - $ X( JX ) = X( JX )/A( 1, J ) - TEMP = X( JX ) - DO 70, I = J + 1, MIN( N, J + K ) - X( IX ) = X( IX ) - TEMP*A( L + I, J ) - IX = IX + INCX - 70 CONTINUE - END IF - JX = JX + INCX - 80 CONTINUE - END IF - END IF - ELSE -* -* Form x := inv( A')*x. -* - IF( LSAME( UPLO, 'U' ) )THEN - KPLUS1 = K + 1 - IF( INCX.EQ.1 )THEN - DO 100, J = 1, N - TEMP = X( J ) - L = KPLUS1 - J - DO 90, I = MAX( 1, J - K ), J - 1 - TEMP = TEMP - A( L + I, J )*X( I ) - 90 CONTINUE - IF( NOUNIT ) - $ TEMP = TEMP/A( KPLUS1, J ) - X( J ) = TEMP - 100 CONTINUE - ELSE - JX = KX - DO 120, J = 1, N - TEMP = X( JX ) - IX = KX - L = KPLUS1 - J - DO 110, I = MAX( 1, J - K ), J - 1 - TEMP = TEMP - A( L + I, J )*X( IX ) - IX = IX + INCX - 110 CONTINUE - IF( NOUNIT ) - $ TEMP = TEMP/A( KPLUS1, J ) - X( JX ) = TEMP - JX = JX + INCX - IF( J.GT.K ) - $ KX = KX + INCX - 120 CONTINUE - END IF - ELSE - IF( INCX.EQ.1 )THEN - DO 140, J = N, 1, -1 - TEMP = X( J ) - L = 1 - J - DO 130, I = MIN( N, J + K ), J + 1, -1 - TEMP = TEMP - A( L + I, J )*X( I ) - 130 CONTINUE - IF( NOUNIT ) - $ TEMP = TEMP/A( 1, J ) - X( J ) = TEMP - 140 CONTINUE - ELSE - KX = KX + ( N - 1 )*INCX - JX = KX - DO 160, J = N, 1, -1 - TEMP = X( JX ) - IX = KX - L = 1 - J - DO 150, I = MIN( N, J + K ), J + 1, -1 - TEMP = TEMP - A( L + I, J )*X( IX ) - IX = IX - INCX - 150 CONTINUE - IF( NOUNIT ) - $ TEMP = TEMP/A( 1, J ) - X( JX ) = TEMP - JX = JX - INCX - IF( ( N - J ).GE.K ) - $ KX = KX - INCX - 160 CONTINUE - END IF - END IF - END IF -* - RETURN -* -* End of DTBSV . -* - END diff --git a/Cantera/ext/blas/dtpmv.f b/Cantera/ext/blas/dtpmv.f deleted file mode 100755 index ee11bc1b0..000000000 --- a/Cantera/ext/blas/dtpmv.f +++ /dev/null @@ -1,299 +0,0 @@ - SUBROUTINE DTPMV ( UPLO, TRANS, DIAG, N, AP, X, INCX ) -* .. Scalar Arguments .. - INTEGER INCX, N - CHARACTER*1 DIAG, TRANS, UPLO -* .. Array Arguments .. - DOUBLE PRECISION AP( * ), X( * ) -* .. -* -* Purpose -* ======= -* -* DTPMV performs one of the matrix-vector operations -* -* x := A*x, or x := A'*x, -* -* where x is an n element vector and A is an n by n unit, or non-unit, -* upper or lower triangular matrix, supplied in packed form. -* -* Parameters -* ========== -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the matrix is an upper or -* lower triangular matrix as follows: -* -* UPLO = 'U' or 'u' A is an upper triangular matrix. -* -* UPLO = 'L' or 'l' A is a lower triangular matrix. -* -* Unchanged on exit. -* -* TRANS - CHARACTER*1. -* On entry, TRANS specifies the operation to be performed as -* follows: -* -* TRANS = 'N' or 'n' x := A*x. -* -* TRANS = 'T' or 't' x := A'*x. -* -* TRANS = 'C' or 'c' x := A'*x. -* -* Unchanged on exit. -* -* DIAG - CHARACTER*1. -* On entry, DIAG specifies whether or not A is unit -* triangular as follows: -* -* DIAG = 'U' or 'u' A is assumed to be unit triangular. -* -* DIAG = 'N' or 'n' A is not assumed to be unit -* triangular. -* -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the order of the matrix A. -* N must be at least zero. -* Unchanged on exit. -* -* AP - DOUBLE PRECISION array of DIMENSION at least -* ( ( n*( n + 1 ) )/2 ). -* Before entry with UPLO = 'U' or 'u', the array AP must -* contain the upper triangular matrix packed sequentially, -* column by column, so that AP( 1 ) contains a( 1, 1 ), -* AP( 2 ) and AP( 3 ) contain a( 1, 2 ) and a( 2, 2 ) -* respectively, and so on. -* Before entry with UPLO = 'L' or 'l', the array AP must -* contain the lower triangular matrix packed sequentially, -* column by column, so that AP( 1 ) contains a( 1, 1 ), -* AP( 2 ) and AP( 3 ) contain a( 2, 1 ) and a( 3, 1 ) -* respectively, and so on. -* Note that when DIAG = 'U' or 'u', the diagonal elements of -* A are not referenced, but are assumed to be unity. -* Unchanged on exit. -* -* X - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCX ) ). -* Before entry, the incremented array X must contain the n -* element vector x. On exit, X is overwritten with the -* tranformed vector x. -* -* INCX - INTEGER. -* On entry, INCX specifies the increment for the elements of -* X. INCX must not be zero. -* Unchanged on exit. -* -* -* Level 2 Blas routine. -* -* -- Written on 22-October-1986. -* Jack Dongarra, Argonne National Lab. -* Jeremy Du Croz, Nag Central Office. -* Sven Hammarling, Nag Central Office. -* Richard Hanson, Sandia National Labs. -* -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D+0 ) -* .. Local Scalars .. - DOUBLE PRECISION TEMP - INTEGER I, INFO, IX, J, JX, K, KK, KX - LOGICAL NOUNIT -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF ( .NOT.LSAME( UPLO , 'U' ).AND. - $ .NOT.LSAME( UPLO , 'L' ) )THEN - INFO = 1 - ELSE IF( .NOT.LSAME( TRANS, 'N' ).AND. - $ .NOT.LSAME( TRANS, 'T' ).AND. - $ .NOT.LSAME( TRANS, 'C' ) )THEN - INFO = 2 - ELSE IF( .NOT.LSAME( DIAG , 'U' ).AND. - $ .NOT.LSAME( DIAG , 'N' ) )THEN - INFO = 3 - ELSE IF( N.LT.0 )THEN - INFO = 4 - ELSE IF( INCX.EQ.0 )THEN - INFO = 7 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DTPMV ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( N.EQ.0 ) - $ RETURN -* - NOUNIT = LSAME( DIAG, 'N' ) -* -* Set up the start point in X if the increment is not unity. This -* will be ( N - 1 )*INCX too small for descending loops. -* - IF( INCX.LE.0 )THEN - KX = 1 - ( N - 1 )*INCX - ELSE IF( INCX.NE.1 )THEN - KX = 1 - END IF -* -* Start the operations. In this version the elements of AP are -* accessed sequentially with one pass through AP. -* - IF( LSAME( TRANS, 'N' ) )THEN -* -* Form x:= A*x. -* - IF( LSAME( UPLO, 'U' ) )THEN - KK =1 - IF( INCX.EQ.1 )THEN - DO 20, J = 1, N - IF( X( J ).NE.ZERO )THEN - TEMP = X( J ) - K = KK - DO 10, I = 1, J - 1 - X( I ) = X( I ) + TEMP*AP( K ) - K = K + 1 - 10 CONTINUE - IF( NOUNIT ) - $ X( J ) = X( J )*AP( KK + J - 1 ) - END IF - KK = KK + J - 20 CONTINUE - ELSE - JX = KX - DO 40, J = 1, N - IF( X( JX ).NE.ZERO )THEN - TEMP = X( JX ) - IX = KX - DO 30, K = KK, KK + J - 2 - X( IX ) = X( IX ) + TEMP*AP( K ) - IX = IX + INCX - 30 CONTINUE - IF( NOUNIT ) - $ X( JX ) = X( JX )*AP( KK + J - 1 ) - END IF - JX = JX + INCX - KK = KK + J - 40 CONTINUE - END IF - ELSE - KK = ( N*( N + 1 ) )/2 - IF( INCX.EQ.1 )THEN - DO 60, J = N, 1, -1 - IF( X( J ).NE.ZERO )THEN - TEMP = X( J ) - K = KK - DO 50, I = N, J + 1, -1 - X( I ) = X( I ) + TEMP*AP( K ) - K = K - 1 - 50 CONTINUE - IF( NOUNIT ) - $ X( J ) = X( J )*AP( KK - N + J ) - END IF - KK = KK - ( N - J + 1 ) - 60 CONTINUE - ELSE - KX = KX + ( N - 1 )*INCX - JX = KX - DO 80, J = N, 1, -1 - IF( X( JX ).NE.ZERO )THEN - TEMP = X( JX ) - IX = KX - DO 70, K = KK, KK - ( N - ( J + 1 ) ), -1 - X( IX ) = X( IX ) + TEMP*AP( K ) - IX = IX - INCX - 70 CONTINUE - IF( NOUNIT ) - $ X( JX ) = X( JX )*AP( KK - N + J ) - END IF - JX = JX - INCX - KK = KK - ( N - J + 1 ) - 80 CONTINUE - END IF - END IF - ELSE -* -* Form x := A'*x. -* - IF( LSAME( UPLO, 'U' ) )THEN - KK = ( N*( N + 1 ) )/2 - IF( INCX.EQ.1 )THEN - DO 100, J = N, 1, -1 - TEMP = X( J ) - IF( NOUNIT ) - $ TEMP = TEMP*AP( KK ) - K = KK - 1 - DO 90, I = J - 1, 1, -1 - TEMP = TEMP + AP( K )*X( I ) - K = K - 1 - 90 CONTINUE - X( J ) = TEMP - KK = KK - J - 100 CONTINUE - ELSE - JX = KX + ( N - 1 )*INCX - DO 120, J = N, 1, -1 - TEMP = X( JX ) - IX = JX - IF( NOUNIT ) - $ TEMP = TEMP*AP( KK ) - DO 110, K = KK - 1, KK - J + 1, -1 - IX = IX - INCX - TEMP = TEMP + AP( K )*X( IX ) - 110 CONTINUE - X( JX ) = TEMP - JX = JX - INCX - KK = KK - J - 120 CONTINUE - END IF - ELSE - KK = 1 - IF( INCX.EQ.1 )THEN - DO 140, J = 1, N - TEMP = X( J ) - IF( NOUNIT ) - $ TEMP = TEMP*AP( KK ) - K = KK + 1 - DO 130, I = J + 1, N - TEMP = TEMP + AP( K )*X( I ) - K = K + 1 - 130 CONTINUE - X( J ) = TEMP - KK = KK + ( N - J + 1 ) - 140 CONTINUE - ELSE - JX = KX - DO 160, J = 1, N - TEMP = X( JX ) - IX = JX - IF( NOUNIT ) - $ TEMP = TEMP*AP( KK ) - DO 150, K = KK + 1, KK + N - J - IX = IX + INCX - TEMP = TEMP + AP( K )*X( IX ) - 150 CONTINUE - X( JX ) = TEMP - JX = JX + INCX - KK = KK + ( N - J + 1 ) - 160 CONTINUE - END IF - END IF - END IF -* - RETURN -* -* End of DTPMV . -* - END diff --git a/Cantera/ext/blas/dtpsv.f b/Cantera/ext/blas/dtpsv.f deleted file mode 100755 index 91930d9fb..000000000 --- a/Cantera/ext/blas/dtpsv.f +++ /dev/null @@ -1,302 +0,0 @@ - SUBROUTINE DTPSV ( UPLO, TRANS, DIAG, N, AP, X, INCX ) -* .. Scalar Arguments .. - INTEGER INCX, N - CHARACTER*1 DIAG, TRANS, UPLO -* .. Array Arguments .. - DOUBLE PRECISION AP( * ), X( * ) -* .. -* -* Purpose -* ======= -* -* DTPSV solves one of the systems of equations -* -* A*x = b, or A'*x = b, -* -* where b and x are n element vectors and A is an n by n unit, or -* non-unit, upper or lower triangular matrix, supplied in packed form. -* -* No test for singularity or near-singularity is included in this -* routine. Such tests must be performed before calling this routine. -* -* Parameters -* ========== -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the matrix is an upper or -* lower triangular matrix as follows: -* -* UPLO = 'U' or 'u' A is an upper triangular matrix. -* -* UPLO = 'L' or 'l' A is a lower triangular matrix. -* -* Unchanged on exit. -* -* TRANS - CHARACTER*1. -* On entry, TRANS specifies the equations to be solved as -* follows: -* -* TRANS = 'N' or 'n' A*x = b. -* -* TRANS = 'T' or 't' A'*x = b. -* -* TRANS = 'C' or 'c' A'*x = b. -* -* Unchanged on exit. -* -* DIAG - CHARACTER*1. -* On entry, DIAG specifies whether or not A is unit -* triangular as follows: -* -* DIAG = 'U' or 'u' A is assumed to be unit triangular. -* -* DIAG = 'N' or 'n' A is not assumed to be unit -* triangular. -* -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the order of the matrix A. -* N must be at least zero. -* Unchanged on exit. -* -* AP - DOUBLE PRECISION array of DIMENSION at least -* ( ( n*( n + 1 ) )/2 ). -* Before entry with UPLO = 'U' or 'u', the array AP must -* contain the upper triangular matrix packed sequentially, -* column by column, so that AP( 1 ) contains a( 1, 1 ), -* AP( 2 ) and AP( 3 ) contain a( 1, 2 ) and a( 2, 2 ) -* respectively, and so on. -* Before entry with UPLO = 'L' or 'l', the array AP must -* contain the lower triangular matrix packed sequentially, -* column by column, so that AP( 1 ) contains a( 1, 1 ), -* AP( 2 ) and AP( 3 ) contain a( 2, 1 ) and a( 3, 1 ) -* respectively, and so on. -* Note that when DIAG = 'U' or 'u', the diagonal elements of -* A are not referenced, but are assumed to be unity. -* Unchanged on exit. -* -* X - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCX ) ). -* Before entry, the incremented array X must contain the n -* element right-hand side vector b. On exit, X is overwritten -* with the solution vector x. -* -* INCX - INTEGER. -* On entry, INCX specifies the increment for the elements of -* X. INCX must not be zero. -* Unchanged on exit. -* -* -* Level 2 Blas routine. -* -* -- Written on 22-October-1986. -* Jack Dongarra, Argonne National Lab. -* Jeremy Du Croz, Nag Central Office. -* Sven Hammarling, Nag Central Office. -* Richard Hanson, Sandia National Labs. -* -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D+0 ) -* .. Local Scalars .. - DOUBLE PRECISION TEMP - INTEGER I, INFO, IX, J, JX, K, KK, KX - LOGICAL NOUNIT -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF ( .NOT.LSAME( UPLO , 'U' ).AND. - $ .NOT.LSAME( UPLO , 'L' ) )THEN - INFO = 1 - ELSE IF( .NOT.LSAME( TRANS, 'N' ).AND. - $ .NOT.LSAME( TRANS, 'T' ).AND. - $ .NOT.LSAME( TRANS, 'C' ) )THEN - INFO = 2 - ELSE IF( .NOT.LSAME( DIAG , 'U' ).AND. - $ .NOT.LSAME( DIAG , 'N' ) )THEN - INFO = 3 - ELSE IF( N.LT.0 )THEN - INFO = 4 - ELSE IF( INCX.EQ.0 )THEN - INFO = 7 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DTPSV ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( N.EQ.0 ) - $ RETURN -* - NOUNIT = LSAME( DIAG, 'N' ) -* -* Set up the start point in X if the increment is not unity. This -* will be ( N - 1 )*INCX too small for descending loops. -* - IF( INCX.LE.0 )THEN - KX = 1 - ( N - 1 )*INCX - ELSE IF( INCX.NE.1 )THEN - KX = 1 - END IF -* -* Start the operations. In this version the elements of AP are -* accessed sequentially with one pass through AP. -* - IF( LSAME( TRANS, 'N' ) )THEN -* -* Form x := inv( A )*x. -* - IF( LSAME( UPLO, 'U' ) )THEN - KK = ( N*( N + 1 ) )/2 - IF( INCX.EQ.1 )THEN - DO 20, J = N, 1, -1 - IF( X( J ).NE.ZERO )THEN - IF( NOUNIT ) - $ X( J ) = X( J )/AP( KK ) - TEMP = X( J ) - K = KK - 1 - DO 10, I = J - 1, 1, -1 - X( I ) = X( I ) - TEMP*AP( K ) - K = K - 1 - 10 CONTINUE - END IF - KK = KK - J - 20 CONTINUE - ELSE - JX = KX + ( N - 1 )*INCX - DO 40, J = N, 1, -1 - IF( X( JX ).NE.ZERO )THEN - IF( NOUNIT ) - $ X( JX ) = X( JX )/AP( KK ) - TEMP = X( JX ) - IX = JX - DO 30, K = KK - 1, KK - J + 1, -1 - IX = IX - INCX - X( IX ) = X( IX ) - TEMP*AP( K ) - 30 CONTINUE - END IF - JX = JX - INCX - KK = KK - J - 40 CONTINUE - END IF - ELSE - KK = 1 - IF( INCX.EQ.1 )THEN - DO 60, J = 1, N - IF( X( J ).NE.ZERO )THEN - IF( NOUNIT ) - $ X( J ) = X( J )/AP( KK ) - TEMP = X( J ) - K = KK + 1 - DO 50, I = J + 1, N - X( I ) = X( I ) - TEMP*AP( K ) - K = K + 1 - 50 CONTINUE - END IF - KK = KK + ( N - J + 1 ) - 60 CONTINUE - ELSE - JX = KX - DO 80, J = 1, N - IF( X( JX ).NE.ZERO )THEN - IF( NOUNIT ) - $ X( JX ) = X( JX )/AP( KK ) - TEMP = X( JX ) - IX = JX - DO 70, K = KK + 1, KK + N - J - IX = IX + INCX - X( IX ) = X( IX ) - TEMP*AP( K ) - 70 CONTINUE - END IF - JX = JX + INCX - KK = KK + ( N - J + 1 ) - 80 CONTINUE - END IF - END IF - ELSE -* -* Form x := inv( A' )*x. -* - IF( LSAME( UPLO, 'U' ) )THEN - KK = 1 - IF( INCX.EQ.1 )THEN - DO 100, J = 1, N - TEMP = X( J ) - K = KK - DO 90, I = 1, J - 1 - TEMP = TEMP - AP( K )*X( I ) - K = K + 1 - 90 CONTINUE - IF( NOUNIT ) - $ TEMP = TEMP/AP( KK + J - 1 ) - X( J ) = TEMP - KK = KK + J - 100 CONTINUE - ELSE - JX = KX - DO 120, J = 1, N - TEMP = X( JX ) - IX = KX - DO 110, K = KK, KK + J - 2 - TEMP = TEMP - AP( K )*X( IX ) - IX = IX + INCX - 110 CONTINUE - IF( NOUNIT ) - $ TEMP = TEMP/AP( KK + J - 1 ) - X( JX ) = TEMP - JX = JX + INCX - KK = KK + J - 120 CONTINUE - END IF - ELSE - KK = ( N*( N + 1 ) )/2 - IF( INCX.EQ.1 )THEN - DO 140, J = N, 1, -1 - TEMP = X( J ) - K = KK - DO 130, I = N, J + 1, -1 - TEMP = TEMP - AP( K )*X( I ) - K = K - 1 - 130 CONTINUE - IF( NOUNIT ) - $ TEMP = TEMP/AP( KK - N + J ) - X( J ) = TEMP - KK = KK - ( N - J + 1 ) - 140 CONTINUE - ELSE - KX = KX + ( N - 1 )*INCX - JX = KX - DO 160, J = N, 1, -1 - TEMP = X( JX ) - IX = KX - DO 150, K = KK, KK - ( N - ( J + 1 ) ), -1 - TEMP = TEMP - AP( K )*X( IX ) - IX = IX - INCX - 150 CONTINUE - IF( NOUNIT ) - $ TEMP = TEMP/AP( KK - N + J ) - X( JX ) = TEMP - JX = JX - INCX - KK = KK - (N - J + 1 ) - 160 CONTINUE - END IF - END IF - END IF -* - RETURN -* -* End of DTPSV . -* - END diff --git a/Cantera/ext/blas/dtrmm.f b/Cantera/ext/blas/dtrmm.f deleted file mode 100755 index 40c7740c9..000000000 --- a/Cantera/ext/blas/dtrmm.f +++ /dev/null @@ -1,355 +0,0 @@ - SUBROUTINE DTRMM ( SIDE, UPLO, TRANSA, DIAG, M, N, ALPHA, A, LDA, - $ B, LDB ) -* .. Scalar Arguments .. - CHARACTER*1 SIDE, UPLO, TRANSA, DIAG - INTEGER M, N, LDA, LDB - DOUBLE PRECISION ALPHA -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), B( LDB, * ) -* .. -* -* Purpose -* ======= -* -* DTRMM performs one of the matrix-matrix operations -* -* B := alpha*op( A )*B, or B := alpha*B*op( A ), -* -* where alpha is a scalar, B is an m by n matrix, A is a unit, or -* non-unit, upper or lower triangular matrix and op( A ) is one of -* -* op( A ) = A or op( A ) = A'. -* -* Parameters -* ========== -* -* SIDE - CHARACTER*1. -* On entry, SIDE specifies whether op( A ) multiplies B from -* the left or right as follows: -* -* SIDE = 'L' or 'l' B := alpha*op( A )*B. -* -* SIDE = 'R' or 'r' B := alpha*B*op( A ). -* -* Unchanged on exit. -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the matrix A is an upper or -* lower triangular matrix as follows: -* -* UPLO = 'U' or 'u' A is an upper triangular matrix. -* -* UPLO = 'L' or 'l' A is a lower triangular matrix. -* -* Unchanged on exit. -* -* TRANSA - CHARACTER*1. -* On entry, TRANSA specifies the form of op( A ) to be used in -* the matrix multiplication as follows: -* -* TRANSA = 'N' or 'n' op( A ) = A. -* -* TRANSA = 'T' or 't' op( A ) = A'. -* -* TRANSA = 'C' or 'c' op( A ) = A'. -* -* Unchanged on exit. -* -* DIAG - CHARACTER*1. -* On entry, DIAG specifies whether or not A is unit triangular -* as follows: -* -* DIAG = 'U' or 'u' A is assumed to be unit triangular. -* -* DIAG = 'N' or 'n' A is not assumed to be unit -* triangular. -* -* Unchanged on exit. -* -* M - INTEGER. -* On entry, M specifies the number of rows of B. M must be at -* least zero. -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the number of columns of B. N must be -* at least zero. -* Unchanged on exit. -* -* ALPHA - DOUBLE PRECISION. -* On entry, ALPHA specifies the scalar alpha. When alpha is -* zero then A is not referenced and B need not be set before -* entry. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, k ), where k is m -* when SIDE = 'L' or 'l' and is n when SIDE = 'R' or 'r'. -* Before entry with UPLO = 'U' or 'u', the leading k by k -* upper triangular part of the array A must contain the upper -* triangular matrix and the strictly lower triangular part of -* A is not referenced. -* Before entry with UPLO = 'L' or 'l', the leading k by k -* lower triangular part of the array A must contain the lower -* triangular matrix and the strictly upper triangular part of -* A is not referenced. -* Note that when DIAG = 'U' or 'u', the diagonal elements of -* A are not referenced either, but are assumed to be unity. -* Unchanged on exit. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. When SIDE = 'L' or 'l' then -* LDA must be at least max( 1, m ), when SIDE = 'R' or 'r' -* then LDA must be at least max( 1, n ). -* Unchanged on exit. -* -* B - DOUBLE PRECISION array of DIMENSION ( LDB, n ). -* Before entry, the leading m by n part of the array B must -* contain the matrix B, and on exit is overwritten by the -* transformed matrix. -* -* LDB - INTEGER. -* On entry, LDB specifies the first dimension of B as declared -* in the calling (sub) program. LDB must be at least -* max( 1, m ). -* Unchanged on exit. -* -* -* Level 3 Blas routine. -* -* -- Written on 8-February-1989. -* Jack Dongarra, Argonne National Laboratory. -* Iain Duff, AERE Harwell. -* Jeremy Du Croz, Numerical Algorithms Group Ltd. -* Sven Hammarling, Numerical Algorithms Group Ltd. -* -* -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. Local Scalars .. - LOGICAL LSIDE, NOUNIT, UPPER - INTEGER I, INFO, J, K, NROWA - DOUBLE PRECISION TEMP -* .. Parameters .. - DOUBLE PRECISION ONE , ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - LSIDE = LSAME( SIDE , 'L' ) - IF( LSIDE )THEN - NROWA = M - ELSE - NROWA = N - END IF - NOUNIT = LSAME( DIAG , 'N' ) - UPPER = LSAME( UPLO , 'U' ) -* - INFO = 0 - IF( ( .NOT.LSIDE ).AND. - $ ( .NOT.LSAME( SIDE , 'R' ) ) )THEN - INFO = 1 - ELSE IF( ( .NOT.UPPER ).AND. - $ ( .NOT.LSAME( UPLO , 'L' ) ) )THEN - INFO = 2 - ELSE IF( ( .NOT.LSAME( TRANSA, 'N' ) ).AND. - $ ( .NOT.LSAME( TRANSA, 'T' ) ).AND. - $ ( .NOT.LSAME( TRANSA, 'C' ) ) )THEN - INFO = 3 - ELSE IF( ( .NOT.LSAME( DIAG , 'U' ) ).AND. - $ ( .NOT.LSAME( DIAG , 'N' ) ) )THEN - INFO = 4 - ELSE IF( M .LT.0 )THEN - INFO = 5 - ELSE IF( N .LT.0 )THEN - INFO = 6 - ELSE IF( LDA.LT.MAX( 1, NROWA ) )THEN - INFO = 9 - ELSE IF( LDB.LT.MAX( 1, M ) )THEN - INFO = 11 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DTRMM ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( N.EQ.0 ) - $ RETURN -* -* And when alpha.eq.zero. -* - IF( ALPHA.EQ.ZERO )THEN - DO 20, J = 1, N - DO 10, I = 1, M - B( I, J ) = ZERO - 10 CONTINUE - 20 CONTINUE - RETURN - END IF -* -* Start the operations. -* - IF( LSIDE )THEN - IF( LSAME( TRANSA, 'N' ) )THEN -* -* Form B := alpha*A*B. -* - IF( UPPER )THEN - DO 50, J = 1, N - DO 40, K = 1, M - IF( B( K, J ).NE.ZERO )THEN - TEMP = ALPHA*B( K, J ) - DO 30, I = 1, K - 1 - B( I, J ) = B( I, J ) + TEMP*A( I, K ) - 30 CONTINUE - IF( NOUNIT ) - $ TEMP = TEMP*A( K, K ) - B( K, J ) = TEMP - END IF - 40 CONTINUE - 50 CONTINUE - ELSE - DO 80, J = 1, N - DO 70 K = M, 1, -1 - IF( B( K, J ).NE.ZERO )THEN - TEMP = ALPHA*B( K, J ) - B( K, J ) = TEMP - IF( NOUNIT ) - $ B( K, J ) = B( K, J )*A( K, K ) - DO 60, I = K + 1, M - B( I, J ) = B( I, J ) + TEMP*A( I, K ) - 60 CONTINUE - END IF - 70 CONTINUE - 80 CONTINUE - END IF - ELSE -* -* Form B := alpha*A'*B. -* - IF( UPPER )THEN - DO 110, J = 1, N - DO 100, I = M, 1, -1 - TEMP = B( I, J ) - IF( NOUNIT ) - $ TEMP = TEMP*A( I, I ) - DO 90, K = 1, I - 1 - TEMP = TEMP + A( K, I )*B( K, J ) - 90 CONTINUE - B( I, J ) = ALPHA*TEMP - 100 CONTINUE - 110 CONTINUE - ELSE - DO 140, J = 1, N - DO 130, I = 1, M - TEMP = B( I, J ) - IF( NOUNIT ) - $ TEMP = TEMP*A( I, I ) - DO 120, K = I + 1, M - TEMP = TEMP + A( K, I )*B( K, J ) - 120 CONTINUE - B( I, J ) = ALPHA*TEMP - 130 CONTINUE - 140 CONTINUE - END IF - END IF - ELSE - IF( LSAME( TRANSA, 'N' ) )THEN -* -* Form B := alpha*B*A. -* - IF( UPPER )THEN - DO 180, J = N, 1, -1 - TEMP = ALPHA - IF( NOUNIT ) - $ TEMP = TEMP*A( J, J ) - DO 150, I = 1, M - B( I, J ) = TEMP*B( I, J ) - 150 CONTINUE - DO 170, K = 1, J - 1 - IF( A( K, J ).NE.ZERO )THEN - TEMP = ALPHA*A( K, J ) - DO 160, I = 1, M - B( I, J ) = B( I, J ) + TEMP*B( I, K ) - 160 CONTINUE - END IF - 170 CONTINUE - 180 CONTINUE - ELSE - DO 220, J = 1, N - TEMP = ALPHA - IF( NOUNIT ) - $ TEMP = TEMP*A( J, J ) - DO 190, I = 1, M - B( I, J ) = TEMP*B( I, J ) - 190 CONTINUE - DO 210, K = J + 1, N - IF( A( K, J ).NE.ZERO )THEN - TEMP = ALPHA*A( K, J ) - DO 200, I = 1, M - B( I, J ) = B( I, J ) + TEMP*B( I, K ) - 200 CONTINUE - END IF - 210 CONTINUE - 220 CONTINUE - END IF - ELSE -* -* Form B := alpha*B*A'. -* - IF( UPPER )THEN - DO 260, K = 1, N - DO 240, J = 1, K - 1 - IF( A( J, K ).NE.ZERO )THEN - TEMP = ALPHA*A( J, K ) - DO 230, I = 1, M - B( I, J ) = B( I, J ) + TEMP*B( I, K ) - 230 CONTINUE - END IF - 240 CONTINUE - TEMP = ALPHA - IF( NOUNIT ) - $ TEMP = TEMP*A( K, K ) - IF( TEMP.NE.ONE )THEN - DO 250, I = 1, M - B( I, K ) = TEMP*B( I, K ) - 250 CONTINUE - END IF - 260 CONTINUE - ELSE - DO 300, K = N, 1, -1 - DO 280, J = K + 1, N - IF( A( J, K ).NE.ZERO )THEN - TEMP = ALPHA*A( J, K ) - DO 270, I = 1, M - B( I, J ) = B( I, J ) + TEMP*B( I, K ) - 270 CONTINUE - END IF - 280 CONTINUE - TEMP = ALPHA - IF( NOUNIT ) - $ TEMP = TEMP*A( K, K ) - IF( TEMP.NE.ONE )THEN - DO 290, I = 1, M - B( I, K ) = TEMP*B( I, K ) - 290 CONTINUE - END IF - 300 CONTINUE - END IF - END IF - END IF -* - RETURN -* -* End of DTRMM . -* - END diff --git a/Cantera/ext/blas/dtrmv.f b/Cantera/ext/blas/dtrmv.f deleted file mode 100755 index 3d5c61b20..000000000 --- a/Cantera/ext/blas/dtrmv.f +++ /dev/null @@ -1,286 +0,0 @@ - SUBROUTINE DTRMV ( UPLO, TRANS, DIAG, N, A, LDA, X, INCX ) -* .. Scalar Arguments .. - INTEGER INCX, LDA, N - CHARACTER*1 DIAG, TRANS, UPLO -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), X( * ) -* .. -* -* Purpose -* ======= -* -* DTRMV performs one of the matrix-vector operations -* -* x := A*x, or x := A'*x, -* -* where x is an n element vector and A is an n by n unit, or non-unit, -* upper or lower triangular matrix. -* -* Parameters -* ========== -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the matrix is an upper or -* lower triangular matrix as follows: -* -* UPLO = 'U' or 'u' A is an upper triangular matrix. -* -* UPLO = 'L' or 'l' A is a lower triangular matrix. -* -* Unchanged on exit. -* -* TRANS - CHARACTER*1. -* On entry, TRANS specifies the operation to be performed as -* follows: -* -* TRANS = 'N' or 'n' x := A*x. -* -* TRANS = 'T' or 't' x := A'*x. -* -* TRANS = 'C' or 'c' x := A'*x. -* -* Unchanged on exit. -* -* DIAG - CHARACTER*1. -* On entry, DIAG specifies whether or not A is unit -* triangular as follows: -* -* DIAG = 'U' or 'u' A is assumed to be unit triangular. -* -* DIAG = 'N' or 'n' A is not assumed to be unit -* triangular. -* -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the order of the matrix A. -* N must be at least zero. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, n ). -* Before entry with UPLO = 'U' or 'u', the leading n by n -* upper triangular part of the array A must contain the upper -* triangular matrix and the strictly lower triangular part of -* A is not referenced. -* Before entry with UPLO = 'L' or 'l', the leading n by n -* lower triangular part of the array A must contain the lower -* triangular matrix and the strictly upper triangular part of -* A is not referenced. -* Note that when DIAG = 'U' or 'u', the diagonal elements of -* A are not referenced either, but are assumed to be unity. -* Unchanged on exit. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. LDA must be at least -* max( 1, n ). -* Unchanged on exit. -* -* X - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCX ) ). -* Before entry, the incremented array X must contain the n -* element vector x. On exit, X is overwritten with the -* tranformed vector x. -* -* INCX - INTEGER. -* On entry, INCX specifies the increment for the elements of -* X. INCX must not be zero. -* Unchanged on exit. -* -* -* Level 2 Blas routine. -* -* -- Written on 22-October-1986. -* Jack Dongarra, Argonne National Lab. -* Jeremy Du Croz, Nag Central Office. -* Sven Hammarling, Nag Central Office. -* Richard Hanson, Sandia National Labs. -* -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D+0 ) -* .. Local Scalars .. - DOUBLE PRECISION TEMP - INTEGER I, INFO, IX, J, JX, KX - LOGICAL NOUNIT -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF ( .NOT.LSAME( UPLO , 'U' ).AND. - $ .NOT.LSAME( UPLO , 'L' ) )THEN - INFO = 1 - ELSE IF( .NOT.LSAME( TRANS, 'N' ).AND. - $ .NOT.LSAME( TRANS, 'T' ).AND. - $ .NOT.LSAME( TRANS, 'C' ) )THEN - INFO = 2 - ELSE IF( .NOT.LSAME( DIAG , 'U' ).AND. - $ .NOT.LSAME( DIAG , 'N' ) )THEN - INFO = 3 - ELSE IF( N.LT.0 )THEN - INFO = 4 - ELSE IF( LDA.LT.MAX( 1, N ) )THEN - INFO = 6 - ELSE IF( INCX.EQ.0 )THEN - INFO = 8 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DTRMV ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( N.EQ.0 ) - $ RETURN -* - NOUNIT = LSAME( DIAG, 'N' ) -* -* Set up the start point in X if the increment is not unity. This -* will be ( N - 1 )*INCX too small for descending loops. -* - IF( INCX.LE.0 )THEN - KX = 1 - ( N - 1 )*INCX - ELSE IF( INCX.NE.1 )THEN - KX = 1 - END IF -* -* Start the operations. In this version the elements of A are -* accessed sequentially with one pass through A. -* - IF( LSAME( TRANS, 'N' ) )THEN -* -* Form x := A*x. -* - IF( LSAME( UPLO, 'U' ) )THEN - IF( INCX.EQ.1 )THEN - DO 20, J = 1, N - IF( X( J ).NE.ZERO )THEN - TEMP = X( J ) - DO 10, I = 1, J - 1 - X( I ) = X( I ) + TEMP*A( I, J ) - 10 CONTINUE - IF( NOUNIT ) - $ X( J ) = X( J )*A( J, J ) - END IF - 20 CONTINUE - ELSE - JX = KX - DO 40, J = 1, N - IF( X( JX ).NE.ZERO )THEN - TEMP = X( JX ) - IX = KX - DO 30, I = 1, J - 1 - X( IX ) = X( IX ) + TEMP*A( I, J ) - IX = IX + INCX - 30 CONTINUE - IF( NOUNIT ) - $ X( JX ) = X( JX )*A( J, J ) - END IF - JX = JX + INCX - 40 CONTINUE - END IF - ELSE - IF( INCX.EQ.1 )THEN - DO 60, J = N, 1, -1 - IF( X( J ).NE.ZERO )THEN - TEMP = X( J ) - DO 50, I = N, J + 1, -1 - X( I ) = X( I ) + TEMP*A( I, J ) - 50 CONTINUE - IF( NOUNIT ) - $ X( J ) = X( J )*A( J, J ) - END IF - 60 CONTINUE - ELSE - KX = KX + ( N - 1 )*INCX - JX = KX - DO 80, J = N, 1, -1 - IF( X( JX ).NE.ZERO )THEN - TEMP = X( JX ) - IX = KX - DO 70, I = N, J + 1, -1 - X( IX ) = X( IX ) + TEMP*A( I, J ) - IX = IX - INCX - 70 CONTINUE - IF( NOUNIT ) - $ X( JX ) = X( JX )*A( J, J ) - END IF - JX = JX - INCX - 80 CONTINUE - END IF - END IF - ELSE -* -* Form x := A'*x. -* - IF( LSAME( UPLO, 'U' ) )THEN - IF( INCX.EQ.1 )THEN - DO 100, J = N, 1, -1 - TEMP = X( J ) - IF( NOUNIT ) - $ TEMP = TEMP*A( J, J ) - DO 90, I = J - 1, 1, -1 - TEMP = TEMP + A( I, J )*X( I ) - 90 CONTINUE - X( J ) = TEMP - 100 CONTINUE - ELSE - JX = KX + ( N - 1 )*INCX - DO 120, J = N, 1, -1 - TEMP = X( JX ) - IX = JX - IF( NOUNIT ) - $ TEMP = TEMP*A( J, J ) - DO 110, I = J - 1, 1, -1 - IX = IX - INCX - TEMP = TEMP + A( I, J )*X( IX ) - 110 CONTINUE - X( JX ) = TEMP - JX = JX - INCX - 120 CONTINUE - END IF - ELSE - IF( INCX.EQ.1 )THEN - DO 140, J = 1, N - TEMP = X( J ) - IF( NOUNIT ) - $ TEMP = TEMP*A( J, J ) - DO 130, I = J + 1, N - TEMP = TEMP + A( I, J )*X( I ) - 130 CONTINUE - X( J ) = TEMP - 140 CONTINUE - ELSE - JX = KX - DO 160, J = 1, N - TEMP = X( JX ) - IX = JX - IF( NOUNIT ) - $ TEMP = TEMP*A( J, J ) - DO 150, I = J + 1, N - IX = IX + INCX - TEMP = TEMP + A( I, J )*X( IX ) - 150 CONTINUE - X( JX ) = TEMP - JX = JX + INCX - 160 CONTINUE - END IF - END IF - END IF -* - RETURN -* -* End of DTRMV . -* - END diff --git a/Cantera/ext/blas/dtrsm.f b/Cantera/ext/blas/dtrsm.f deleted file mode 100755 index e8425142b..000000000 --- a/Cantera/ext/blas/dtrsm.f +++ /dev/null @@ -1,378 +0,0 @@ - SUBROUTINE DTRSM ( SIDE, UPLO, TRANSA, DIAG, M, N, ALPHA, A, LDA, - $ B, LDB ) -* .. Scalar Arguments .. - CHARACTER*1 SIDE, UPLO, TRANSA, DIAG - INTEGER M, N, LDA, LDB - DOUBLE PRECISION ALPHA -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), B( LDB, * ) -* .. -* -* Purpose -* ======= -* -* DTRSM solves one of the matrix equations -* -* op( A )*X = alpha*B, or X*op( A ) = alpha*B, -* -* where alpha is a scalar, X and B are m by n matrices, A is a unit, or -* non-unit, upper or lower triangular matrix and op( A ) is one of -* -* op( A ) = A or op( A ) = A'. -* -* The matrix X is overwritten on B. -* -* Parameters -* ========== -* -* SIDE - CHARACTER*1. -* On entry, SIDE specifies whether op( A ) appears on the left -* or right of X as follows: -* -* SIDE = 'L' or 'l' op( A )*X = alpha*B. -* -* SIDE = 'R' or 'r' X*op( A ) = alpha*B. -* -* Unchanged on exit. -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the matrix A is an upper or -* lower triangular matrix as follows: -* -* UPLO = 'U' or 'u' A is an upper triangular matrix. -* -* UPLO = 'L' or 'l' A is a lower triangular matrix. -* -* Unchanged on exit. -* -* TRANSA - CHARACTER*1. -* On entry, TRANSA specifies the form of op( A ) to be used in -* the matrix multiplication as follows: -* -* TRANSA = 'N' or 'n' op( A ) = A. -* -* TRANSA = 'T' or 't' op( A ) = A'. -* -* TRANSA = 'C' or 'c' op( A ) = A'. -* -* Unchanged on exit. -* -* DIAG - CHARACTER*1. -* On entry, DIAG specifies whether or not A is unit triangular -* as follows: -* -* DIAG = 'U' or 'u' A is assumed to be unit triangular. -* -* DIAG = 'N' or 'n' A is not assumed to be unit -* triangular. -* -* Unchanged on exit. -* -* M - INTEGER. -* On entry, M specifies the number of rows of B. M must be at -* least zero. -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the number of columns of B. N must be -* at least zero. -* Unchanged on exit. -* -* ALPHA - DOUBLE PRECISION. -* On entry, ALPHA specifies the scalar alpha. When alpha is -* zero then A is not referenced and B need not be set before -* entry. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, k ), where k is m -* when SIDE = 'L' or 'l' and is n when SIDE = 'R' or 'r'. -* Before entry with UPLO = 'U' or 'u', the leading k by k -* upper triangular part of the array A must contain the upper -* triangular matrix and the strictly lower triangular part of -* A is not referenced. -* Before entry with UPLO = 'L' or 'l', the leading k by k -* lower triangular part of the array A must contain the lower -* triangular matrix and the strictly upper triangular part of -* A is not referenced. -* Note that when DIAG = 'U' or 'u', the diagonal elements of -* A are not referenced either, but are assumed to be unity. -* Unchanged on exit. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. When SIDE = 'L' or 'l' then -* LDA must be at least max( 1, m ), when SIDE = 'R' or 'r' -* then LDA must be at least max( 1, n ). -* Unchanged on exit. -* -* B - DOUBLE PRECISION array of DIMENSION ( LDB, n ). -* Before entry, the leading m by n part of the array B must -* contain the right-hand side matrix B, and on exit is -* overwritten by the solution matrix X. -* -* LDB - INTEGER. -* On entry, LDB specifies the first dimension of B as declared -* in the calling (sub) program. LDB must be at least -* max( 1, m ). -* Unchanged on exit. -* -* -* Level 3 Blas routine. -* -* -* -- Written on 8-February-1989. -* Jack Dongarra, Argonne National Laboratory. -* Iain Duff, AERE Harwell. -* Jeremy Du Croz, Numerical Algorithms Group Ltd. -* Sven Hammarling, Numerical Algorithms Group Ltd. -* -* -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. Local Scalars .. - LOGICAL LSIDE, NOUNIT, UPPER - INTEGER I, INFO, J, K, NROWA - DOUBLE PRECISION TEMP -* .. Parameters .. - DOUBLE PRECISION ONE , ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - LSIDE = LSAME( SIDE , 'L' ) - IF( LSIDE )THEN - NROWA = M - ELSE - NROWA = N - END IF - NOUNIT = LSAME( DIAG , 'N' ) - UPPER = LSAME( UPLO , 'U' ) -* - INFO = 0 - IF( ( .NOT.LSIDE ).AND. - $ ( .NOT.LSAME( SIDE , 'R' ) ) )THEN - INFO = 1 - ELSE IF( ( .NOT.UPPER ).AND. - $ ( .NOT.LSAME( UPLO , 'L' ) ) )THEN - INFO = 2 - ELSE IF( ( .NOT.LSAME( TRANSA, 'N' ) ).AND. - $ ( .NOT.LSAME( TRANSA, 'T' ) ).AND. - $ ( .NOT.LSAME( TRANSA, 'C' ) ) )THEN - INFO = 3 - ELSE IF( ( .NOT.LSAME( DIAG , 'U' ) ).AND. - $ ( .NOT.LSAME( DIAG , 'N' ) ) )THEN - INFO = 4 - ELSE IF( M .LT.0 )THEN - INFO = 5 - ELSE IF( N .LT.0 )THEN - INFO = 6 - ELSE IF( LDA.LT.MAX( 1, NROWA ) )THEN - INFO = 9 - ELSE IF( LDB.LT.MAX( 1, M ) )THEN - INFO = 11 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DTRSM ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( N.EQ.0 ) - $ RETURN -* -* And when alpha.eq.zero. -* - IF( ALPHA.EQ.ZERO )THEN - DO 20, J = 1, N - DO 10, I = 1, M - B( I, J ) = ZERO - 10 CONTINUE - 20 CONTINUE - RETURN - END IF -* -* Start the operations. -* - IF( LSIDE )THEN - IF( LSAME( TRANSA, 'N' ) )THEN -* -* Form B := alpha*inv( A )*B. -* - IF( UPPER )THEN - DO 60, J = 1, N - IF( ALPHA.NE.ONE )THEN - DO 30, I = 1, M - B( I, J ) = ALPHA*B( I, J ) - 30 CONTINUE - END IF - DO 50, K = M, 1, -1 - IF( B( K, J ).NE.ZERO )THEN - IF( NOUNIT ) - $ B( K, J ) = B( K, J )/A( K, K ) - DO 40, I = 1, K - 1 - B( I, J ) = B( I, J ) - B( K, J )*A( I, K ) - 40 CONTINUE - END IF - 50 CONTINUE - 60 CONTINUE - ELSE - DO 100, J = 1, N - IF( ALPHA.NE.ONE )THEN - DO 70, I = 1, M - B( I, J ) = ALPHA*B( I, J ) - 70 CONTINUE - END IF - DO 90 K = 1, M - IF( B( K, J ).NE.ZERO )THEN - IF( NOUNIT ) - $ B( K, J ) = B( K, J )/A( K, K ) - DO 80, I = K + 1, M - B( I, J ) = B( I, J ) - B( K, J )*A( I, K ) - 80 CONTINUE - END IF - 90 CONTINUE - 100 CONTINUE - END IF - ELSE -* -* Form B := alpha*inv( A' )*B. -* - IF( UPPER )THEN - DO 130, J = 1, N - DO 120, I = 1, M - TEMP = ALPHA*B( I, J ) - DO 110, K = 1, I - 1 - TEMP = TEMP - A( K, I )*B( K, J ) - 110 CONTINUE - IF( NOUNIT ) - $ TEMP = TEMP/A( I, I ) - B( I, J ) = TEMP - 120 CONTINUE - 130 CONTINUE - ELSE - DO 160, J = 1, N - DO 150, I = M, 1, -1 - TEMP = ALPHA*B( I, J ) - DO 140, K = I + 1, M - TEMP = TEMP - A( K, I )*B( K, J ) - 140 CONTINUE - IF( NOUNIT ) - $ TEMP = TEMP/A( I, I ) - B( I, J ) = TEMP - 150 CONTINUE - 160 CONTINUE - END IF - END IF - ELSE - IF( LSAME( TRANSA, 'N' ) )THEN -* -* Form B := alpha*B*inv( A ). -* - IF( UPPER )THEN - DO 210, J = 1, N - IF( ALPHA.NE.ONE )THEN - DO 170, I = 1, M - B( I, J ) = ALPHA*B( I, J ) - 170 CONTINUE - END IF - DO 190, K = 1, J - 1 - IF( A( K, J ).NE.ZERO )THEN - DO 180, I = 1, M - B( I, J ) = B( I, J ) - A( K, J )*B( I, K ) - 180 CONTINUE - END IF - 190 CONTINUE - IF( NOUNIT )THEN - TEMP = ONE/A( J, J ) - DO 200, I = 1, M - B( I, J ) = TEMP*B( I, J ) - 200 CONTINUE - END IF - 210 CONTINUE - ELSE - DO 260, J = N, 1, -1 - IF( ALPHA.NE.ONE )THEN - DO 220, I = 1, M - B( I, J ) = ALPHA*B( I, J ) - 220 CONTINUE - END IF - DO 240, K = J + 1, N - IF( A( K, J ).NE.ZERO )THEN - DO 230, I = 1, M - B( I, J ) = B( I, J ) - A( K, J )*B( I, K ) - 230 CONTINUE - END IF - 240 CONTINUE - IF( NOUNIT )THEN - TEMP = ONE/A( J, J ) - DO 250, I = 1, M - B( I, J ) = TEMP*B( I, J ) - 250 CONTINUE - END IF - 260 CONTINUE - END IF - ELSE -* -* Form B := alpha*B*inv( A' ). -* - IF( UPPER )THEN - DO 310, K = N, 1, -1 - IF( NOUNIT )THEN - TEMP = ONE/A( K, K ) - DO 270, I = 1, M - B( I, K ) = TEMP*B( I, K ) - 270 CONTINUE - END IF - DO 290, J = 1, K - 1 - IF( A( J, K ).NE.ZERO )THEN - TEMP = A( J, K ) - DO 280, I = 1, M - B( I, J ) = B( I, J ) - TEMP*B( I, K ) - 280 CONTINUE - END IF - 290 CONTINUE - IF( ALPHA.NE.ONE )THEN - DO 300, I = 1, M - B( I, K ) = ALPHA*B( I, K ) - 300 CONTINUE - END IF - 310 CONTINUE - ELSE - DO 360, K = 1, N - IF( NOUNIT )THEN - TEMP = ONE/A( K, K ) - DO 320, I = 1, M - B( I, K ) = TEMP*B( I, K ) - 320 CONTINUE - END IF - DO 340, J = K + 1, N - IF( A( J, K ).NE.ZERO )THEN - TEMP = A( J, K ) - DO 330, I = 1, M - B( I, J ) = B( I, J ) - TEMP*B( I, K ) - 330 CONTINUE - END IF - 340 CONTINUE - IF( ALPHA.NE.ONE )THEN - DO 350, I = 1, M - B( I, K ) = ALPHA*B( I, K ) - 350 CONTINUE - END IF - 360 CONTINUE - END IF - END IF - END IF -* - RETURN -* -* End of DTRSM . -* - END diff --git a/Cantera/ext/blas/dtrsv.f b/Cantera/ext/blas/dtrsv.f deleted file mode 100755 index 9c3e90a97..000000000 --- a/Cantera/ext/blas/dtrsv.f +++ /dev/null @@ -1,289 +0,0 @@ - SUBROUTINE DTRSV ( UPLO, TRANS, DIAG, N, A, LDA, X, INCX ) -* .. Scalar Arguments .. - INTEGER INCX, LDA, N - CHARACTER*1 DIAG, TRANS, UPLO -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), X( * ) -* .. -* -* Purpose -* ======= -* -* DTRSV solves one of the systems of equations -* -* A*x = b, or A'*x = b, -* -* where b and x are n element vectors and A is an n by n unit, or -* non-unit, upper or lower triangular matrix. -* -* No test for singularity or near-singularity is included in this -* routine. Such tests must be performed before calling this routine. -* -* Parameters -* ========== -* -* UPLO - CHARACTER*1. -* On entry, UPLO specifies whether the matrix is an upper or -* lower triangular matrix as follows: -* -* UPLO = 'U' or 'u' A is an upper triangular matrix. -* -* UPLO = 'L' or 'l' A is a lower triangular matrix. -* -* Unchanged on exit. -* -* TRANS - CHARACTER*1. -* On entry, TRANS specifies the equations to be solved as -* follows: -* -* TRANS = 'N' or 'n' A*x = b. -* -* TRANS = 'T' or 't' A'*x = b. -* -* TRANS = 'C' or 'c' A'*x = b. -* -* Unchanged on exit. -* -* DIAG - CHARACTER*1. -* On entry, DIAG specifies whether or not A is unit -* triangular as follows: -* -* DIAG = 'U' or 'u' A is assumed to be unit triangular. -* -* DIAG = 'N' or 'n' A is not assumed to be unit -* triangular. -* -* Unchanged on exit. -* -* N - INTEGER. -* On entry, N specifies the order of the matrix A. -* N must be at least zero. -* Unchanged on exit. -* -* A - DOUBLE PRECISION array of DIMENSION ( LDA, n ). -* Before entry with UPLO = 'U' or 'u', the leading n by n -* upper triangular part of the array A must contain the upper -* triangular matrix and the strictly lower triangular part of -* A is not referenced. -* Before entry with UPLO = 'L' or 'l', the leading n by n -* lower triangular part of the array A must contain the lower -* triangular matrix and the strictly upper triangular part of -* A is not referenced. -* Note that when DIAG = 'U' or 'u', the diagonal elements of -* A are not referenced either, but are assumed to be unity. -* Unchanged on exit. -* -* LDA - INTEGER. -* On entry, LDA specifies the first dimension of A as declared -* in the calling (sub) program. LDA must be at least -* max( 1, n ). -* Unchanged on exit. -* -* X - DOUBLE PRECISION array of dimension at least -* ( 1 + ( n - 1 )*abs( INCX ) ). -* Before entry, the incremented array X must contain the n -* element right-hand side vector b. On exit, X is overwritten -* with the solution vector x. -* -* INCX - INTEGER. -* On entry, INCX specifies the increment for the elements of -* X. INCX must not be zero. -* Unchanged on exit. -* -* -* Level 2 Blas routine. -* -* -- Written on 22-October-1986. -* Jack Dongarra, Argonne National Lab. -* Jeremy Du Croz, Nag Central Office. -* Sven Hammarling, Nag Central Office. -* Richard Hanson, Sandia National Labs. -* -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D+0 ) -* .. Local Scalars .. - DOUBLE PRECISION TEMP - INTEGER I, INFO, IX, J, JX, KX - LOGICAL NOUNIT -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. External Subroutines .. - EXTERNAL XERBLA -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF ( .NOT.LSAME( UPLO , 'U' ).AND. - $ .NOT.LSAME( UPLO , 'L' ) )THEN - INFO = 1 - ELSE IF( .NOT.LSAME( TRANS, 'N' ).AND. - $ .NOT.LSAME( TRANS, 'T' ).AND. - $ .NOT.LSAME( TRANS, 'C' ) )THEN - INFO = 2 - ELSE IF( .NOT.LSAME( DIAG , 'U' ).AND. - $ .NOT.LSAME( DIAG , 'N' ) )THEN - INFO = 3 - ELSE IF( N.LT.0 )THEN - INFO = 4 - ELSE IF( LDA.LT.MAX( 1, N ) )THEN - INFO = 6 - ELSE IF( INCX.EQ.0 )THEN - INFO = 8 - END IF - IF( INFO.NE.0 )THEN - CALL XERBLA( 'DTRSV ', INFO ) - RETURN - END IF -* -* Quick return if possible. -* - IF( N.EQ.0 ) - $ RETURN -* - NOUNIT = LSAME( DIAG, 'N' ) -* -* Set up the start point in X if the increment is not unity. This -* will be ( N - 1 )*INCX too small for descending loops. -* - IF( INCX.LE.0 )THEN - KX = 1 - ( N - 1 )*INCX - ELSE IF( INCX.NE.1 )THEN - KX = 1 - END IF -* -* Start the operations. In this version the elements of A are -* accessed sequentially with one pass through A. -* - IF( LSAME( TRANS, 'N' ) )THEN -* -* Form x := inv( A )*x. -* - IF( LSAME( UPLO, 'U' ) )THEN - IF( INCX.EQ.1 )THEN - DO 20, J = N, 1, -1 - IF( X( J ).NE.ZERO )THEN - IF( NOUNIT ) - $ X( J ) = X( J )/A( J, J ) - TEMP = X( J ) - DO 10, I = J - 1, 1, -1 - X( I ) = X( I ) - TEMP*A( I, J ) - 10 CONTINUE - END IF - 20 CONTINUE - ELSE - JX = KX + ( N - 1 )*INCX - DO 40, J = N, 1, -1 - IF( X( JX ).NE.ZERO )THEN - IF( NOUNIT ) - $ X( JX ) = X( JX )/A( J, J ) - TEMP = X( JX ) - IX = JX - DO 30, I = J - 1, 1, -1 - IX = IX - INCX - X( IX ) = X( IX ) - TEMP*A( I, J ) - 30 CONTINUE - END IF - JX = JX - INCX - 40 CONTINUE - END IF - ELSE - IF( INCX.EQ.1 )THEN - DO 60, J = 1, N - IF( X( J ).NE.ZERO )THEN - IF( NOUNIT ) - $ X( J ) = X( J )/A( J, J ) - TEMP = X( J ) - DO 50, I = J + 1, N - X( I ) = X( I ) - TEMP*A( I, J ) - 50 CONTINUE - END IF - 60 CONTINUE - ELSE - JX = KX - DO 80, J = 1, N - IF( X( JX ).NE.ZERO )THEN - IF( NOUNIT ) - $ X( JX ) = X( JX )/A( J, J ) - TEMP = X( JX ) - IX = JX - DO 70, I = J + 1, N - IX = IX + INCX - X( IX ) = X( IX ) - TEMP*A( I, J ) - 70 CONTINUE - END IF - JX = JX + INCX - 80 CONTINUE - END IF - END IF - ELSE -* -* Form x := inv( A' )*x. -* - IF( LSAME( UPLO, 'U' ) )THEN - IF( INCX.EQ.1 )THEN - DO 100, J = 1, N - TEMP = X( J ) - DO 90, I = 1, J - 1 - TEMP = TEMP - A( I, J )*X( I ) - 90 CONTINUE - IF( NOUNIT ) - $ TEMP = TEMP/A( J, J ) - X( J ) = TEMP - 100 CONTINUE - ELSE - JX = KX - DO 120, J = 1, N - TEMP = X( JX ) - IX = KX - DO 110, I = 1, J - 1 - TEMP = TEMP - A( I, J )*X( IX ) - IX = IX + INCX - 110 CONTINUE - IF( NOUNIT ) - $ TEMP = TEMP/A( J, J ) - X( JX ) = TEMP - JX = JX + INCX - 120 CONTINUE - END IF - ELSE - IF( INCX.EQ.1 )THEN - DO 140, J = N, 1, -1 - TEMP = X( J ) - DO 130, I = N, J + 1, -1 - TEMP = TEMP - A( I, J )*X( I ) - 130 CONTINUE - IF( NOUNIT ) - $ TEMP = TEMP/A( J, J ) - X( J ) = TEMP - 140 CONTINUE - ELSE - KX = KX + ( N - 1 )*INCX - JX = KX - DO 160, J = N, 1, -1 - TEMP = X( JX ) - IX = KX - DO 150, I = N, J + 1, -1 - TEMP = TEMP - A( I, J )*X( IX ) - IX = IX - INCX - 150 CONTINUE - IF( NOUNIT ) - $ TEMP = TEMP/A( J, J ) - X( JX ) = TEMP - JX = JX - INCX - 160 CONTINUE - END IF - END IF - END IF -* - RETURN -* -* End of DTRSV . -* - END diff --git a/Cantera/ext/blas/dzasum.f b/Cantera/ext/blas/dzasum.f deleted file mode 100755 index d21c1ffc9..000000000 --- a/Cantera/ext/blas/dzasum.f +++ /dev/null @@ -1,34 +0,0 @@ - double precision function dzasum(n,zx,incx) -c -c takes the sum of the absolute values. -c jack dongarra, 3/11/78. -c modified 3/93 to return if incx .le. 0. -c modified 12/3/93, array(1) declarations changed to array(*) -c - double complex zx(*) - double precision stemp,dcabs1 - integer i,incx,ix,n -c - dzasum = 0.0d0 - stemp = 0.0d0 - if( n.le.0 .or. incx.le.0 )return - if(incx.eq.1)go to 20 -c -c code for increment not equal to 1 -c - ix = 1 - do 10 i = 1,n - stemp = stemp + dcabs1(zx(ix)) - ix = ix + incx - 10 continue - dzasum = stemp - return -c -c code for increment equal to 1 -c - 20 do 30 i = 1,n - stemp = stemp + dcabs1(zx(i)) - 30 continue - dzasum = stemp - return - end diff --git a/Cantera/ext/blas/dznrm2.f b/Cantera/ext/blas/dznrm2.f deleted file mode 100755 index 205ce3932..000000000 --- a/Cantera/ext/blas/dznrm2.f +++ /dev/null @@ -1,67 +0,0 @@ - DOUBLE PRECISION FUNCTION DZNRM2( N, X, INCX ) -* .. Scalar Arguments .. - INTEGER INCX, N -* .. Array Arguments .. - COMPLEX*16 X( * ) -* .. -* -* DZNRM2 returns the euclidean norm of a vector via the function -* name, so that -* -* DZNRM2 := sqrt( conjg( x' )*x ) -* -* -* -* -- This version written on 25-October-1982. -* Modified on 14-October-1993 to inline the call to ZLASSQ. -* Sven Hammarling, Nag Ltd. -* -* -* .. Parameters .. - DOUBLE PRECISION ONE , ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. Local Scalars .. - INTEGER IX - DOUBLE PRECISION NORM, SCALE, SSQ, TEMP -* .. Intrinsic Functions .. - INTRINSIC ABS, DIMAG, DBLE, SQRT -* .. -* .. Executable Statements .. - IF( N.LT.1 .OR. INCX.LT.1 )THEN - NORM = ZERO - ELSE - SCALE = ZERO - SSQ = ONE -* The following loop is equivalent to this call to the LAPACK -* auxiliary routine: -* CALL ZLASSQ( N, X, INCX, SCALE, SSQ ) -* - DO 10, IX = 1, 1 + ( N - 1 )*INCX, INCX - IF( DBLE( X( IX ) ).NE.ZERO )THEN - TEMP = ABS( DBLE( X( IX ) ) ) - IF( SCALE.LT.TEMP )THEN - SSQ = ONE + SSQ*( SCALE/TEMP )**2 - SCALE = TEMP - ELSE - SSQ = SSQ + ( TEMP/SCALE )**2 - END IF - END IF - IF( DIMAG( X( IX ) ).NE.ZERO )THEN - TEMP = ABS( DIMAG( X( IX ) ) ) - IF( SCALE.LT.TEMP )THEN - SSQ = ONE + SSQ*( SCALE/TEMP )**2 - SCALE = TEMP - ELSE - SSQ = SSQ + ( TEMP/SCALE )**2 - END IF - END IF - 10 CONTINUE - NORM = SCALE * SQRT( SSQ ) - END IF -* - DZNRM2 = NORM - RETURN -* -* End of DZNRM2. -* - END diff --git a/Cantera/ext/blas/icamax.f b/Cantera/ext/blas/icamax.f deleted file mode 100755 index b13d4904f..000000000 --- a/Cantera/ext/blas/icamax.f +++ /dev/null @@ -1,43 +0,0 @@ - integer function icamax(n,cx,incx) -c -c finds the index of element having max. absolute value. -c jack dongarra, linpack, 3/11/78. -c modified 3/93 to return if incx .le. 0. -c modified 12/3/93, array(1) declarations changed to array(*) -c - complex cx(*) - real smax - integer i,incx,ix,n - complex zdum - real cabs1 - cabs1(zdum) = abs(real(zdum)) + abs(aimag(zdum)) -c - icamax = 0 - if( n.lt.1 .or. incx.le.0 ) return - icamax = 1 - if(n.eq.1)return - if(incx.eq.1)go to 20 -c -c code for increment not equal to 1 -c - ix = 1 - smax = cabs1(cx(1)) - ix = ix + incx - do 10 i = 2,n - if(cabs1(cx(ix)).le.smax) go to 5 - icamax = i - smax = cabs1(cx(ix)) - 5 ix = ix + incx - 10 continue - return -c -c code for increment equal to 1 -c - 20 smax = cabs1(cx(1)) - do 30 i = 2,n - if(cabs1(cx(i)).le.smax) go to 30 - icamax = i - smax = cabs1(cx(i)) - 30 continue - return - end diff --git a/Cantera/ext/blas/idamax.f b/Cantera/ext/blas/idamax.f deleted file mode 100755 index 59d80dc41..000000000 --- a/Cantera/ext/blas/idamax.f +++ /dev/null @@ -1,39 +0,0 @@ - integer function idamax(n,dx,incx) -c -c finds the index of element having max. absolute value. -c jack dongarra, linpack, 3/11/78. -c modified 3/93 to return if incx .le. 0. -c modified 12/3/93, array(1) declarations changed to array(*) -c - double precision dx(*),dmax - integer i,incx,ix,n -c - idamax = 0 - if( n.lt.1 .or. incx.le.0 ) return - idamax = 1 - if(n.eq.1)return - if(incx.eq.1)go to 20 -c -c code for increment not equal to 1 -c - ix = 1 - dmax = dabs(dx(1)) - ix = ix + incx - do 10 i = 2,n - if(dabs(dx(ix)).le.dmax) go to 5 - idamax = i - dmax = dabs(dx(ix)) - 5 ix = ix + incx - 10 continue - return -c -c code for increment equal to 1 -c - 20 dmax = dabs(dx(1)) - do 30 i = 2,n - if(dabs(dx(i)).le.dmax) go to 30 - idamax = i - dmax = dabs(dx(i)) - 30 continue - return - end diff --git a/Cantera/ext/blas/isamax.f b/Cantera/ext/blas/isamax.f deleted file mode 100755 index a649e0281..000000000 --- a/Cantera/ext/blas/isamax.f +++ /dev/null @@ -1,39 +0,0 @@ - integer function isamax(n,sx,incx) -c -c finds the index of element having max. absolute value. -c jack dongarra, linpack, 3/11/78. -c modified 3/93 to return if incx .le. 0. -c modified 12/3/93, array(1) declarations changed to array(*) -c - real sx(*),smax - integer i,incx,ix,n -c - isamax = 0 - if( n.lt.1 .or. incx.le.0 ) return - isamax = 1 - if(n.eq.1)return - if(incx.eq.1)go to 20 -c -c code for increment not equal to 1 -c - ix = 1 - smax = abs(sx(1)) - ix = ix + incx - do 10 i = 2,n - if(abs(sx(ix)).le.smax) go to 5 - isamax = i - smax = abs(sx(ix)) - 5 ix = ix + incx - 10 continue - return -c -c code for increment equal to 1 -c - 20 smax = abs(sx(1)) - do 30 i = 2,n - if(abs(sx(i)).le.smax) go to 30 - isamax = i - smax = abs(sx(i)) - 30 continue - return - end diff --git a/Cantera/ext/blas/izamax.f b/Cantera/ext/blas/izamax.f deleted file mode 100755 index ec14f827d..000000000 --- a/Cantera/ext/blas/izamax.f +++ /dev/null @@ -1,41 +0,0 @@ - integer function izamax(n,zx,incx) -c -c finds the index of element having max. absolute value. -c jack dongarra, 1/15/85. -c modified 3/93 to return if incx .le. 0. -c modified 12/3/93, array(1) declarations changed to array(*) -c - double complex zx(*) - double precision smax - integer i,incx,ix,n - double precision dcabs1 -c - izamax = 0 - if( n.lt.1 .or. incx.le.0 )return - izamax = 1 - if(n.eq.1)return - if(incx.eq.1)go to 20 -c -c code for increment not equal to 1 -c - ix = 1 - smax = dcabs1(zx(1)) - ix = ix + incx - do 10 i = 2,n - if(dcabs1(zx(ix)).le.smax) go to 5 - izamax = i - smax = dcabs1(zx(ix)) - 5 ix = ix + incx - 10 continue - return -c -c code for increment equal to 1 -c - 20 smax = dcabs1(zx(1)) - do 30 i = 2,n - if(dcabs1(zx(i)).le.smax) go to 30 - izamax = i - smax = dcabs1(zx(i)) - 30 continue - return - end diff --git a/Cantera/ext/blas/lsame.f b/Cantera/ext/blas/lsame.f deleted file mode 100755 index f89517460..000000000 --- a/Cantera/ext/blas/lsame.f +++ /dev/null @@ -1,87 +0,0 @@ - LOGICAL FUNCTION LSAME( CA, CB ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* January 31, 1994 -* -* .. Scalar Arguments .. - CHARACTER CA, CB -* .. -* -* Purpose -* ======= -* -* LSAME returns .TRUE. if CA is the same letter as CB regardless of -* case. -* -* Arguments -* ========= -* -* CA (input) CHARACTER*1 -* CB (input) CHARACTER*1 -* CA and CB specify the single characters to be compared. -* -* ===================================================================== -* -* .. Intrinsic Functions .. - INTRINSIC ICHAR -* .. -* .. Local Scalars .. - INTEGER INTA, INTB, ZCODE -* .. -* .. Executable Statements .. -* -* Test if the characters are equal -* - LSAME = CA.EQ.CB - IF( LSAME ) - $ RETURN -* -* Now test for equivalence if both characters are alphabetic. -* - ZCODE = ICHAR( 'Z' ) -* -* Use 'Z' rather than 'A' so that ASCII can be detected on Prime -* machines, on which ICHAR returns a value with bit 8 set. -* ICHAR('A') on Prime machines returns 193 which is the same as -* ICHAR('A') on an EBCDIC machine. -* - INTA = ICHAR( CA ) - INTB = ICHAR( CB ) -* - IF( ZCODE.EQ.90 .OR. ZCODE.EQ.122 ) THEN -* -* ASCII is assumed - ZCODE is the ASCII code of either lower or -* upper case 'Z'. -* - IF( INTA.GE.97 .AND. INTA.LE.122 ) INTA = INTA - 32 - IF( INTB.GE.97 .AND. INTB.LE.122 ) INTB = INTB - 32 -* - ELSE IF( ZCODE.EQ.233 .OR. ZCODE.EQ.169 ) THEN -* -* EBCDIC is assumed - ZCODE is the EBCDIC code of either lower or -* upper case 'Z'. -* - IF( INTA.GE.129 .AND. INTA.LE.137 .OR. - $ INTA.GE.145 .AND. INTA.LE.153 .OR. - $ INTA.GE.162 .AND. INTA.LE.169 ) INTA = INTA + 64 - IF( INTB.GE.129 .AND. INTB.LE.137 .OR. - $ INTB.GE.145 .AND. INTB.LE.153 .OR. - $ INTB.GE.162 .AND. INTB.LE.169 ) INTB = INTB + 64 -* - ELSE IF( ZCODE.EQ.218 .OR. ZCODE.EQ.250 ) THEN -* -* ASCII is assumed, on Prime machines - ZCODE is the ASCII code -* plus 128 of either lower or upper case 'Z'. -* - IF( INTA.GE.225 .AND. INTA.LE.250 ) INTA = INTA - 32 - IF( INTB.GE.225 .AND. INTB.LE.250 ) INTB = INTB - 32 - END IF - LSAME = INTA.EQ.INTB -* -* RETURN -* -* End of LSAME -* - END diff --git a/Cantera/ext/blas/xerbla.f b/Cantera/ext/blas/xerbla.f deleted file mode 100755 index 18100082c..000000000 --- a/Cantera/ext/blas/xerbla.f +++ /dev/null @@ -1,43 +0,0 @@ - SUBROUTINE XERBLA( SRNAME, INFO ) -* -* -- LAPACK auxiliary routine (preliminary version) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - CHARACTER*6 SRNAME - INTEGER INFO -* .. -* -* Purpose -* ======= -* -* XERBLA is an error handler for the LAPACK routines. -* It is called by an LAPACK routine if an input parameter has an -* invalid value. A message is printed and execution stops. -* -* Installers may consider modifying the STOP statement in order to -* call system-specific exception-handling facilities. -* -* Arguments -* ========= -* -* SRNAME (input) CHARACTER*6 -* The name of the routine which called XERBLA. -* -* INFO (input) INTEGER -* The position of the invalid parameter in the parameter list -* of the calling routine. -* -* - WRITE( *, FMT = 9999 )SRNAME, INFO -* - STOP -* - 9999 FORMAT( ' ** On entry to ', A6, ' parameter number ', I2, ' had ', - $ 'an illegal value' ) -* -* End of XERBLA -* - END diff --git a/Cantera/ext/cvode/Makefile.am b/Cantera/ext/cvode/Makefile.am index 752831146..713f27835 100644 --- a/Cantera/ext/cvode/Makefile.am +++ b/Cantera/ext/cvode/Makefile.am @@ -23,3 +23,8 @@ __top_builddir__build_lib_libcvode_la_LDFLAGS = $(all_libraries) -release $ __top_builddir__build_lib_libcvode_la_SOURCES = $(fc_sources) $(cc_sources) CLEANFILES = *.o + +# header file accumulation +all: + @echo copying headers $< + cp *.h $(top_builddir)/build/include/ From 300a2b5185f39d467d4c3e4048b3d28a9365c88f Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Sat, 4 Feb 2012 00:36:40 +0000 Subject: [PATCH 075/124] [cantera]: removing deprecated lapack --- Cantera/ext/lapack/Makefile.am | 28 -- Cantera/ext/lapack/dbdsqr.f | 807 ------------------------------- Cantera/ext/lapack/dgbsv.f | 144 ------ Cantera/ext/lapack/dgbtf2.f | 203 -------- Cantera/ext/lapack/dgbtrf.f | 442 ----------------- Cantera/ext/lapack/dgbtrs.f | 187 ------- Cantera/ext/lapack/dgebd2.f | 238 --------- Cantera/ext/lapack/dgebrd.f | 258 ---------- Cantera/ext/lapack/dgelq2.f | 122 ----- Cantera/ext/lapack/dgelqf.f | 186 ------- Cantera/ext/lapack/dgelss.f | 604 ----------------------- Cantera/ext/lapack/dgeqr2.f | 122 ----- Cantera/ext/lapack/dgeqrf.f | 187 ------- Cantera/ext/lapack/dgetf2.f | 135 ------ Cantera/ext/lapack/dgetrf.f | 160 ------ Cantera/ext/lapack/dgetri.f | 801 ------------------------------ Cantera/ext/lapack/dgetrs.f | 150 ------ Cantera/ext/lapack/dlabad.f | 56 --- Cantera/ext/lapack/dlabrd.f | 291 ----------- Cantera/ext/lapack/dlacpy.f | 88 ---- Cantera/ext/lapack/dlamch.f | 857 --------------------------------- Cantera/ext/lapack/dlange.f | 145 ------ Cantera/ext/lapack/dlapy2.f | 54 --- Cantera/ext/lapack/dlarf.f | 116 ----- Cantera/ext/lapack/dlarfb.f | 588 ---------------------- Cantera/ext/lapack/dlarfg.f | 138 ------ Cantera/ext/lapack/dlarft.f | 218 --------- Cantera/ext/lapack/dlartg.f | 143 ------ Cantera/ext/lapack/dlas2.f | 122 ----- Cantera/ext/lapack/dlascl.f | 268 ----------- Cantera/ext/lapack/dlaset.f | 115 ----- Cantera/ext/lapack/dlasq1.f | 222 --------- Cantera/ext/lapack/dlasq2.f | 268 ----------- Cantera/ext/lapack/dlasq3.f | 820 ------------------------------- Cantera/ext/lapack/dlasq4.f | 103 ---- Cantera/ext/lapack/dlasr.f | 325 ------------- Cantera/ext/lapack/dlasrt.f | 244 ---------- Cantera/ext/lapack/dlassq.f | 89 ---- Cantera/ext/lapack/dlasv2.f | 250 ---------- Cantera/ext/lapack/dlaswp.f | 120 ----- Cantera/ext/lapack/dorg2r.f | 130 ----- Cantera/ext/lapack/dorgbr.f | 223 --------- Cantera/ext/lapack/dorgl2.f | 134 ------ Cantera/ext/lapack/dorglq.f | 207 -------- Cantera/ext/lapack/dorgqr.f | 208 -------- Cantera/ext/lapack/dorm2r.f | 198 -------- Cantera/ext/lapack/dormbr.f | 250 ---------- Cantera/ext/lapack/dorml2.f | 198 -------- Cantera/ext/lapack/dormlq.f | 254 ---------- Cantera/ext/lapack/dormqr.f | 247 ---------- Cantera/ext/lapack/drscl.f | 115 ----- Cantera/ext/lapack/ilaenv.f | 506 ------------------- Cantera/ext/lapack/lsame.f | 87 ---- Cantera/ext/lapack/xerbla.f | 46 -- 54 files changed, 13217 deletions(-) delete mode 100644 Cantera/ext/lapack/Makefile.am delete mode 100755 Cantera/ext/lapack/dbdsqr.f delete mode 100755 Cantera/ext/lapack/dgbsv.f delete mode 100755 Cantera/ext/lapack/dgbtf2.f delete mode 100755 Cantera/ext/lapack/dgbtrf.f delete mode 100755 Cantera/ext/lapack/dgbtrs.f delete mode 100755 Cantera/ext/lapack/dgebd2.f delete mode 100755 Cantera/ext/lapack/dgebrd.f delete mode 100755 Cantera/ext/lapack/dgelq2.f delete mode 100755 Cantera/ext/lapack/dgelqf.f delete mode 100755 Cantera/ext/lapack/dgelss.f delete mode 100755 Cantera/ext/lapack/dgeqr2.f delete mode 100755 Cantera/ext/lapack/dgeqrf.f delete mode 100755 Cantera/ext/lapack/dgetf2.f delete mode 100755 Cantera/ext/lapack/dgetrf.f delete mode 100755 Cantera/ext/lapack/dgetri.f delete mode 100755 Cantera/ext/lapack/dgetrs.f delete mode 100755 Cantera/ext/lapack/dlabad.f delete mode 100755 Cantera/ext/lapack/dlabrd.f delete mode 100755 Cantera/ext/lapack/dlacpy.f delete mode 100755 Cantera/ext/lapack/dlamch.f delete mode 100755 Cantera/ext/lapack/dlange.f delete mode 100755 Cantera/ext/lapack/dlapy2.f delete mode 100755 Cantera/ext/lapack/dlarf.f delete mode 100755 Cantera/ext/lapack/dlarfb.f delete mode 100755 Cantera/ext/lapack/dlarfg.f delete mode 100755 Cantera/ext/lapack/dlarft.f delete mode 100755 Cantera/ext/lapack/dlartg.f delete mode 100755 Cantera/ext/lapack/dlas2.f delete mode 100755 Cantera/ext/lapack/dlascl.f delete mode 100755 Cantera/ext/lapack/dlaset.f delete mode 100755 Cantera/ext/lapack/dlasq1.f delete mode 100755 Cantera/ext/lapack/dlasq2.f delete mode 100755 Cantera/ext/lapack/dlasq3.f delete mode 100755 Cantera/ext/lapack/dlasq4.f delete mode 100755 Cantera/ext/lapack/dlasr.f delete mode 100755 Cantera/ext/lapack/dlasrt.f delete mode 100755 Cantera/ext/lapack/dlassq.f delete mode 100755 Cantera/ext/lapack/dlasv2.f delete mode 100755 Cantera/ext/lapack/dlaswp.f delete mode 100755 Cantera/ext/lapack/dorg2r.f delete mode 100755 Cantera/ext/lapack/dorgbr.f delete mode 100755 Cantera/ext/lapack/dorgl2.f delete mode 100755 Cantera/ext/lapack/dorglq.f delete mode 100755 Cantera/ext/lapack/dorgqr.f delete mode 100755 Cantera/ext/lapack/dorm2r.f delete mode 100755 Cantera/ext/lapack/dormbr.f delete mode 100755 Cantera/ext/lapack/dorml2.f delete mode 100755 Cantera/ext/lapack/dormlq.f delete mode 100755 Cantera/ext/lapack/dormqr.f delete mode 100755 Cantera/ext/lapack/drscl.f delete mode 100755 Cantera/ext/lapack/ilaenv.f delete mode 100755 Cantera/ext/lapack/lsame.f delete mode 100755 Cantera/ext/lapack/xerbla.f diff --git a/Cantera/ext/lapack/Makefile.am b/Cantera/ext/lapack/Makefile.am deleted file mode 100644 index 650ece62c..000000000 --- a/Cantera/ext/lapack/Makefile.am +++ /dev/null @@ -1,28 +0,0 @@ -fc_sources = dbdsqr.f dgbtrf.f dgbtf2.f dgbtrs.f dgbsv.f \ - dgebd2.f dgebrd.f dgelq2.f dgelqf.f dgelss.f \ - dgeqr2.f dgeqrf.f dgetf2.f dgetrf.f dgetri.f \ - dgetrs.f dlabad.f dlabrd.f dlacpy.f dlamch.f \ - dlange.f dlapy2.f dlarf.f dlarfb.f dlarfg.f \ - dlarft.f dlartg.f dlas2.f dlascl.f dlaset.f \ - dlasq1.f dlasq2.f dlasq3.f dlasq4.f dlasr.f \ - dlasrt.f dlassq.f dlasv2.f dlaswp.f dorg2r.f \ - dorgbr.f dorgl2.f dorglq.f dorgqr.f dorm2r.f \ - dormbr.f dorml2.f dormlq.f dormqr.f drscl.f \ - ilaenv.f - -AM_CPPFLAGS = -AM_CXXFLAGS = $(AM_CPPFLAGS) -AM_FCFLAGS = $(AM_CPPFLAGS) - -lib_LTLIBRARIES = $(top_builddir)/build/lib/libctlapack.la -library_includedir = $(top_builddir)/build/include -library_include_HEADERS = $(h_sources) - -#----------------------- -# Cantera Converters C/C++ library -#----------------------- - -__top_builddir__build_lib_libctlapack_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -__top_builddir__build_lib_libctlapack_la_SOURCES = $(fc_sources) $(cc_sources) - -CLEANFILES = *.o diff --git a/Cantera/ext/lapack/dbdsqr.f b/Cantera/ext/lapack/dbdsqr.f deleted file mode 100755 index e89063a7f..000000000 --- a/Cantera/ext/lapack/dbdsqr.f +++ /dev/null @@ -1,807 +0,0 @@ - SUBROUTINE DBDSQR( UPLO, N, NCVT, NRU, NCC, D, E, VT, LDVT, U, - $ LDU, C, LDC, WORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - CHARACTER UPLO - INTEGER INFO, LDC, LDU, LDVT, N, NCC, NCVT, NRU -* .. -* .. Array Arguments .. - DOUBLE PRECISION C( LDC, * ), D( * ), E( * ), U( LDU, * ), - $ VT( LDVT, * ), WORK( * ) -* .. -* -* Purpose -* ======= -* -* DBDSQR computes the singular value decomposition (SVD) of a real -* N-by-N (upper or lower) bidiagonal matrix B: B = Q * S * P' (P' -* denotes the transpose of P), where S is a diagonal matrix with -* non-negative diagonal elements (the singular values of B), and Q -* and P are orthogonal matrices. -* -* The routine computes S, and optionally computes U * Q, P' * VT, -* or Q' * C, for given real input matrices U, VT, and C. -* -* See "Computing Small Singular Values of Bidiagonal Matrices With -* Guaranteed High Relative Accuracy," by J. Demmel and W. Kahan, -* LAPACK Working Note #3 (or SIAM J. Sci. Statist. Comput. vol. 11, -* no. 5, pp. 873-912, Sept 1990) and -* "Accurate singular values and differential qd algorithms," by -* B. Parlett and V. Fernando, Technical Report CPAM-554, Mathematics -* Department, University of California at Berkeley, July 1992 -* for a detailed description of the algorithm. -* -* Arguments -* ========= -* -* UPLO (input) CHARACTER*1 -* = 'U': B is upper bidiagonal; -* = 'L': B is lower bidiagonal. -* -* N (input) INTEGER -* The order of the matrix B. N >= 0. -* -* NCVT (input) INTEGER -* The number of columns of the matrix VT. NCVT >= 0. -* -* NRU (input) INTEGER -* The number of rows of the matrix U. NRU >= 0. -* -* NCC (input) INTEGER -* The number of columns of the matrix C. NCC >= 0. -* -* D (input/output) DOUBLE PRECISION array, dimension (N) -* On entry, the n diagonal elements of the bidiagonal matrix B. -* On exit, if INFO=0, the singular values of B in decreasing -* order. -* -* E (input/output) DOUBLE PRECISION array, dimension (N) -* On entry, the elements of E contain the -* offdiagonal elements of the bidiagonal matrix whose SVD -* is desired. On normal exit (INFO = 0), E is destroyed. -* If the algorithm does not converge (INFO > 0), D and E -* will contain the diagonal and superdiagonal elements of a -* bidiagonal matrix orthogonally equivalent to the one given -* as input. E(N) is used for workspace. -* -* VT (input/output) DOUBLE PRECISION array, dimension (LDVT, NCVT) -* On entry, an N-by-NCVT matrix VT. -* On exit, VT is overwritten by P' * VT. -* VT is not referenced if NCVT = 0. -* -* LDVT (input) INTEGER -* The leading dimension of the array VT. -* LDVT >= max(1,N) if NCVT > 0; LDVT >= 1 if NCVT = 0. -* -* U (input/output) DOUBLE PRECISION array, dimension (LDU, N) -* On entry, an NRU-by-N matrix U. -* On exit, U is overwritten by U * Q. -* U is not referenced if NRU = 0. -* -* LDU (input) INTEGER -* The leading dimension of the array U. LDU >= max(1,NRU). -* -* C (input/output) DOUBLE PRECISION array, dimension (LDC, NCC) -* On entry, an N-by-NCC matrix C. -* On exit, C is overwritten by Q' * C. -* C is not referenced if NCC = 0. -* -* LDC (input) INTEGER -* The leading dimension of the array C. -* LDC >= max(1,N) if NCC > 0; LDC >=1 if NCC = 0. -* -* WORK (workspace) DOUBLE PRECISION array, dimension -* 2*N if only singular values wanted (NCVT = NRU = NCC = 0) -* max( 1, 4*N-4 ) otherwise -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: If INFO = -i, the i-th argument had an illegal value -* > 0: the algorithm did not converge; D and E contain the -* elements of a bidiagonal matrix which is orthogonally -* similar to the input matrix B; if INFO = i, i -* elements of E have not converged to zero. -* -* Internal Parameters -* =================== -* -* TOLMUL DOUBLE PRECISION, default = max(10,min(100,EPS**(-1/8))) -* TOLMUL controls the convergence criterion of the QR loop. -* If it is positive, TOLMUL*EPS is the desired relative -* precision in the computed singular values. -* If it is negative, abs(TOLMUL*EPS*sigma_max) is the -* desired absolute accuracy in the computed singular -* values (corresponds to relative accuracy -* abs(TOLMUL*EPS) in the largest singular value. -* abs(TOLMUL) should be between 1 and 1/EPS, and preferably -* between 10 (for fast convergence) and .1/EPS -* (for there to be some accuracy in the results). -* Default is to lose at either one eighth or 2 of the -* available decimal digits in each computed singular value -* (whichever is smaller). -* -* MAXITR INTEGER, default = 6 -* MAXITR controls the maximum number of passes of the -* algorithm through its inner loop. The algorithms stops -* (and so fails to converge) if the number of passes -* through the inner loop exceeds MAXITR*N**2. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D0 ) - DOUBLE PRECISION ONE - PARAMETER ( ONE = 1.0D0 ) - DOUBLE PRECISION NEGONE - PARAMETER ( NEGONE = -1.0D0 ) - DOUBLE PRECISION HNDRTH - PARAMETER ( HNDRTH = 0.01D0 ) - DOUBLE PRECISION TEN - PARAMETER ( TEN = 10.0D0 ) - DOUBLE PRECISION HNDRD - PARAMETER ( HNDRD = 100.0D0 ) - DOUBLE PRECISION MEIGTH - PARAMETER ( MEIGTH = -0.125D0 ) - INTEGER MAXITR - PARAMETER ( MAXITR = 6 ) -* .. -* .. Local Scalars .. - LOGICAL ROTATE - INTEGER I, IDIR, IROT, ISUB, ITER, IUPLO, J, LL, LLL, - $ M, MAXIT, NM1, NM12, NM13, OLDLL, OLDM - DOUBLE PRECISION ABSE, ABSS, COSL, COSR, CS, EPS, F, G, H, MU, - $ OLDCS, OLDSN, R, SHIFT, SIGMN, SIGMX, SINL, - $ SINR, SLL, SMAX, SMIN, SMINL, SMINLO, SMINOA, - $ SN, THRESH, TOL, TOLMUL, UNFL -* .. -* .. External Functions .. - LOGICAL LSAME - DOUBLE PRECISION DLAMCH - EXTERNAL LSAME, DLAMCH -* .. -* .. External Subroutines .. - EXTERNAL DLARTG, DLAS2, DLASQ1, DLASR, DLASV2, DROT, - $ DSCAL, DSWAP, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC ABS, DBLE, MAX, MIN, SIGN, SQRT -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IUPLO = 0 - IF( LSAME( UPLO, 'U' ) ) - $ IUPLO = 1 - IF( LSAME( UPLO, 'L' ) ) - $ IUPLO = 2 - IF( IUPLO.EQ.0 ) THEN - INFO = -1 - ELSE IF( N.LT.0 ) THEN - INFO = -2 - ELSE IF( NCVT.LT.0 ) THEN - INFO = -3 - ELSE IF( NRU.LT.0 ) THEN - INFO = -4 - ELSE IF( NCC.LT.0 ) THEN - INFO = -5 - ELSE IF( ( NCVT.EQ.0 .AND. LDVT.LT.1 ) .OR. - $ ( NCVT.GT.0 .AND. LDVT.LT.MAX( 1, N ) ) ) THEN - INFO = -9 - ELSE IF( LDU.LT.MAX( 1, NRU ) ) THEN - INFO = -11 - ELSE IF( ( NCC.EQ.0 .AND. LDC.LT.1 ) .OR. - $ ( NCC.GT.0 .AND. LDC.LT.MAX( 1, N ) ) ) THEN - INFO = -13 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DBDSQR', -INFO ) - RETURN - END IF - IF( N.EQ.0 ) - $ RETURN - IF( N.EQ.1 ) - $ GO TO 150 -* -* ROTATE is true if any singular vectors desired, false otherwise -* - ROTATE = ( NCVT.GT.0 ) .OR. ( NRU.GT.0 ) .OR. ( NCC.GT.0 ) -* -* If no singular vectors desired, use qd algorithm -* - IF( .NOT.ROTATE ) THEN - CALL DLASQ1( N, D, E, WORK, INFO ) - RETURN - END IF -* - NM1 = N - 1 - NM12 = NM1 + NM1 - NM13 = NM12 + NM1 -* -* Get machine constants -* - EPS = DLAMCH( 'Epsilon' ) - UNFL = DLAMCH( 'Safe minimum' ) -* -* If matrix lower bidiagonal, rotate to be upper bidiagonal -* by applying Givens rotations on the left -* - IF( IUPLO.EQ.2 ) THEN - DO 10 I = 1, N - 1 - CALL DLARTG( D( I ), E( I ), CS, SN, R ) - D( I ) = R - E( I ) = SN*D( I+1 ) - D( I+1 ) = CS*D( I+1 ) - WORK( I ) = CS - WORK( NM1+I ) = SN - 10 CONTINUE -* -* Update singular vectors if desired -* - IF( NRU.GT.0 ) - $ CALL DLASR( 'R', 'V', 'F', NRU, N, WORK( 1 ), WORK( N ), U, - $ LDU ) - IF( NCC.GT.0 ) - $ CALL DLASR( 'L', 'V', 'F', N, NCC, WORK( 1 ), WORK( N ), C, - $ LDC ) - END IF -* -* Compute singular values to relative accuracy TOL -* (By setting TOL to be negative, algorithm will compute -* singular values to absolute accuracy ABS(TOL)*norm(input matrix)) -* - TOLMUL = MAX( TEN, MIN( HNDRD, EPS**MEIGTH ) ) - TOL = TOLMUL*EPS -* -* Compute approximate maximum, minimum singular values -* - SMAX = ABS( D( N ) ) - DO 20 I = 1, N - 1 - SMAX = MAX( SMAX, ABS( D( I ) ), ABS( E( I ) ) ) - 20 CONTINUE - SMINL = ZERO - IF( TOL.GE.ZERO ) THEN -* -* Relative accuracy desired -* - SMINOA = ABS( D( 1 ) ) - IF( SMINOA.EQ.ZERO ) - $ GO TO 40 - MU = SMINOA - DO 30 I = 2, N - MU = ABS( D( I ) )*( MU / ( MU+ABS( E( I-1 ) ) ) ) - SMINOA = MIN( SMINOA, MU ) - IF( SMINOA.EQ.ZERO ) - $ GO TO 40 - 30 CONTINUE - 40 CONTINUE - SMINOA = SMINOA / SQRT( DBLE( N ) ) - THRESH = MAX( TOL*SMINOA, MAXITR*N*N*UNFL ) - ELSE -* -* Absolute accuracy desired -* - THRESH = MAX( ABS( TOL )*SMAX, MAXITR*N*N*UNFL ) - END IF -* -* Prepare for main iteration loop for the singular values -* (MAXIT is the maximum number of passes through the inner -* loop permitted before nonconvergence signalled.) -* - MAXIT = MAXITR*N*N - ITER = 0 - OLDLL = -1 - OLDM = -1 -* -* M points to last element of unconverged part of matrix -* - M = N -* -* Begin main iteration loop -* - 50 CONTINUE -* -* Check for convergence or exceeding iteration count -* - IF( M.LE.1 ) - $ GO TO 150 - IF( ITER.GT.MAXIT ) - $ GO TO 190 -* -* Find diagonal block of matrix to work on -* - IF( TOL.LT.ZERO .AND. ABS( D( M ) ).LE.THRESH ) - $ D( M ) = ZERO - SMAX = ABS( D( M ) ) - SMIN = SMAX - DO 60 LLL = 1, M - LL = M - LLL - IF( LL.EQ.0 ) - $ GO TO 80 - ABSS = ABS( D( LL ) ) - ABSE = ABS( E( LL ) ) - IF( TOL.LT.ZERO .AND. ABSS.LE.THRESH ) - $ D( LL ) = ZERO - IF( ABSE.LE.THRESH ) - $ GO TO 70 - SMIN = MIN( SMIN, ABSS ) - SMAX = MAX( SMAX, ABSS, ABSE ) - 60 CONTINUE - 70 CONTINUE - E( LL ) = ZERO -* -* Matrix splits since E(LL) = 0 -* - IF( LL.EQ.M-1 ) THEN -* -* Convergence of bottom singular value, return to top of loop -* - M = M - 1 - GO TO 50 - END IF - 80 CONTINUE - LL = LL + 1 -* -* E(LL) through E(M-1) are nonzero, E(LL-1) is zero -* - IF( LL.EQ.M-1 ) THEN -* -* 2 by 2 block, handle separately -* - CALL DLASV2( D( M-1 ), E( M-1 ), D( M ), SIGMN, SIGMX, SINR, - $ COSR, SINL, COSL ) - D( M-1 ) = SIGMX - E( M-1 ) = ZERO - D( M ) = SIGMN -* -* Compute singular vectors, if desired -* - IF( NCVT.GT.0 ) - $ CALL DROT( NCVT, VT( M-1, 1 ), LDVT, VT( M, 1 ), LDVT, COSR, - $ SINR ) - IF( NRU.GT.0 ) - $ CALL DROT( NRU, U( 1, M-1 ), 1, U( 1, M ), 1, COSL, SINL ) - IF( NCC.GT.0 ) - $ CALL DROT( NCC, C( M-1, 1 ), LDC, C( M, 1 ), LDC, COSL, - $ SINL ) - M = M - 2 - GO TO 50 - END IF -* -* If working on new submatrix, choose shift direction -* (from larger end diagonal element towards smaller) -* - IF( LL.GT.OLDM .OR. M.LT.OLDLL ) THEN - IF( ABS( D( LL ) ).GE.ABS( D( M ) ) ) THEN -* -* Chase bulge from top (big end) to bottom (small end) -* - IDIR = 1 - ELSE -* -* Chase bulge from bottom (big end) to top (small end) -* - IDIR = 2 - END IF - END IF -* -* Apply convergence tests -* - IF( IDIR.EQ.1 ) THEN -* -* Run convergence test in forward direction -* First apply standard test to bottom of matrix -* - IF( ABS( E( M-1 ) ).LE.ABS( TOL )*ABS( D( M ) ) .OR. - $ ( TOL.LT.ZERO .AND. ABS( E( M-1 ) ).LE.THRESH ) ) THEN - E( M-1 ) = ZERO - GO TO 50 - END IF -* - IF( TOL.GE.ZERO ) THEN -* -* If relative accuracy desired, -* apply convergence criterion forward -* - MU = ABS( D( LL ) ) - SMINL = MU - DO 90 LLL = LL, M - 1 - IF( ABS( E( LLL ) ).LE.TOL*MU ) THEN - E( LLL ) = ZERO - GO TO 50 - END IF - SMINLO = SMINL - MU = ABS( D( LLL+1 ) )*( MU / ( MU+ABS( E( LLL ) ) ) ) - SMINL = MIN( SMINL, MU ) - 90 CONTINUE - END IF -* - ELSE -* -* Run convergence test in backward direction -* First apply standard test to top of matrix -* - IF( ABS( E( LL ) ).LE.ABS( TOL )*ABS( D( LL ) ) .OR. - $ ( TOL.LT.ZERO .AND. ABS( E( LL ) ).LE.THRESH ) ) THEN - E( LL ) = ZERO - GO TO 50 - END IF -* - IF( TOL.GE.ZERO ) THEN -* -* If relative accuracy desired, -* apply convergence criterion backward -* - MU = ABS( D( M ) ) - SMINL = MU - DO 100 LLL = M - 1, LL, -1 - IF( ABS( E( LLL ) ).LE.TOL*MU ) THEN - E( LLL ) = ZERO - GO TO 50 - END IF - SMINLO = SMINL - MU = ABS( D( LLL ) )*( MU / ( MU+ABS( E( LLL ) ) ) ) - SMINL = MIN( SMINL, MU ) - 100 CONTINUE - END IF - END IF - OLDLL = LL - OLDM = M -* -* Compute shift. First, test if shifting would ruin relative -* accuracy, and if so set the shift to zero. -* - IF( TOL.GE.ZERO .AND. N*TOL*( SMINL / SMAX ).LE. - $ MAX( EPS, HNDRTH*TOL ) ) THEN -* -* Use a zero shift to avoid loss of relative accuracy -* - SHIFT = ZERO - ELSE -* -* Compute the shift from 2-by-2 block at end of matrix -* - IF( IDIR.EQ.1 ) THEN - SLL = ABS( D( LL ) ) - CALL DLAS2( D( M-1 ), E( M-1 ), D( M ), SHIFT, R ) - ELSE - SLL = ABS( D( M ) ) - CALL DLAS2( D( LL ), E( LL ), D( LL+1 ), SHIFT, R ) - END IF -* -* Test if shift negligible, and if so set to zero -* - IF( SLL.GT.ZERO ) THEN - IF( ( SHIFT / SLL )**2.LT.EPS ) - $ SHIFT = ZERO - END IF - END IF -* -* Increment iteration count -* - ITER = ITER + M - LL -* -* If SHIFT = 0, do simplified QR iteration -* - IF( SHIFT.EQ.ZERO ) THEN - IF( IDIR.EQ.1 ) THEN -* -* Chase bulge from top to bottom -* Save cosines and sines for later singular vector updates -* - CS = ONE - OLDCS = ONE - CALL DLARTG( D( LL )*CS, E( LL ), CS, SN, R ) - CALL DLARTG( OLDCS*R, D( LL+1 )*SN, OLDCS, OLDSN, D( LL ) ) - WORK( 1 ) = CS - WORK( 1+NM1 ) = SN - WORK( 1+NM12 ) = OLDCS - WORK( 1+NM13 ) = OLDSN - IROT = 1 - DO 110 I = LL + 1, M - 1 - CALL DLARTG( D( I )*CS, E( I ), CS, SN, R ) - E( I-1 ) = OLDSN*R - CALL DLARTG( OLDCS*R, D( I+1 )*SN, OLDCS, OLDSN, D( I ) ) - IROT = IROT + 1 - WORK( IROT ) = CS - WORK( IROT+NM1 ) = SN - WORK( IROT+NM12 ) = OLDCS - WORK( IROT+NM13 ) = OLDSN - 110 CONTINUE - H = D( M )*CS - D( M ) = H*OLDCS - E( M-1 ) = H*OLDSN -* -* Update singular vectors -* - IF( NCVT.GT.0 ) - $ CALL DLASR( 'L', 'V', 'F', M-LL+1, NCVT, WORK( 1 ), - $ WORK( N ), VT( LL, 1 ), LDVT ) - IF( NRU.GT.0 ) - $ CALL DLASR( 'R', 'V', 'F', NRU, M-LL+1, WORK( NM12+1 ), - $ WORK( NM13+1 ), U( 1, LL ), LDU ) - IF( NCC.GT.0 ) - $ CALL DLASR( 'L', 'V', 'F', M-LL+1, NCC, WORK( NM12+1 ), - $ WORK( NM13+1 ), C( LL, 1 ), LDC ) -* -* Test convergence -* - IF( ABS( E( M-1 ) ).LE.THRESH ) - $ E( M-1 ) = ZERO -* - ELSE -* -* Chase bulge from bottom to top -* Save cosines and sines for later singular vector updates -* - CS = ONE - OLDCS = ONE - CALL DLARTG( D( M )*CS, E( M-1 ), CS, SN, R ) - CALL DLARTG( OLDCS*R, D( M-1 )*SN, OLDCS, OLDSN, D( M ) ) - WORK( M-LL ) = CS - WORK( M-LL+NM1 ) = -SN - WORK( M-LL+NM12 ) = OLDCS - WORK( M-LL+NM13 ) = -OLDSN - IROT = M - LL - DO 120 I = M - 1, LL + 1, -1 - CALL DLARTG( D( I )*CS, E( I-1 ), CS, SN, R ) - E( I ) = OLDSN*R - CALL DLARTG( OLDCS*R, D( I-1 )*SN, OLDCS, OLDSN, D( I ) ) - IROT = IROT - 1 - WORK( IROT ) = CS - WORK( IROT+NM1 ) = -SN - WORK( IROT+NM12 ) = OLDCS - WORK( IROT+NM13 ) = -OLDSN - 120 CONTINUE - H = D( LL )*CS - D( LL ) = H*OLDCS - E( LL ) = H*OLDSN -* -* Update singular vectors -* - IF( NCVT.GT.0 ) - $ CALL DLASR( 'L', 'V', 'B', M-LL+1, NCVT, WORK( NM12+1 ), - $ WORK( NM13+1 ), VT( LL, 1 ), LDVT ) - IF( NRU.GT.0 ) - $ CALL DLASR( 'R', 'V', 'B', NRU, M-LL+1, WORK( 1 ), - $ WORK( N ), U( 1, LL ), LDU ) - IF( NCC.GT.0 ) - $ CALL DLASR( 'L', 'V', 'B', M-LL+1, NCC, WORK( 1 ), - $ WORK( N ), C( LL, 1 ), LDC ) -* -* Test convergence -* - IF( ABS( E( LL ) ).LE.THRESH ) - $ E( LL ) = ZERO - END IF - ELSE -* -* Use nonzero shift -* - IF( IDIR.EQ.1 ) THEN -* -* Chase bulge from top to bottom -* Save cosines and sines for later singular vector updates -* - F = ( ABS( D( LL ) )-SHIFT )* - $ ( SIGN( ONE, D( LL ) )+SHIFT / D( LL ) ) - G = E( LL ) - CALL DLARTG( F, G, COSR, SINR, R ) - F = COSR*D( LL ) + SINR*E( LL ) - E( LL ) = COSR*E( LL ) - SINR*D( LL ) - G = SINR*D( LL+1 ) - D( LL+1 ) = COSR*D( LL+1 ) - CALL DLARTG( F, G, COSL, SINL, R ) - D( LL ) = R - F = COSL*E( LL ) + SINL*D( LL+1 ) - D( LL+1 ) = COSL*D( LL+1 ) - SINL*E( LL ) - G = SINL*E( LL+1 ) - E( LL+1 ) = COSL*E( LL+1 ) - WORK( 1 ) = COSR - WORK( 1+NM1 ) = SINR - WORK( 1+NM12 ) = COSL - WORK( 1+NM13 ) = SINL - IROT = 1 - DO 130 I = LL + 1, M - 2 - CALL DLARTG( F, G, COSR, SINR, R ) - E( I-1 ) = R - F = COSR*D( I ) + SINR*E( I ) - E( I ) = COSR*E( I ) - SINR*D( I ) - G = SINR*D( I+1 ) - D( I+1 ) = COSR*D( I+1 ) - CALL DLARTG( F, G, COSL, SINL, R ) - D( I ) = R - F = COSL*E( I ) + SINL*D( I+1 ) - D( I+1 ) = COSL*D( I+1 ) - SINL*E( I ) - G = SINL*E( I+1 ) - E( I+1 ) = COSL*E( I+1 ) - IROT = IROT + 1 - WORK( IROT ) = COSR - WORK( IROT+NM1 ) = SINR - WORK( IROT+NM12 ) = COSL - WORK( IROT+NM13 ) = SINL - 130 CONTINUE - CALL DLARTG( F, G, COSR, SINR, R ) - E( M-2 ) = R - F = COSR*D( M-1 ) + SINR*E( M-1 ) - E( M-1 ) = COSR*E( M-1 ) - SINR*D( M-1 ) - G = SINR*D( M ) - D( M ) = COSR*D( M ) - CALL DLARTG( F, G, COSL, SINL, R ) - D( M-1 ) = R - F = COSL*E( M-1 ) + SINL*D( M ) - D( M ) = COSL*D( M ) - SINL*E( M-1 ) - IROT = IROT + 1 - WORK( IROT ) = COSR - WORK( IROT+NM1 ) = SINR - WORK( IROT+NM12 ) = COSL - WORK( IROT+NM13 ) = SINL - E( M-1 ) = F -* -* Update singular vectors -* - IF( NCVT.GT.0 ) - $ CALL DLASR( 'L', 'V', 'F', M-LL+1, NCVT, WORK( 1 ), - $ WORK( N ), VT( LL, 1 ), LDVT ) - IF( NRU.GT.0 ) - $ CALL DLASR( 'R', 'V', 'F', NRU, M-LL+1, WORK( NM12+1 ), - $ WORK( NM13+1 ), U( 1, LL ), LDU ) - IF( NCC.GT.0 ) - $ CALL DLASR( 'L', 'V', 'F', M-LL+1, NCC, WORK( NM12+1 ), - $ WORK( NM13+1 ), C( LL, 1 ), LDC ) -* -* Test convergence -* - IF( ABS( E( M-1 ) ).LE.THRESH ) - $ E( M-1 ) = ZERO -* - ELSE -* -* Chase bulge from bottom to top -* Save cosines and sines for later singular vector updates -* - F = ( ABS( D( M ) )-SHIFT )*( SIGN( ONE, D( M ) )+SHIFT / - $ D( M ) ) - G = E( M-1 ) - CALL DLARTG( F, G, COSR, SINR, R ) - F = COSR*D( M ) + SINR*E( M-1 ) - E( M-1 ) = COSR*E( M-1 ) - SINR*D( M ) - G = SINR*D( M-1 ) - D( M-1 ) = COSR*D( M-1 ) - CALL DLARTG( F, G, COSL, SINL, R ) - D( M ) = R - F = COSL*E( M-1 ) + SINL*D( M-1 ) - D( M-1 ) = COSL*D( M-1 ) - SINL*E( M-1 ) - G = SINL*E( M-2 ) - E( M-2 ) = COSL*E( M-2 ) - WORK( M-LL ) = COSR - WORK( M-LL+NM1 ) = -SINR - WORK( M-LL+NM12 ) = COSL - WORK( M-LL+NM13 ) = -SINL - IROT = M - LL - DO 140 I = M - 1, LL + 2, -1 - CALL DLARTG( F, G, COSR, SINR, R ) - E( I ) = R - F = COSR*D( I ) + SINR*E( I-1 ) - E( I-1 ) = COSR*E( I-1 ) - SINR*D( I ) - G = SINR*D( I-1 ) - D( I-1 ) = COSR*D( I-1 ) - CALL DLARTG( F, G, COSL, SINL, R ) - D( I ) = R - F = COSL*E( I-1 ) + SINL*D( I-1 ) - D( I-1 ) = COSL*D( I-1 ) - SINL*E( I-1 ) - G = SINL*E( I-2 ) - E( I-2 ) = COSL*E( I-2 ) - IROT = IROT - 1 - WORK( IROT ) = COSR - WORK( IROT+NM1 ) = -SINR - WORK( IROT+NM12 ) = COSL - WORK( IROT+NM13 ) = -SINL - 140 CONTINUE - CALL DLARTG( F, G, COSR, SINR, R ) - E( LL+1 ) = R - F = COSR*D( LL+1 ) + SINR*E( LL ) - E( LL ) = COSR*E( LL ) - SINR*D( LL+1 ) - G = SINR*D( LL ) - D( LL ) = COSR*D( LL ) - CALL DLARTG( F, G, COSL, SINL, R ) - D( LL+1 ) = R - F = COSL*E( LL ) + SINL*D( LL ) - D( LL ) = COSL*D( LL ) - SINL*E( LL ) - IROT = IROT - 1 - WORK( IROT ) = COSR - WORK( IROT+NM1 ) = -SINR - WORK( IROT+NM12 ) = COSL - WORK( IROT+NM13 ) = -SINL - E( LL ) = F -* -* Test convergence -* - IF( ABS( E( LL ) ).LE.THRESH ) - $ E( LL ) = ZERO -* -* Update singular vectors if desired -* - IF( NCVT.GT.0 ) - $ CALL DLASR( 'L', 'V', 'B', M-LL+1, NCVT, WORK( NM12+1 ), - $ WORK( NM13+1 ), VT( LL, 1 ), LDVT ) - IF( NRU.GT.0 ) - $ CALL DLASR( 'R', 'V', 'B', NRU, M-LL+1, WORK( 1 ), - $ WORK( N ), U( 1, LL ), LDU ) - IF( NCC.GT.0 ) - $ CALL DLASR( 'L', 'V', 'B', M-LL+1, NCC, WORK( 1 ), - $ WORK( N ), C( LL, 1 ), LDC ) - END IF - END IF -* -* QR iteration finished, go back and check convergence -* - GO TO 50 -* -* All singular values converged, so make them positive -* - 150 CONTINUE - DO 160 I = 1, N - IF( D( I ).LT.ZERO ) THEN - D( I ) = -D( I ) -* -* Change sign of singular vectors, if desired -* - IF( NCVT.GT.0 ) - $ CALL DSCAL( NCVT, NEGONE, VT( I, 1 ), LDVT ) - END IF - 160 CONTINUE -* -* Sort the singular values into decreasing order (insertion sort on -* singular values, but only one transposition per singular vector) -* - DO 180 I = 1, N - 1 -* -* Scan for smallest D(I) -* - ISUB = 1 - SMIN = D( 1 ) - DO 170 J = 2, N + 1 - I - IF( D( J ).LE.SMIN ) THEN - ISUB = J - SMIN = D( J ) - END IF - 170 CONTINUE - IF( ISUB.NE.N+1-I ) THEN -* -* Swap singular values and vectors -* - D( ISUB ) = D( N+1-I ) - D( N+1-I ) = SMIN - IF( NCVT.GT.0 ) - $ CALL DSWAP( NCVT, VT( ISUB, 1 ), LDVT, VT( N+1-I, 1 ), - $ LDVT ) - IF( NRU.GT.0 ) - $ CALL DSWAP( NRU, U( 1, ISUB ), 1, U( 1, N+1-I ), 1 ) - IF( NCC.GT.0 ) - $ CALL DSWAP( NCC, C( ISUB, 1 ), LDC, C( N+1-I, 1 ), LDC ) - END IF - 180 CONTINUE - GO TO 210 -* -* Maximum number of iterations exceeded, failure to converge -* - 190 CONTINUE - INFO = 0 - DO 200 I = 1, N - 1 - IF( E( I ).NE.ZERO ) - $ INFO = INFO + 1 - 200 CONTINUE - 210 CONTINUE - RETURN -* -* End of DBDSQR -* - END diff --git a/Cantera/ext/lapack/dgbsv.f b/Cantera/ext/lapack/dgbsv.f deleted file mode 100755 index e2d8b5ebd..000000000 --- a/Cantera/ext/lapack/dgbsv.f +++ /dev/null @@ -1,144 +0,0 @@ - SUBROUTINE DGBSV( N, KL, KU, NRHS, AB, LDAB, IPIV, B, LDB, INFO ) -* -* -- LAPACK driver routine (version 3.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* March 31, 1993 -* -* .. Scalar Arguments .. - INTEGER INFO, KL, KU, LDAB, LDB, N, NRHS -* .. -* .. Array Arguments .. - INTEGER IPIV( * ) - DOUBLE PRECISION AB( LDAB, * ), B( LDB, * ) -* .. -* -* Purpose -* ======= -* -* DGBSV computes the solution to a real system of linear equations -* A * X = B, where A is a band matrix of order N with KL subdiagonals -* and KU superdiagonals, and X and B are N-by-NRHS matrices. -* -* The LU decomposition with partial pivoting and row interchanges is -* used to factor A as A = L * U, where L is a product of permutation -* and unit lower triangular matrices with KL subdiagonals, and U is -* upper triangular with KL+KU superdiagonals. The factored form of A -* is then used to solve the system of equations A * X = B. -* -* Arguments -* ========= -* -* N (input) INTEGER -* The number of linear equations, i.e., the order of the -* matrix A. N >= 0. -* -* KL (input) INTEGER -* The number of subdiagonals within the band of A. KL >= 0. -* -* KU (input) INTEGER -* The number of superdiagonals within the band of A. KU >= 0. -* -* NRHS (input) INTEGER -* The number of right hand sides, i.e., the number of columns -* of the matrix B. NRHS >= 0. -* -* AB (input/output) DOUBLE PRECISION array, dimension (LDAB,N) -* On entry, the matrix A in band storage, in rows KL+1 to -* 2*KL+KU+1; rows 1 to KL of the array need not be set. -* The j-th column of A is stored in the j-th column of the -* array AB as follows: -* AB(KL+KU+1+i-j,j) = A(i,j) for max(1,j-KU)<=i<=min(N,j+KL) -* On exit, details of the factorization: U is stored as an -* upper triangular band matrix with KL+KU superdiagonals in -* rows 1 to KL+KU+1, and the multipliers used during the -* factorization are stored in rows KL+KU+2 to 2*KL+KU+1. -* See below for further details. -* -* LDAB (input) INTEGER -* The leading dimension of the array AB. LDAB >= 2*KL+KU+1. -* -* IPIV (output) INTEGER array, dimension (N) -* The pivot indices that define the permutation matrix P; -* row i of the matrix was interchanged with row IPIV(i). -* -* B (input/output) DOUBLE PRECISION array, dimension (LDB,NRHS) -* On entry, the N-by-NRHS right hand side matrix B. -* On exit, if INFO = 0, the N-by-NRHS solution matrix X. -* -* LDB (input) INTEGER -* The leading dimension of the array B. LDB >= max(1,N). -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* > 0: if INFO = i, U(i,i) is exactly zero. The factorization -* has been completed, but the factor U is exactly -* singular, and the solution has not been computed. -* -* Further Details -* =============== -* -* The band storage scheme is illustrated by the following example, when -* M = N = 6, KL = 2, KU = 1: -* -* On entry: On exit: -* -* * * * + + + * * * u14 u25 u36 -* * * + + + + * * u13 u24 u35 u46 -* * a12 a23 a34 a45 a56 * u12 u23 u34 u45 u56 -* a11 a22 a33 a44 a55 a66 u11 u22 u33 u44 u55 u66 -* a21 a32 a43 a54 a65 * m21 m32 m43 m54 m65 * -* a31 a42 a53 a64 * * m31 m42 m53 m64 * * -* -* Array elements marked * are not used by the routine; elements marked -* + need not be set on entry, but are required by the routine to store -* elements of U because of fill-in resulting from the row interchanges. -* -* ===================================================================== -* -* .. External Subroutines .. - EXTERNAL DGBTRF, DGBTRS, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - - INFO = 0 - IF( N.LT.0 ) THEN - INFO = -1 - ELSE IF( KL.LT.0 ) THEN - INFO = -2 - ELSE IF( KU.LT.0 ) THEN - INFO = -3 - ELSE IF( NRHS.LT.0 ) THEN - INFO = -4 - ELSE IF( LDAB.LT.2*KL+KU+1 ) THEN - INFO = -6 - ELSE IF( LDB.LT.MAX( N, 1 ) ) THEN - INFO = -9 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DGBSV ', -INFO ) - RETURN - END IF -* -* Compute the LU factorization of the band matrix A. -* - CALL DGBTRF( N, N, KL, KU, AB, LDAB, IPIV, INFO ) - IF( INFO.EQ.0 ) THEN -* -* Solve the system A*X = B, overwriting B with X. -* - CALL DGBTRS( 'No transpose', N, KL, KU, NRHS, AB, LDAB, IPIV, - $ B, LDB, INFO ) - END IF - RETURN -* -* End of DGBSV -* - END diff --git a/Cantera/ext/lapack/dgbtf2.f b/Cantera/ext/lapack/dgbtf2.f deleted file mode 100755 index 5e25629fc..000000000 --- a/Cantera/ext/lapack/dgbtf2.f +++ /dev/null @@ -1,203 +0,0 @@ - SUBROUTINE DGBTF2( M, N, KL, KU, AB, LDAB, IPIV, INFO ) -* -* -- LAPACK routine (version 3.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - INTEGER INFO, KL, KU, LDAB, M, N -* .. -* .. Array Arguments .. - INTEGER IPIV( * ) - DOUBLE PRECISION AB( LDAB, * ) -* .. -* -* Purpose -* ======= -* -* DGBTF2 computes an LU factorization of a real m-by-n band matrix A -* using partial pivoting with row interchanges. -* -* This is the unblocked version of the algorithm, calling Level 2 BLAS. -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows of the matrix A. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix A. N >= 0. -* -* KL (input) INTEGER -* The number of subdiagonals within the band of A. KL >= 0. -* -* KU (input) INTEGER -* The number of superdiagonals within the band of A. KU >= 0. -* -* AB (input/output) DOUBLE PRECISION array, dimension (LDAB,N) -* On entry, the matrix A in band storage, in rows KL+1 to -* 2*KL+KU+1; rows 1 to KL of the array need not be set. -* The j-th column of A is stored in the j-th column of the -* array AB as follows: -* AB(kl+ku+1+i-j,j) = A(i,j) for max(1,j-ku)<=i<=min(m,j+kl) -* -* On exit, details of the factorization: U is stored as an -* upper triangular band matrix with KL+KU superdiagonals in -* rows 1 to KL+KU+1, and the multipliers used during the -* factorization are stored in rows KL+KU+2 to 2*KL+KU+1. -* See below for further details. -* -* LDAB (input) INTEGER -* The leading dimension of the array AB. LDAB >= 2*KL+KU+1. -* -* IPIV (output) INTEGER array, dimension (min(M,N)) -* The pivot indices; for 1 <= i <= min(M,N), row i of the -* matrix was interchanged with row IPIV(i). -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* > 0: if INFO = +i, U(i,i) is exactly zero. The factorization -* has been completed, but the factor U is exactly -* singular, and division by zero will occur if it is used -* to solve a system of equations. -* -* Further Details -* =============== -* -* The band storage scheme is illustrated by the following example, when -* M = N = 6, KL = 2, KU = 1: -* -* On entry: On exit: -* -* * * * + + + * * * u14 u25 u36 -* * * + + + + * * u13 u24 u35 u46 -* * a12 a23 a34 a45 a56 * u12 u23 u34 u45 u56 -* a11 a22 a33 a44 a55 a66 u11 u22 u33 u44 u55 u66 -* a21 a32 a43 a54 a65 * m21 m32 m43 m54 m65 * -* a31 a42 a53 a64 * * m31 m42 m53 m64 * * -* -* Array elements marked * are not used by the routine; elements marked -* + need not be set on entry, but are required by the routine to store -* elements of U, because of fill-in resulting from the row -* interchanges. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE, ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Local Scalars .. - INTEGER I, J, JP, JU, KM, KV -* .. -* .. External Functions .. - INTEGER IDAMAX - EXTERNAL IDAMAX -* .. -* .. External Subroutines .. - EXTERNAL DGER, DSCAL, DSWAP, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* KV is the number of superdiagonals in the factor U, allowing for -* fill-in. -* - KV = KU + KL -* -* Test the input parameters. -* - INFO = 0 - IF( M.LT.0 ) THEN - INFO = -1 - ELSE IF( N.LT.0 ) THEN - INFO = -2 - ELSE IF( KL.LT.0 ) THEN - INFO = -3 - ELSE IF( KU.LT.0 ) THEN - INFO = -4 - ELSE IF( LDAB.LT.KL+KV+1 ) THEN - INFO = -6 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DGBTF2', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( M.EQ.0 .OR. N.EQ.0 ) - $ RETURN -* -* Gaussian elimination with partial pivoting -* -* Set fill-in elements in columns KU+2 to KV to zero. -* - DO 20 J = KU + 2, MIN( KV, N ) - DO 10 I = KV - J + 2, KL - AB( I, J ) = ZERO - 10 CONTINUE - 20 CONTINUE -* -* JU is the index of the last column affected by the current stage -* of the factorization. -* - JU = 1 -* - DO 40 J = 1, MIN( M, N ) -* -* Set fill-in elements in column J+KV to zero. -* - IF( J+KV.LE.N ) THEN - DO 30 I = 1, KL - AB( I, J+KV ) = ZERO - 30 CONTINUE - END IF -* -* Find pivot and test for singularity. KM is the number of -* subdiagonal elements in the current column. -* - KM = MIN( KL, M-J ) - JP = IDAMAX( KM+1, AB( KV+1, J ), 1 ) - IPIV( J ) = JP + J - 1 - IF( AB( KV+JP, J ).NE.ZERO ) THEN - JU = MAX( JU, MIN( J+KU+JP-1, N ) ) -* -* Apply interchange to columns J to JU. -* - IF( JP.NE.1 ) - $ CALL DSWAP( JU-J+1, AB( KV+JP, J ), LDAB-1, - $ AB( KV+1, J ), LDAB-1 ) -* - IF( KM.GT.0 ) THEN -* -* Compute multipliers. -* - CALL DSCAL( KM, ONE / AB( KV+1, J ), AB( KV+2, J ), 1 ) -* -* Update trailing submatrix within the band. -* - IF( JU.GT.J ) - $ CALL DGER( KM, JU-J, -ONE, AB( KV+2, J ), 1, - $ AB( KV, J+1 ), LDAB-1, AB( KV+1, J+1 ), - $ LDAB-1 ) - END IF - ELSE -* -* If pivot is zero, set INFO to the index of the pivot -* unless a zero pivot has already been found. -* - IF( INFO.EQ.0 ) - $ INFO = J - END IF - 40 CONTINUE - RETURN -* -* End of DGBTF2 -* - END diff --git a/Cantera/ext/lapack/dgbtrf.f b/Cantera/ext/lapack/dgbtrf.f deleted file mode 100755 index c6e3d0a9c..000000000 --- a/Cantera/ext/lapack/dgbtrf.f +++ /dev/null @@ -1,442 +0,0 @@ - SUBROUTINE DGBTRF( M, N, KL, KU, AB, LDAB, IPIV, INFO ) -* -* -- LAPACK routine (version 3.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - INTEGER INFO, KL, KU, LDAB, M, N -* .. -* .. Array Arguments .. - INTEGER IPIV( * ) - DOUBLE PRECISION AB( LDAB, * ) -* .. -* -* Purpose -* ======= -* -* DGBTRF computes an LU factorization of a real m-by-n band matrix A -* using partial pivoting with row interchanges. -* -* This is the blocked version of the algorithm, calling Level 3 BLAS. -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows of the matrix A. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix A. N >= 0. -* -* KL (input) INTEGER -* The number of subdiagonals within the band of A. KL >= 0. -* -* KU (input) INTEGER -* The number of superdiagonals within the band of A. KU >= 0. -* -* AB (input/output) DOUBLE PRECISION array, dimension (LDAB,N) -* On entry, the matrix A in band storage, in rows KL+1 to -* 2*KL+KU+1; rows 1 to KL of the array need not be set. -* The j-th column of A is stored in the j-th column of the -* array AB as follows: -* AB(kl+ku+1+i-j,j) = A(i,j) for max(1,j-ku)<=i<=min(m,j+kl) -* -* On exit, details of the factorization: U is stored as an -* upper triangular band matrix with KL+KU superdiagonals in -* rows 1 to KL+KU+1, and the multipliers used during the -* factorization are stored in rows KL+KU+2 to 2*KL+KU+1. -* See below for further details. -* -* LDAB (input) INTEGER -* The leading dimension of the array AB. LDAB >= 2*KL+KU+1. -* -* IPIV (output) INTEGER array, dimension (min(M,N)) -* The pivot indices; for 1 <= i <= min(M,N), row i of the -* matrix was interchanged with row IPIV(i). -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* > 0: if INFO = +i, U(i,i) is exactly zero. The factorization -* has been completed, but the factor U is exactly -* singular, and division by zero will occur if it is used -* to solve a system of equations. -* -* Further Details -* =============== -* -* The band storage scheme is illustrated by the following example, when -* M = N = 6, KL = 2, KU = 1: -* -* On entry: On exit: -* -* * * * + + + * * * u14 u25 u36 -* * * + + + + * * u13 u24 u35 u46 -* * a12 a23 a34 a45 a56 * u12 u23 u34 u45 u56 -* a11 a22 a33 a44 a55 a66 u11 u22 u33 u44 u55 u66 -* a21 a32 a43 a54 a65 * m21 m32 m43 m54 m65 * -* a31 a42 a53 a64 * * m31 m42 m53 m64 * * -* -* Array elements marked * are not used by the routine; elements marked -* + need not be set on entry, but are required by the routine to store -* elements of U because of fill-in resulting from the row interchanges. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE, ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) - INTEGER NBMAX, LDWORK - PARAMETER ( NBMAX = 64, LDWORK = NBMAX+1 ) -* .. -* .. Local Scalars .. - INTEGER I, I2, I3, II, IP, J, J2, J3, JB, JJ, JM, JP, - $ JU, K2, KM, KV, NB, NW - DOUBLE PRECISION TEMP -* .. -* .. Local Arrays .. - DOUBLE PRECISION WORK13( LDWORK, NBMAX ), - $ WORK31( LDWORK, NBMAX ) -* .. -* .. External Functions .. - INTEGER IDAMAX, ILAENV - EXTERNAL IDAMAX, ILAENV -* .. -* .. External Subroutines .. - EXTERNAL DCOPY, DGBTF2, DGEMM, DGER, DLASWP, DSCAL, - $ DSWAP, DTRSM, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* KV is the number of superdiagonals in the factor U, allowing for -* fill-in -* - KV = KU + KL -* -* Test the input parameters. -* - INFO = 0 - IF( M.LT.0 ) THEN - INFO = -1 - ELSE IF( N.LT.0 ) THEN - INFO = -2 - ELSE IF( KL.LT.0 ) THEN - INFO = -3 - ELSE IF( KU.LT.0 ) THEN - INFO = -4 - ELSE IF( LDAB.LT.KL+KV+1 ) THEN - INFO = -6 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DGBTRF', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( M.EQ.0 .OR. N.EQ.0 ) - $ RETURN -* -* Determine the block size for this environment -* - NB = ILAENV( 1, 'DGBTRF', ' ', M, N, KL, KU ) -* -* The block size must not exceed the limit set by the size of the -* local arrays WORK13 and WORK31. -* - NB = MIN( NB, NBMAX ) -* - IF( NB.LE.1 .OR. NB.GT.KL ) THEN -* -* Use unblocked code -* - CALL DGBTF2( M, N, KL, KU, AB, LDAB, IPIV, INFO ) - ELSE -* -* Use blocked code -* -* Zero the superdiagonal elements of the work array WORK13 -* - DO 20 J = 1, NB - DO 10 I = 1, J - 1 - WORK13( I, J ) = ZERO - 10 CONTINUE - 20 CONTINUE -* -* Zero the subdiagonal elements of the work array WORK31 -* - DO 40 J = 1, NB - DO 30 I = J + 1, NB - WORK31( I, J ) = ZERO - 30 CONTINUE - 40 CONTINUE -* -* Gaussian elimination with partial pivoting -* -* Set fill-in elements in columns KU+2 to KV to zero -* - DO 60 J = KU + 2, MIN( KV, N ) - DO 50 I = KV - J + 2, KL - AB( I, J ) = ZERO - 50 CONTINUE - 60 CONTINUE -* -* JU is the index of the last column affected by the current -* stage of the factorization -* - JU = 1 -* - DO 180 J = 1, MIN( M, N ), NB - JB = MIN( NB, MIN( M, N )-J+1 ) -* -* The active part of the matrix is partitioned -* -* A11 A12 A13 -* A21 A22 A23 -* A31 A32 A33 -* -* Here A11, A21 and A31 denote the current block of JB columns -* which is about to be factorized. The number of rows in the -* partitioning are JB, I2, I3 respectively, and the numbers -* of columns are JB, J2, J3. The superdiagonal elements of A13 -* and the subdiagonal elements of A31 lie outside the band. -* - I2 = MIN( KL-JB, M-J-JB+1 ) - I3 = MIN( JB, M-J-KL+1 ) -* -* J2 and J3 are computed after JU has been updated. -* -* Factorize the current block of JB columns -* - DO 80 JJ = J, J + JB - 1 -* -* Set fill-in elements in column JJ+KV to zero -* - IF( JJ+KV.LE.N ) THEN - DO 70 I = 1, KL - AB( I, JJ+KV ) = ZERO - 70 CONTINUE - END IF -* -* Find pivot and test for singularity. KM is the number of -* subdiagonal elements in the current column. -* - KM = MIN( KL, M-JJ ) - JP = IDAMAX( KM+1, AB( KV+1, JJ ), 1 ) - IPIV( JJ ) = JP + JJ - J - IF( AB( KV+JP, JJ ).NE.ZERO ) THEN - JU = MAX( JU, MIN( JJ+KU+JP-1, N ) ) - IF( JP.NE.1 ) THEN -* -* Apply interchange to columns J to J+JB-1 -* - IF( JP+JJ-1.LT.J+KL ) THEN -* - CALL DSWAP( JB, AB( KV+1+JJ-J, J ), LDAB-1, - $ AB( KV+JP+JJ-J, J ), LDAB-1 ) - ELSE -* -* The interchange affects columns J to JJ-1 of A31 -* which are stored in the work array WORK31 -* - CALL DSWAP( JJ-J, AB( KV+1+JJ-J, J ), LDAB-1, - $ WORK31( JP+JJ-J-KL, 1 ), LDWORK ) - CALL DSWAP( J+JB-JJ, AB( KV+1, JJ ), LDAB-1, - $ AB( KV+JP, JJ ), LDAB-1 ) - END IF - END IF -* -* Compute multipliers -* - CALL DSCAL( KM, ONE / AB( KV+1, JJ ), AB( KV+2, JJ ), - $ 1 ) -* -* Update trailing submatrix within the band and within -* the current block. JM is the index of the last column -* which needs to be updated. -* - JM = MIN( JU, J+JB-1 ) - IF( JM.GT.JJ ) - $ CALL DGER( KM, JM-JJ, -ONE, AB( KV+2, JJ ), 1, - $ AB( KV, JJ+1 ), LDAB-1, - $ AB( KV+1, JJ+1 ), LDAB-1 ) - ELSE -* -* If pivot is zero, set INFO to the index of the pivot -* unless a zero pivot has already been found. -* - IF( INFO.EQ.0 ) - $ INFO = JJ - END IF -* -* Copy current column of A31 into the work array WORK31 -* - NW = MIN( JJ-J+1, I3 ) - IF( NW.GT.0 ) - $ CALL DCOPY( NW, AB( KV+KL+1-JJ+J, JJ ), 1, - $ WORK31( 1, JJ-J+1 ), 1 ) - 80 CONTINUE - IF( J+JB.LE.N ) THEN -* -* Apply the row interchanges to the other blocks. -* - J2 = MIN( JU-J+1, KV ) - JB - J3 = MAX( 0, JU-J-KV+1 ) -* -* Use DLASWP to apply the row interchanges to A12, A22, and -* A32. -* - CALL DLASWP( J2, AB( KV+1-JB, J+JB ), LDAB-1, 1, JB, - $ IPIV( J ), 1 ) -* -* Adjust the pivot indices. -* - DO 90 I = J, J + JB - 1 - IPIV( I ) = IPIV( I ) + J - 1 - 90 CONTINUE -* -* Apply the row interchanges to A13, A23, and A33 -* columnwise. -* - K2 = J - 1 + JB + J2 - DO 110 I = 1, J3 - JJ = K2 + I - DO 100 II = J + I - 1, J + JB - 1 - IP = IPIV( II ) - IF( IP.NE.II ) THEN - TEMP = AB( KV+1+II-JJ, JJ ) - AB( KV+1+II-JJ, JJ ) = AB( KV+1+IP-JJ, JJ ) - AB( KV+1+IP-JJ, JJ ) = TEMP - END IF - 100 CONTINUE - 110 CONTINUE -* -* Update the relevant part of the trailing submatrix -* - IF( J2.GT.0 ) THEN -* -* Update A12 -* - CALL DTRSM( 'Left', 'Lower', 'No transpose', 'Unit', - $ JB, J2, ONE, AB( KV+1, J ), LDAB-1, - $ AB( KV+1-JB, J+JB ), LDAB-1 ) -* - IF( I2.GT.0 ) THEN -* -* Update A22 -* - CALL DGEMM( 'No transpose', 'No transpose', I2, J2, - $ JB, -ONE, AB( KV+1+JB, J ), LDAB-1, - $ AB( KV+1-JB, J+JB ), LDAB-1, ONE, - $ AB( KV+1, J+JB ), LDAB-1 ) - END IF -* - IF( I3.GT.0 ) THEN -* -* Update A32 -* - CALL DGEMM( 'No transpose', 'No transpose', I3, J2, - $ JB, -ONE, WORK31, LDWORK, - $ AB( KV+1-JB, J+JB ), LDAB-1, ONE, - $ AB( KV+KL+1-JB, J+JB ), LDAB-1 ) - END IF - END IF -* - IF( J3.GT.0 ) THEN -* -* Copy the lower triangle of A13 into the work array -* WORK13 -* - DO 130 JJ = 1, J3 - DO 120 II = JJ, JB - WORK13( II, JJ ) = AB( II-JJ+1, JJ+J+KV-1 ) - 120 CONTINUE - 130 CONTINUE -* -* Update A13 in the work array -* - CALL DTRSM( 'Left', 'Lower', 'No transpose', 'Unit', - $ JB, J3, ONE, AB( KV+1, J ), LDAB-1, - $ WORK13, LDWORK ) -* - IF( I2.GT.0 ) THEN -* -* Update A23 -* - CALL DGEMM( 'No transpose', 'No transpose', I2, J3, - $ JB, -ONE, AB( KV+1+JB, J ), LDAB-1, - $ WORK13, LDWORK, ONE, AB( 1+JB, J+KV ), - $ LDAB-1 ) - END IF -* - IF( I3.GT.0 ) THEN -* -* Update A33 -* - CALL DGEMM( 'No transpose', 'No transpose', I3, J3, - $ JB, -ONE, WORK31, LDWORK, WORK13, - $ LDWORK, ONE, AB( 1+KL, J+KV ), LDAB-1 ) - END IF -* -* Copy the lower triangle of A13 back into place -* - DO 150 JJ = 1, J3 - DO 140 II = JJ, JB - AB( II-JJ+1, JJ+J+KV-1 ) = WORK13( II, JJ ) - 140 CONTINUE - 150 CONTINUE - END IF - ELSE -* -* Adjust the pivot indices. -* - DO 160 I = J, J + JB - 1 - IPIV( I ) = IPIV( I ) + J - 1 - 160 CONTINUE - END IF -* -* Partially undo the interchanges in the current block to -* restore the upper triangular form of A31 and copy the upper -* triangle of A31 back into place -* - DO 170 JJ = J + JB - 1, J, -1 - JP = IPIV( JJ ) - JJ + 1 - IF( JP.NE.1 ) THEN -* -* Apply interchange to columns J to JJ-1 -* - IF( JP+JJ-1.LT.J+KL ) THEN -* -* The interchange does not affect A31 -* - CALL DSWAP( JJ-J, AB( KV+1+JJ-J, J ), LDAB-1, - $ AB( KV+JP+JJ-J, J ), LDAB-1 ) - ELSE -* -* The interchange does affect A31 -* - CALL DSWAP( JJ-J, AB( KV+1+JJ-J, J ), LDAB-1, - $ WORK31( JP+JJ-J-KL, 1 ), LDWORK ) - END IF - END IF -* -* Copy the current column of A31 back into place -* - NW = MIN( I3, JJ-J+1 ) - IF( NW.GT.0 ) - $ CALL DCOPY( NW, WORK31( 1, JJ-J+1 ), 1, - $ AB( KV+KL+1-JJ+J, JJ ), 1 ) - 170 CONTINUE - 180 CONTINUE - END IF -* - RETURN -* -* End of DGBTRF -* - END diff --git a/Cantera/ext/lapack/dgbtrs.f b/Cantera/ext/lapack/dgbtrs.f deleted file mode 100755 index 26fdf91eb..000000000 --- a/Cantera/ext/lapack/dgbtrs.f +++ /dev/null @@ -1,187 +0,0 @@ - SUBROUTINE DGBTRS( TRANS, N, KL, KU, NRHS, AB, LDAB, IPIV, B, LDB, - $ INFO ) -* -* -- LAPACK routine (version 3.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* March 31, 1993 -* -* .. Scalar Arguments .. - CHARACTER TRANS - INTEGER INFO, KL, KU, LDAB, LDB, N, NRHS -* .. -* .. Array Arguments .. - INTEGER IPIV( * ) - DOUBLE PRECISION AB( LDAB, * ), B( LDB, * ) -* .. -* -* Purpose -* ======= -* -* DGBTRS solves a system of linear equations -* A * X = B or A' * X = B -* with a general band matrix A using the LU factorization computed -* by DGBTRF. -* -* Arguments -* ========= -* -* TRANS (input) CHARACTER*1 -* Specifies the form of the system of equations. -* = 'N': A * X = B (No transpose) -* = 'T': A'* X = B (Transpose) -* = 'C': A'* X = B (Conjugate transpose = Transpose) -* -* N (input) INTEGER -* The order of the matrix A. N >= 0. -* -* KL (input) INTEGER -* The number of subdiagonals within the band of A. KL >= 0. -* -* KU (input) INTEGER -* The number of superdiagonals within the band of A. KU >= 0. -* -* NRHS (input) INTEGER -* The number of right hand sides, i.e., the number of columns -* of the matrix B. NRHS >= 0. -* -* AB (input) DOUBLE PRECISION array, dimension (LDAB,N) -* Details of the LU factorization of the band matrix A, as -* computed by DGBTRF. U is stored as an upper triangular band -* matrix with KL+KU superdiagonals in rows 1 to KL+KU+1, and -* the multipliers used during the factorization are stored in -* rows KL+KU+2 to 2*KL+KU+1. -* -* LDAB (input) INTEGER -* The leading dimension of the array AB. LDAB >= 2*KL+KU+1. -* -* IPIV (input) INTEGER array, dimension (N) -* The pivot indices; for 1 <= i <= N, row i of the matrix was -* interchanged with row IPIV(i). -* -* B (input/output) DOUBLE PRECISION array, dimension (LDB,NRHS) -* On entry, the right hand side matrix B. -* On exit, the solution matrix X. -* -* LDB (input) INTEGER -* The leading dimension of the array B. LDB >= max(1,N). -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE - PARAMETER ( ONE = 1.0D+0 ) -* .. -* .. Local Scalars .. - LOGICAL LNOTI, NOTRAN - INTEGER I, J, KD, L, LM -* .. -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. -* .. External Subroutines .. - EXTERNAL DGEMV, DGER, DSWAP, DTBSV, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - NOTRAN = LSAME( TRANS, 'N' ) - IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'T' ) .AND. .NOT. - $ LSAME( TRANS, 'C' ) ) THEN - INFO = -1 - ELSE IF( N.LT.0 ) THEN - INFO = -2 - ELSE IF( KL.LT.0 ) THEN - INFO = -3 - ELSE IF( KU.LT.0 ) THEN - INFO = -4 - ELSE IF( NRHS.LT.0 ) THEN - INFO = -5 - ELSE IF( LDAB.LT.( 2*KL+KU+1 ) ) THEN - INFO = -7 - ELSE IF( LDB.LT.MAX( 1, N ) ) THEN - INFO = -10 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DGBTRS', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( N.EQ.0 .OR. NRHS.EQ.0 ) - $ RETURN -* - KD = KU + KL + 1 - LNOTI = KL.GT.0 -* - IF( NOTRAN ) THEN -* -* Solve A*X = B. -* -* Solve L*X = B, overwriting B with X. -* -* L is represented as a product of permutations and unit lower -* triangular matrices L = P(1) * L(1) * ... * P(n-1) * L(n-1), -* where each transformation L(i) is a rank-one modification of -* the identity matrix. -* - IF( LNOTI ) THEN - DO 10 J = 1, N - 1 - LM = MIN( KL, N-J ) - L = IPIV( J ) - IF( L.NE.J ) - $ CALL DSWAP( NRHS, B( L, 1 ), LDB, B( J, 1 ), LDB ) - CALL DGER( LM, NRHS, -ONE, AB( KD+1, J ), 1, B( J, 1 ), - $ LDB, B( J+1, 1 ), LDB ) - 10 CONTINUE - END IF -* - DO 20 I = 1, NRHS -* -* Solve U*X = B, overwriting B with X. -* - CALL DTBSV( 'Upper', 'No transpose', 'Non-unit', N, KL+KU, - $ AB, LDAB, B( 1, I ), 1 ) - 20 CONTINUE -* - ELSE -* -* Solve A'*X = B. -* - DO 30 I = 1, NRHS -* -* Solve U'*X = B, overwriting B with X. -* - CALL DTBSV( 'Upper', 'Transpose', 'Non-unit', N, KL+KU, AB, - $ LDAB, B( 1, I ), 1 ) - 30 CONTINUE -* -* Solve L'*X = B, overwriting B with X. -* - IF( LNOTI ) THEN - DO 40 J = N - 1, 1, -1 - LM = MIN( KL, N-J ) - CALL DGEMV( 'Transpose', LM, NRHS, -ONE, B( J+1, 1 ), - $ LDB, AB( KD+1, J ), 1, ONE, B( J, 1 ), LDB ) - L = IPIV( J ) - IF( L.NE.J ) - $ CALL DSWAP( NRHS, B( L, 1 ), LDB, B( J, 1 ), LDB ) - 40 CONTINUE - END IF - END IF - RETURN -* -* End of DGBTRS -* - END diff --git a/Cantera/ext/lapack/dgebd2.f b/Cantera/ext/lapack/dgebd2.f deleted file mode 100755 index 0bdac2d24..000000000 --- a/Cantera/ext/lapack/dgebd2.f +++ /dev/null @@ -1,238 +0,0 @@ - SUBROUTINE DGEBD2( M, N, A, LDA, D, E, TAUQ, TAUP, WORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - INTEGER INFO, LDA, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), D( * ), E( * ), TAUP( * ), - $ TAUQ( * ), WORK( * ) -* .. -* -* Purpose -* ======= -* -* DGEBD2 reduces a real general m by n matrix A to upper or lower -* bidiagonal form B by an orthogonal transformation: Q' * A * P = B. -* -* If m >= n, B is upper bidiagonal; if m < n, B is lower bidiagonal. -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows in the matrix A. M >= 0. -* -* N (input) INTEGER -* The number of columns in the matrix A. N >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the m by n general matrix to be reduced. -* On exit, -* if m >= n, the diagonal and the first superdiagonal are -* overwritten with the upper bidiagonal matrix B; the -* elements below the diagonal, with the array TAUQ, represent -* the orthogonal matrix Q as a product of elementary -* reflectors, and the elements above the first superdiagonal, -* with the array TAUP, represent the orthogonal matrix P as -* a product of elementary reflectors; -* if m < n, the diagonal and the first subdiagonal are -* overwritten with the lower bidiagonal matrix B; the -* elements below the first subdiagonal, with the array TAUQ, -* represent the orthogonal matrix Q as a product of -* elementary reflectors, and the elements above the diagonal, -* with the array TAUP, represent the orthogonal matrix P as -* a product of elementary reflectors. -* See Further Details. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,M). -* -* D (output) DOUBLE PRECISION array, dimension (min(M,N)) -* The diagonal elements of the bidiagonal matrix B: -* D(i) = A(i,i). -* -* E (output) DOUBLE PRECISION array, dimension (min(M,N)-1) -* The off-diagonal elements of the bidiagonal matrix B: -* if m >= n, E(i) = A(i,i+1) for i = 1,2,...,n-1; -* if m < n, E(i) = A(i+1,i) for i = 1,2,...,m-1. -* -* TAUQ (output) DOUBLE PRECISION array dimension (min(M,N)) -* The scalar factors of the elementary reflectors which -* represent the orthogonal matrix Q. See Further Details. -* -* TAUP (output) DOUBLE PRECISION array, dimension (min(M,N)) -* The scalar factors of the elementary reflectors which -* represent the orthogonal matrix P. See Further Details. -* -* WORK (workspace) DOUBLE PRECISION array, dimension (max(M,N)) -* -* INFO (output) INTEGER -* = 0: successful exit. -* < 0: if INFO = -i, the i-th argument had an illegal value. -* -* Further Details -* =============== -* -* The matrices Q and P are represented as products of elementary -* reflectors: -* -* If m >= n, -* -* Q = H(1) H(2) . . . H(n) and P = G(1) G(2) . . . G(n-1) -* -* Each H(i) and G(i) has the form: -* -* H(i) = I - tauq * v * v' and G(i) = I - taup * u * u' -* -* where tauq and taup are real scalars, and v and u are real vectors; -* v(1:i-1) = 0, v(i) = 1, and v(i+1:m) is stored on exit in A(i+1:m,i); -* u(1:i) = 0, u(i+1) = 1, and u(i+2:n) is stored on exit in A(i,i+2:n); -* tauq is stored in TAUQ(i) and taup in TAUP(i). -* -* If m < n, -* -* Q = H(1) H(2) . . . H(m-1) and P = G(1) G(2) . . . G(m) -* -* Each H(i) and G(i) has the form: -* -* H(i) = I - tauq * v * v' and G(i) = I - taup * u * u' -* -* where tauq and taup are real scalars, and v and u are real vectors; -* v(1:i) = 0, v(i+1) = 1, and v(i+2:m) is stored on exit in A(i+2:m,i); -* u(1:i-1) = 0, u(i) = 1, and u(i+1:n) is stored on exit in A(i,i+1:n); -* tauq is stored in TAUQ(i) and taup in TAUP(i). -* -* The contents of A on exit are illustrated by the following examples: -* -* m = 6 and n = 5 (m > n): m = 5 and n = 6 (m < n): -* -* ( d e u1 u1 u1 ) ( d u1 u1 u1 u1 u1 ) -* ( v1 d e u2 u2 ) ( e d u2 u2 u2 u2 ) -* ( v1 v2 d e u3 ) ( v1 e d u3 u3 u3 ) -* ( v1 v2 v3 d e ) ( v1 v2 e d u4 u4 ) -* ( v1 v2 v3 v4 d ) ( v1 v2 v3 e d u5 ) -* ( v1 v2 v3 v4 v5 ) -* -* where d and e denote diagonal and off-diagonal elements of B, vi -* denotes an element of the vector defining H(i), and ui an element of -* the vector defining G(i). -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO, ONE - PARAMETER ( ZERO = 0.0D+0, ONE = 1.0D+0 ) -* .. -* .. Local Scalars .. - INTEGER I -* .. -* .. External Subroutines .. - EXTERNAL DLARF, DLARFG, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input parameters -* - INFO = 0 - IF( M.LT.0 ) THEN - INFO = -1 - ELSE IF( N.LT.0 ) THEN - INFO = -2 - ELSE IF( LDA.LT.MAX( 1, M ) ) THEN - INFO = -4 - END IF - IF( INFO.LT.0 ) THEN - CALL XERBLA( 'DGEBD2', -INFO ) - RETURN - END IF -* - IF( M.GE.N ) THEN -* -* Reduce to upper bidiagonal form -* - DO 10 I = 1, N -* -* Generate elementary reflector H(i) to annihilate A(i+1:m,i) -* - CALL DLARFG( M-I+1, A( I, I ), A( MIN( I+1, M ), I ), 1, - $ TAUQ( I ) ) - D( I ) = A( I, I ) - A( I, I ) = ONE -* -* Apply H(i) to A(i:m,i+1:n) from the left -* - CALL DLARF( 'Left', M-I+1, N-I, A( I, I ), 1, TAUQ( I ), - $ A( I, I+1 ), LDA, WORK ) - A( I, I ) = D( I ) -* - IF( I.LT.N ) THEN -* -* Generate elementary reflector G(i) to annihilate -* A(i,i+2:n) -* - CALL DLARFG( N-I, A( I, I+1 ), A( I, MIN( I+2, N ) ), - $ LDA, TAUP( I ) ) - E( I ) = A( I, I+1 ) - A( I, I+1 ) = ONE -* -* Apply G(i) to A(i+1:m,i+1:n) from the right -* - CALL DLARF( 'Right', M-I, N-I, A( I, I+1 ), LDA, - $ TAUP( I ), A( I+1, I+1 ), LDA, WORK ) - A( I, I+1 ) = E( I ) - ELSE - TAUP( I ) = ZERO - END IF - 10 CONTINUE - ELSE -* -* Reduce to lower bidiagonal form -* - DO 20 I = 1, M -* -* Generate elementary reflector G(i) to annihilate A(i,i+1:n) -* - CALL DLARFG( N-I+1, A( I, I ), A( I, MIN( I+1, N ) ), LDA, - $ TAUP( I ) ) - D( I ) = A( I, I ) - A( I, I ) = ONE -* -* Apply G(i) to A(i+1:m,i:n) from the right -* - CALL DLARF( 'Right', M-I, N-I+1, A( I, I ), LDA, TAUP( I ), - $ A( MIN( I+1, M ), I ), LDA, WORK ) - A( I, I ) = D( I ) -* - IF( I.LT.M ) THEN -* -* Generate elementary reflector H(i) to annihilate -* A(i+2:m,i) -* - CALL DLARFG( M-I, A( I+1, I ), A( MIN( I+2, M ), I ), 1, - $ TAUQ( I ) ) - E( I ) = A( I+1, I ) - A( I+1, I ) = ONE -* -* Apply H(i) to A(i+1:m,i+1:n) from the left -* - CALL DLARF( 'Left', M-I, N-I, A( I+1, I ), 1, TAUQ( I ), - $ A( I+1, I+1 ), LDA, WORK ) - A( I+1, I ) = E( I ) - ELSE - TAUQ( I ) = ZERO - END IF - 20 CONTINUE - END IF - RETURN -* -* End of DGEBD2 -* - END diff --git a/Cantera/ext/lapack/dgebrd.f b/Cantera/ext/lapack/dgebrd.f deleted file mode 100755 index 5ccaed3f5..000000000 --- a/Cantera/ext/lapack/dgebrd.f +++ /dev/null @@ -1,258 +0,0 @@ - SUBROUTINE DGEBRD( M, N, A, LDA, D, E, TAUQ, TAUP, WORK, LWORK, - $ INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - INTEGER INFO, LDA, LWORK, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), D( * ), E( * ), TAUP( * ), - $ TAUQ( * ), WORK( LWORK ) -* .. -* -* Purpose -* ======= -* -* DGEBRD reduces a general real M-by-N matrix A to upper or lower -* bidiagonal form B by an orthogonal transformation: Q**T * A * P = B. -* -* If m >= n, B is upper bidiagonal; if m < n, B is lower bidiagonal. -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows in the matrix A. M >= 0. -* -* N (input) INTEGER -* The number of columns in the matrix A. N >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the M-by-N general matrix to be reduced. -* On exit, -* if m >= n, the diagonal and the first superdiagonal are -* overwritten with the upper bidiagonal matrix B; the -* elements below the diagonal, with the array TAUQ, represent -* the orthogonal matrix Q as a product of elementary -* reflectors, and the elements above the first superdiagonal, -* with the array TAUP, represent the orthogonal matrix P as -* a product of elementary reflectors; -* if m < n, the diagonal and the first subdiagonal are -* overwritten with the lower bidiagonal matrix B; the -* elements below the first subdiagonal, with the array TAUQ, -* represent the orthogonal matrix Q as a product of -* elementary reflectors, and the elements above the diagonal, -* with the array TAUP, represent the orthogonal matrix P as -* a product of elementary reflectors. -* See Further Details. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,M). -* -* D (output) DOUBLE PRECISION array, dimension (min(M,N)) -* The diagonal elements of the bidiagonal matrix B: -* D(i) = A(i,i). -* -* E (output) DOUBLE PRECISION array, dimension (min(M,N)-1) -* The off-diagonal elements of the bidiagonal matrix B: -* if m >= n, E(i) = A(i,i+1) for i = 1,2,...,n-1; -* if m < n, E(i) = A(i+1,i) for i = 1,2,...,m-1. -* -* TAUQ (output) DOUBLE PRECISION array dimension (min(M,N)) -* The scalar factors of the elementary reflectors which -* represent the orthogonal matrix Q. See Further Details. -* -* TAUP (output) DOUBLE PRECISION array, dimension (min(M,N)) -* The scalar factors of the elementary reflectors which -* represent the orthogonal matrix P. See Further Details. -* -* WORK (workspace/output) DOUBLE PRECISION array, dimension (LWORK) -* On exit, if INFO = 0, WORK(1) returns the optimal LWORK. -* -* LWORK (input) INTEGER -* The length of the array WORK. LWORK >= max(1,M,N). -* For optimum performance LWORK >= (M+N)*NB, where NB -* is the optimal blocksize. -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value. -* -* Further Details -* =============== -* -* The matrices Q and P are represented as products of elementary -* reflectors: -* -* If m >= n, -* -* Q = H(1) H(2) . . . H(n) and P = G(1) G(2) . . . G(n-1) -* -* Each H(i) and G(i) has the form: -* -* H(i) = I - tauq * v * v' and G(i) = I - taup * u * u' -* -* where tauq and taup are real scalars, and v and u are real vectors; -* v(1:i-1) = 0, v(i) = 1, and v(i+1:m) is stored on exit in A(i+1:m,i); -* u(1:i) = 0, u(i+1) = 1, and u(i+2:n) is stored on exit in A(i,i+2:n); -* tauq is stored in TAUQ(i) and taup in TAUP(i). -* -* If m < n, -* -* Q = H(1) H(2) . . . H(m-1) and P = G(1) G(2) . . . G(m) -* -* Each H(i) and G(i) has the form: -* -* H(i) = I - tauq * v * v' and G(i) = I - taup * u * u' -* -* where tauq and taup are real scalars, and v and u are real vectors; -* v(1:i) = 0, v(i+1) = 1, and v(i+2:m) is stored on exit in A(i+2:m,i); -* u(1:i-1) = 0, u(i) = 1, and u(i+1:n) is stored on exit in A(i,i+1:n); -* tauq is stored in TAUQ(i) and taup in TAUP(i). -* -* The contents of A on exit are illustrated by the following examples: -* -* m = 6 and n = 5 (m > n): m = 5 and n = 6 (m < n): -* -* ( d e u1 u1 u1 ) ( d u1 u1 u1 u1 u1 ) -* ( v1 d e u2 u2 ) ( e d u2 u2 u2 u2 ) -* ( v1 v2 d e u3 ) ( v1 e d u3 u3 u3 ) -* ( v1 v2 v3 d e ) ( v1 v2 e d u4 u4 ) -* ( v1 v2 v3 v4 d ) ( v1 v2 v3 e d u5 ) -* ( v1 v2 v3 v4 v5 ) -* -* where d and e denote diagonal and off-diagonal elements of B, vi -* denotes an element of the vector defining H(i), and ui an element of -* the vector defining G(i). -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE - PARAMETER ( ONE = 1.0D+0 ) -* .. -* .. Local Scalars .. - INTEGER I, IINFO, J, LDWRKX, LDWRKY, MINMN, NB, NBMIN, - $ NX - DOUBLE PRECISION WS -* .. -* .. External Subroutines .. - EXTERNAL DGEBD2, DGEMM, DLABRD, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. External Functions .. - INTEGER ILAENV - EXTERNAL ILAENV -* .. -* .. Executable Statements .. -* -* Test the input parameters -* - INFO = 0 - IF( M.LT.0 ) THEN - INFO = -1 - ELSE IF( N.LT.0 ) THEN - INFO = -2 - ELSE IF( LDA.LT.MAX( 1, M ) ) THEN - INFO = -4 - ELSE IF( LWORK.LT.MAX( 1, M, N ) ) THEN - INFO = -10 - END IF - IF( INFO.LT.0 ) THEN - CALL XERBLA( 'DGEBRD', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - MINMN = MIN( M, N ) - IF( MINMN.EQ.0 ) THEN - WORK( 1 ) = 1 - RETURN - END IF -* - WS = MAX( M, N ) - LDWRKX = M - LDWRKY = N -* -* Set the block size NB and the crossover point NX. -* - NB = MAX( 1, ILAENV( 1, 'DGEBRD', ' ', M, N, -1, -1 ) ) -* - IF( NB.GT.1 .AND. NB.LT.MINMN ) THEN -* -* Determine when to switch from blocked to unblocked code. -* - NX = MAX( NB, ILAENV( 3, 'DGEBRD', ' ', M, N, -1, -1 ) ) - IF( NX.LT.MINMN ) THEN - WS = ( M+N )*NB - IF( LWORK.LT.WS ) THEN -* -* Not enough work space for the optimal NB, consider using -* a smaller block size. -* - NBMIN = ILAENV( 2, 'DGEBRD', ' ', M, N, -1, -1 ) - IF( LWORK.GE.( M+N )*NBMIN ) THEN - NB = LWORK / ( M+N ) - ELSE - NB = 1 - NX = MINMN - END IF - END IF - END IF - ELSE - NX = MINMN - END IF -* - DO 30 I = 1, MINMN - NX, NB -* -* Reduce rows and columns i:i+nb-1 to bidiagonal form and return -* the matrices X and Y which are needed to update the unreduced -* part of the matrix -* - CALL DLABRD( M-I+1, N-I+1, NB, A( I, I ), LDA, D( I ), E( I ), - $ TAUQ( I ), TAUP( I ), WORK, LDWRKX, - $ WORK( LDWRKX*NB+1 ), LDWRKY ) -* -* Update the trailing submatrix A(i+nb:m,i+nb:n), using an update -* of the form A := A - V*Y' - X*U' -* - CALL DGEMM( 'No transpose', 'Transpose', M-I-NB+1, N-I-NB+1, - $ NB, -ONE, A( I+NB, I ), LDA, - $ WORK( LDWRKX*NB+NB+1 ), LDWRKY, ONE, - $ A( I+NB, I+NB ), LDA ) - CALL DGEMM( 'No transpose', 'No transpose', M-I-NB+1, N-I-NB+1, - $ NB, -ONE, WORK( NB+1 ), LDWRKX, A( I, I+NB ), LDA, - $ ONE, A( I+NB, I+NB ), LDA ) -* -* Copy diagonal and off-diagonal elements of B back into A -* - IF( M.GE.N ) THEN - DO 10 J = I, I + NB - 1 - A( J, J ) = D( J ) - A( J, J+1 ) = E( J ) - 10 CONTINUE - ELSE - DO 20 J = I, I + NB - 1 - A( J, J ) = D( J ) - A( J+1, J ) = E( J ) - 20 CONTINUE - END IF - 30 CONTINUE -* -* Use unblocked code to reduce the remainder of the matrix -* - CALL DGEBD2( M-I+1, N-I+1, A( I, I ), LDA, D( I ), E( I ), - $ TAUQ( I ), TAUP( I ), WORK, IINFO ) - WORK( 1 ) = WS - RETURN -* -* End of DGEBRD -* - END diff --git a/Cantera/ext/lapack/dgelq2.f b/Cantera/ext/lapack/dgelq2.f deleted file mode 100755 index 699a70cfe..000000000 --- a/Cantera/ext/lapack/dgelq2.f +++ /dev/null @@ -1,122 +0,0 @@ - SUBROUTINE DGELQ2( M, N, A, LDA, TAU, WORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - INTEGER INFO, LDA, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * ) -* .. -* -* Purpose -* ======= -* -* DGELQ2 computes an LQ factorization of a real m by n matrix A: -* A = L * Q. -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows of the matrix A. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix A. N >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the m by n matrix A. -* On exit, the elements on and below the diagonal of the array -* contain the m by min(m,n) lower trapezoidal matrix L (L is -* lower triangular if m <= n); the elements above the diagonal, -* with the array TAU, represent the orthogonal matrix Q as a -* product of elementary reflectors (see Further Details). -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,M). -* -* TAU (output) DOUBLE PRECISION array, dimension (min(M,N)) -* The scalar factors of the elementary reflectors (see Further -* Details). -* -* WORK (workspace) DOUBLE PRECISION array, dimension (M) -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* -* Further Details -* =============== -* -* The matrix Q is represented as a product of elementary reflectors -* -* Q = H(k) . . . H(2) H(1), where k = min(m,n). -* -* Each H(i) has the form -* -* H(i) = I - tau * v * v' -* -* where tau is a real scalar, and v is a real vector with -* v(1:i-1) = 0 and v(i) = 1; v(i+1:n) is stored on exit in A(i,i+1:n), -* and tau in TAU(i). -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE - PARAMETER ( ONE = 1.0D+0 ) -* .. -* .. Local Scalars .. - INTEGER I, K - DOUBLE PRECISION AII -* .. -* .. External Subroutines .. - EXTERNAL DLARF, DLARFG, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input arguments -* - INFO = 0 - IF( M.LT.0 ) THEN - INFO = -1 - ELSE IF( N.LT.0 ) THEN - INFO = -2 - ELSE IF( LDA.LT.MAX( 1, M ) ) THEN - INFO = -4 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DGELQ2', -INFO ) - RETURN - END IF -* - K = MIN( M, N ) -* - DO 10 I = 1, K -* -* Generate elementary reflector H(i) to annihilate A(i,i+1:n) -* - CALL DLARFG( N-I+1, A( I, I ), A( I, MIN( I+1, N ) ), LDA, - $ TAU( I ) ) - IF( I.LT.M ) THEN -* -* Apply H(i) to A(i+1:m,i:n) from the right -* - AII = A( I, I ) - A( I, I ) = ONE - CALL DLARF( 'Right', M-I, N-I+1, A( I, I ), LDA, TAU( I ), - $ A( I+1, I ), LDA, WORK ) - A( I, I ) = AII - END IF - 10 CONTINUE - RETURN -* -* End of DGELQ2 -* - END diff --git a/Cantera/ext/lapack/dgelqf.f b/Cantera/ext/lapack/dgelqf.f deleted file mode 100755 index 0910606a8..000000000 --- a/Cantera/ext/lapack/dgelqf.f +++ /dev/null @@ -1,186 +0,0 @@ - SUBROUTINE DGELQF( M, N, A, LDA, TAU, WORK, LWORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - INTEGER INFO, LDA, LWORK, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( LWORK ) -* .. -* -* Purpose -* ======= -* -* DGELQF computes an LQ factorization of a real M-by-N matrix A: -* A = L * Q. -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows of the matrix A. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix A. N >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the M-by-N matrix A. -* On exit, the elements on and below the diagonal of the array -* contain the m-by-min(m,n) lower trapezoidal matrix L (L is -* lower triangular if m <= n); the elements above the diagonal, -* with the array TAU, represent the orthogonal matrix Q as a -* product of elementary reflectors (see Further Details). -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,M). -* -* TAU (output) DOUBLE PRECISION array, dimension (min(M,N)) -* The scalar factors of the elementary reflectors (see Further -* Details). -* -* WORK (workspace/output) DOUBLE PRECISION array, dimension (LWORK) -* On exit, if INFO = 0, WORK(1) returns the optimal LWORK. -* -* LWORK (input) INTEGER -* The dimension of the array WORK. LWORK >= max(1,M). -* For optimum performance LWORK >= M*NB, where NB is the -* optimal blocksize. -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* -* Further Details -* =============== -* -* The matrix Q is represented as a product of elementary reflectors -* -* Q = H(k) . . . H(2) H(1), where k = min(m,n). -* -* Each H(i) has the form -* -* H(i) = I - tau * v * v' -* -* where tau is a real scalar, and v is a real vector with -* v(1:i-1) = 0 and v(i) = 1; v(i+1:n) is stored on exit in A(i,i+1:n), -* and tau in TAU(i). -* -* ===================================================================== -* -* .. Local Scalars .. - INTEGER I, IB, IINFO, IWS, K, LDWORK, NB, NBMIN, NX -* .. -* .. External Subroutines .. - EXTERNAL DGELQ2, DLARFB, DLARFT, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. External Functions .. - INTEGER ILAENV - EXTERNAL ILAENV -* .. -* .. Executable Statements .. -* -* Test the input arguments -* - INFO = 0 - IF( M.LT.0 ) THEN - INFO = -1 - ELSE IF( N.LT.0 ) THEN - INFO = -2 - ELSE IF( LDA.LT.MAX( 1, M ) ) THEN - INFO = -4 - ELSE IF( LWORK.LT.MAX( 1, M ) ) THEN - INFO = -7 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DGELQF', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - K = MIN( M, N ) - IF( K.EQ.0 ) THEN - WORK( 1 ) = 1 - RETURN - END IF -* -* Determine the block size. -* - NB = ILAENV( 1, 'DGELQF', ' ', M, N, -1, -1 ) - NBMIN = 2 - NX = 0 - IWS = M - IF( NB.GT.1 .AND. NB.LT.K ) THEN -* -* Determine when to cross over from blocked to unblocked code. -* - NX = MAX( 0, ILAENV( 3, 'DGELQF', ' ', M, N, -1, -1 ) ) - IF( NX.LT.K ) THEN -* -* Determine if workspace is large enough for blocked code. -* - LDWORK = M - IWS = LDWORK*NB - IF( LWORK.LT.IWS ) THEN -* -* Not enough workspace to use optimal NB: reduce NB and -* determine the minimum value of NB. -* - NB = LWORK / LDWORK - NBMIN = MAX( 2, ILAENV( 2, 'DGELQF', ' ', M, N, -1, - $ -1 ) ) - END IF - END IF - END IF -* - IF( NB.GE.NBMIN .AND. NB.LT.K .AND. NX.LT.K ) THEN -* -* Use blocked code initially -* - DO 10 I = 1, K - NX, NB - IB = MIN( K-I+1, NB ) -* -* Compute the LQ factorization of the current block -* A(i:i+ib-1,i:n) -* - CALL DGELQ2( IB, N-I+1, A( I, I ), LDA, TAU( I ), WORK, - $ IINFO ) - IF( I+IB.LE.M ) THEN -* -* Form the triangular factor of the block reflector -* H = H(i) H(i+1) . . . H(i+ib-1) -* - CALL DLARFT( 'Forward', 'Rowwise', N-I+1, IB, A( I, I ), - $ LDA, TAU( I ), WORK, LDWORK ) -* -* Apply H to A(i+ib:m,i:n) from the right -* - CALL DLARFB( 'Right', 'No transpose', 'Forward', - $ 'Rowwise', M-I-IB+1, N-I+1, IB, A( I, I ), - $ LDA, WORK, LDWORK, A( I+IB, I ), LDA, - $ WORK( IB+1 ), LDWORK ) - END IF - 10 CONTINUE - ELSE - I = 1 - END IF -* -* Use unblocked code to factor the last or only block. -* - IF( I.LE.K ) - $ CALL DGELQ2( M-I+1, N-I+1, A( I, I ), LDA, TAU( I ), WORK, - $ IINFO ) -* - WORK( 1 ) = IWS - RETURN -* -* End of DGELQF -* - END diff --git a/Cantera/ext/lapack/dgelss.f b/Cantera/ext/lapack/dgelss.f deleted file mode 100755 index 36c3bb489..000000000 --- a/Cantera/ext/lapack/dgelss.f +++ /dev/null @@ -1,604 +0,0 @@ - SUBROUTINE DGELSS( M, N, NRHS, A, LDA, B, LDB, S, RCOND, RANK, - $ WORK, LWORK, INFO ) -* -* -- LAPACK driver routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - INTEGER INFO, LDA, LDB, LWORK, M, N, NRHS, RANK - DOUBLE PRECISION RCOND -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), B( LDB, * ), S( * ), WORK( * ) -* .. -* -* Purpose -* ======= -* -* DGELSS computes the minimum norm solution to a real linear least -* squares problem: -* -* Minimize 2-norm(| b - A*x |). -* -* using the singular value decomposition (SVD) of A. A is an M-by-N -* matrix which may be rank-deficient. -* -* Several right hand side vectors b and solution vectors x can be -* handled in a single call; they are stored as the columns of the -* M-by-NRHS right hand side matrix B and the N-by-NRHS solution matrix -* X. -* -* The effective rank of A is determined by treating as zero those -* singular values which are less than RCOND times the largest singular -* value. -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows of the matrix A. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix A. N >= 0. -* -* NRHS (input) INTEGER -* The number of right hand sides, i.e., the number of columns -* of the matrices B and X. NRHS >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the M-by-N matrix A. -* On exit, the first min(m,n) rows of A are overwritten with -* its right singular vectors, stored rowwise. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,M). -* -* B (input/output) DOUBLE PRECISION array, dimension (LDB,NRHS) -* On entry, the M-by-NRHS right hand side matrix B. -* On exit, B is overwritten by the N-by-NRHS solution -* matrix X. If m >= n and RANK = n, the residual -* sum-of-squares for the solution in the i-th column is given -* by the sum of squares of elements n+1:m in that column. -* -* LDB (input) INTEGER -* The leading dimension of the array B. LDB >= max(1,max(M,N)). -* -* S (output) DOUBLE PRECISION array, dimension (min(M,N)) -* The singular values of A in decreasing order. -* The condition number of A in the 2-norm = S(1)/S(min(m,n)). -* -* RCOND (input) DOUBLE PRECISION -* RCOND is used to determine the effective rank of A. -* Singular values S(i) <= RCOND*S(1) are treated as zero. -* If RCOND < 0, machine precision is used instead. -* -* RANK (output) INTEGER -* The effective rank of A, i.e., the number of singular values -* which are greater than RCOND*S(1). -* -* WORK (workspace/output) DOUBLE PRECISION array, dimension (LWORK) -* On exit, if INFO = 0, WORK(1) returns the optimal LWORK. -* -* LWORK (input) INTEGER -* The dimension of the array WORK. LWORK >= 1, and also: -* LWORK >= 3*min(M,N) + max( 2*min(M,N), max(M,N), NRHS ) -* For good performance, LWORK should generally be larger. -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value. -* > 0: the algorithm for computing the SVD failed to converge; -* if INFO = i, i off-diagonal elements of an intermediate -* bidiagonal form did not converge to zero. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO, ONE - PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0 ) -* .. -* .. Local Scalars .. - INTEGER BDSPAC, BL, CHUNK, I, IASCL, IBSCL, IE, IL, - $ ITAU, ITAUP, ITAUQ, IWORK, LDWORK, MAXMN, - $ MAXWRK, MINMN, MINWRK, MM, MNTHR - DOUBLE PRECISION ANRM, BIGNUM, BNRM, EPS, SFMIN, SMLNUM, THR -* .. -* .. Local Arrays .. - DOUBLE PRECISION VDUM( 1 ) -* .. -* .. External Subroutines .. - EXTERNAL DBDSQR, DCOPY, DGEBRD, DGELQF, DGEMM, DGEMV, - $ DGEQRF, DLABAD, DLACPY, DLASCL, DLASET, DORGBR, - $ DORMBR, DORMLQ, DORMQR, DRSCL, XERBLA -* .. -* .. External Functions .. - INTEGER ILAENV - DOUBLE PRECISION DLAMCH, DLANGE - EXTERNAL ILAENV, DLAMCH, DLANGE -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input arguments -* - INFO = 0 - MINMN = MIN( M, N ) - MAXMN = MAX( M, N ) - MNTHR = ILAENV( 6, 'DGELSS', ' ', M, N, NRHS, -1 ) - IF( M.LT.0 ) THEN - INFO = -1 - ELSE IF( N.LT.0 ) THEN - INFO = -2 - ELSE IF( NRHS.LT.0 ) THEN - INFO = -3 - ELSE IF( LDA.LT.MAX( 1, M ) ) THEN - INFO = -5 - ELSE IF( LDB.LT.MAX( 1, MAXMN ) ) THEN - INFO = -7 - END IF -* -* Compute workspace -* (Note: Comments in the code beginning "Workspace:" describe the -* minimal amount of workspace needed at that point in the code, -* as well as the preferred amount for good performance. -* NB refers to the optimal block size for the immediately -* following subroutine, as returned by ILAENV.) -* - MINWRK = 1 - IF( INFO.EQ.0 .AND. LWORK.GE.1 ) THEN - MAXWRK = 0 - MM = M - IF( M.GE.N .AND. M.GE.MNTHR ) THEN -* -* Path 1a - overdetermined, with many more rows than columns -* - MM = N - MAXWRK = MAX( MAXWRK, N+N*ILAENV( 1, 'DGEQRF', ' ', M, N, - $ -1, -1 ) ) - MAXWRK = MAX( MAXWRK, N+NRHS* - $ ILAENV( 1, 'DORMQR', 'LT', M, NRHS, N, -1 ) ) - END IF - IF( M.GE.N ) THEN -* -* Path 1 - overdetermined or exactly determined -* -* Compute workspace neede for DBDSQR -* - BDSPAC = MAX( 1, 5*N-4 ) - MAXWRK = MAX( MAXWRK, 3*N+( MM+N )* - $ ILAENV( 1, 'DGEBRD', ' ', MM, N, -1, -1 ) ) - MAXWRK = MAX( MAXWRK, 3*N+NRHS* - $ ILAENV( 1, 'DORMBR', 'QLT', MM, NRHS, N, -1 ) ) - MAXWRK = MAX( MAXWRK, 3*N+( N-1 )* - $ ILAENV( 1, 'DORGBR', 'P', N, N, N, -1 ) ) - MAXWRK = MAX( MAXWRK, BDSPAC ) - MAXWRK = MAX( MAXWRK, N*NRHS ) - MINWRK = MAX( 3*N+MM, 3*N+NRHS, BDSPAC ) - MAXWRK = MAX( MINWRK, MAXWRK ) - - END IF - IF( N.GT.M ) THEN -* -* Compute workspace neede for DBDSQR -* - BDSPAC = MAX( 1, 5*M-4 ) - MINWRK = MAX( 3*M+NRHS, 3*M+N, BDSPAC ) - IF( N.GE.MNTHR ) THEN -* -* Path 2a - underdetermined, with many more columns -* than rows -* - MAXWRK = M + M*ILAENV( 1, 'DGELQF', ' ', M, N, -1, -1 ) - MAXWRK = MAX( MAXWRK, M*M+4*M+2*M* - $ ILAENV( 1, 'DGEBRD', ' ', M, M, -1, -1 ) ) - MAXWRK = MAX( MAXWRK, M*M+4*M+NRHS* - $ ILAENV( 1, 'DORMBR', 'QLT', M, NRHS, M, -1 ) ) - MAXWRK = MAX( MAXWRK, M*M+4*M+( M-1 )* - $ ILAENV( 1, 'DORGBR', 'P', M, M, M, -1 ) ) - MAXWRK = MAX( MAXWRK, M*M+M+BDSPAC ) - IF( NRHS.GT.1 ) THEN - MAXWRK = MAX( MAXWRK, M*M+M+M*NRHS ) - ELSE - MAXWRK = MAX( MAXWRK, M*M+2*M ) - END IF - MAXWRK = MAX( MAXWRK, M+NRHS* - $ ILAENV( 1, 'DORMLQ', 'LT', N, NRHS, M, -1 ) ) - ELSE -* -* Path 2 - underdetermined -* - MAXWRK = 3*M + ( N+M )*ILAENV( 1, 'DGEBRD', ' ', M, N, - $ -1, -1 ) - MAXWRK = MAX( MAXWRK, 3*M+NRHS* - $ ILAENV( 1, 'DORMBR', 'QLT', M, NRHS, M, -1 ) ) - MAXWRK = MAX( MAXWRK, 3*M+M* - $ ILAENV( 1, 'DORGBR', 'P', M, N, M, -1 ) ) - MAXWRK = MAX( MAXWRK, BDSPAC ) - MAXWRK = MAX( MAXWRK, N*NRHS ) - END IF - END IF - MAXWRK = MAX( MINWRK, MAXWRK ) - WORK( 1 ) = MAXWRK - END IF -* - MINWRK = MAX( MINWRK, 1 ) - IF( LWORK.LT.MINWRK ) - $ INFO = -12 - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DGELSS', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( M.EQ.0 .OR. N.EQ.0 ) THEN - RANK = 0 - RETURN - END IF -* -* Get machine parameters -* - EPS = DLAMCH( 'P' ) - SFMIN = DLAMCH( 'S' ) - SMLNUM = SFMIN / EPS - BIGNUM = ONE / SMLNUM - CALL DLABAD( SMLNUM, BIGNUM ) -* -* Scale A if max element outside range [SMLNUM,BIGNUM] -* - ANRM = DLANGE( 'M', M, N, A, LDA, WORK ) - IASCL = 0 - IF( ANRM.GT.ZERO .AND. ANRM.LT.SMLNUM ) THEN -* -* Scale matrix norm up to SMLNUM -* - CALL DLASCL( 'G', 0, 0, ANRM, SMLNUM, M, N, A, LDA, INFO ) - IASCL = 1 - ELSE IF( ANRM.GT.BIGNUM ) THEN -* -* Scale matrix norm down to BIGNUM -* - CALL DLASCL( 'G', 0, 0, ANRM, BIGNUM, M, N, A, LDA, INFO ) - IASCL = 2 - ELSE IF( ANRM.EQ.ZERO ) THEN -* -* Matrix all zero. Return zero solution. -* - CALL DLASET( 'F', MAX( M, N ), NRHS, ZERO, ZERO, B, LDB ) - CALL DLASET( 'F', MINMN, 1, ZERO, ZERO, S, 1 ) - RANK = 0 - GO TO 70 - END IF -* -* Scale B if max element outside range [SMLNUM,BIGNUM] -* - BNRM = DLANGE( 'M', M, NRHS, B, LDB, WORK ) - IBSCL = 0 - IF( BNRM.GT.ZERO .AND. BNRM.LT.SMLNUM ) THEN -* -* Scale matrix norm up to SMLNUM -* - CALL DLASCL( 'G', 0, 0, BNRM, SMLNUM, M, NRHS, B, LDB, INFO ) - IBSCL = 1 - ELSE IF( BNRM.GT.BIGNUM ) THEN -* -* Scale matrix norm down to BIGNUM -* - CALL DLASCL( 'G', 0, 0, BNRM, BIGNUM, M, NRHS, B, LDB, INFO ) - IBSCL = 2 - END IF -* -* Overdetermined case -* - IF( M.GE.N ) THEN -* -* Path 1 - overdetermined or exactly determined -* - MM = M - IF( M.GE.MNTHR ) THEN -* -* Path 1a - overdetermined, with many more rows than columns -* - MM = N - ITAU = 1 - IWORK = ITAU + N -* -* Compute A=Q*R -* (Workspace: need 2*N, prefer N+N*NB) -* - CALL DGEQRF( M, N, A, LDA, WORK( ITAU ), WORK( IWORK ), - $ LWORK-IWORK+1, INFO ) -* -* Multiply B by transpose(Q) -* (Workspace: need N+NRHS, prefer N+NRHS*NB) -* - CALL DORMQR( 'L', 'T', M, NRHS, N, A, LDA, WORK( ITAU ), B, - $ LDB, WORK( IWORK ), LWORK-IWORK+1, INFO ) -* -* Zero out below R -* - IF( N.GT.1 ) - $ CALL DLASET( 'L', N-1, N-1, ZERO, ZERO, A( 2, 1 ), LDA ) - END IF -* - IE = 1 - ITAUQ = IE + N - ITAUP = ITAUQ + N - IWORK = ITAUP + N -* -* Bidiagonalize R in A -* (Workspace: need 3*N+MM, prefer 3*N+(MM+N)*NB) -* - CALL DGEBRD( MM, N, A, LDA, S, WORK( IE ), WORK( ITAUQ ), - $ WORK( ITAUP ), WORK( IWORK ), LWORK-IWORK+1, - $ INFO ) -* -* Multiply B by transpose of left bidiagonalizing vectors of R -* (Workspace: need 3*N+NRHS, prefer 3*N+NRHS*NB) -* - CALL DORMBR( 'Q', 'L', 'T', MM, NRHS, N, A, LDA, WORK( ITAUQ ), - $ B, LDB, WORK( IWORK ), LWORK-IWORK+1, INFO ) -* -* Generate right bidiagonalizing vectors of R in A -* (Workspace: need 4*N-1, prefer 3*N+(N-1)*NB) -* - CALL DORGBR( 'P', N, N, N, A, LDA, WORK( ITAUP ), - $ WORK( IWORK ), LWORK-IWORK+1, INFO ) - IWORK = IE + N -* -* Perform bidiagonal QR iteration -* multiply B by transpose of left singular vectors -* compute right singular vectors in A -* (Workspace: need BDSPAC) -* - CALL DBDSQR( 'U', N, N, 0, NRHS, S, WORK( IE ), A, LDA, VDUM, - $ 1, B, LDB, WORK( IWORK ), INFO ) - IF( INFO.NE.0 ) - $ GO TO 70 -* -* Multiply B by reciprocals of singular values -* - THR = MAX( RCOND*S( 1 ), SFMIN ) - IF( RCOND.LT.ZERO ) - $ THR = MAX( EPS*S( 1 ), SFMIN ) - RANK = 0 - DO 10 I = 1, N - IF( S( I ).GT.THR ) THEN - CALL DRSCL( NRHS, S( I ), B( I, 1 ), LDB ) - RANK = RANK + 1 - ELSE - CALL DLASET( 'F', 1, NRHS, ZERO, ZERO, B( I, 1 ), LDB ) - END IF - 10 CONTINUE -* -* Multiply B by right singular vectors -* (Workspace: need N, prefer N*NRHS) -* - IF( LWORK.GE.LDB*NRHS .AND. NRHS.GT.1 ) THEN - CALL DGEMM( 'T', 'N', N, NRHS, N, ONE, A, LDA, B, LDB, ZERO, - $ WORK, LDB ) - CALL DLACPY( 'G', N, NRHS, WORK, LDB, B, LDB ) - ELSE IF( NRHS.GT.1 ) THEN - CHUNK = LWORK / N - DO 20 I = 1, NRHS, CHUNK - BL = MIN( NRHS-I+1, CHUNK ) - CALL DGEMM( 'T', 'N', N, BL, N, ONE, A, LDA, B, LDB, - $ ZERO, WORK, N ) - CALL DLACPY( 'G', N, BL, WORK, N, B, LDB ) - 20 CONTINUE - ELSE - CALL DGEMV( 'T', N, N, ONE, A, LDA, B, 1, ZERO, WORK, 1 ) - CALL DCOPY( N, WORK, 1, B, 1 ) - END IF -* - ELSE IF( N.GE.MNTHR .AND. LWORK.GE.4*M+M*M+ - $ MAX( M, 2*M-4, NRHS, N-3*M ) ) THEN -* -* Path 2a - underdetermined, with many more columns than rows -* and sufficient workspace for an efficient algorithm -* - LDWORK = M - IF( LWORK.GE.MAX( 4*M+M*LDA+MAX( M, 2*M-4, NRHS, N-3*M ), - $ M*LDA+M+M*NRHS ) )LDWORK = LDA - ITAU = 1 - IWORK = M + 1 -* -* Compute A=L*Q -* (Workspace: need 2*M, prefer M+M*NB) -* - CALL DGELQF( M, N, A, LDA, WORK( ITAU ), WORK( IWORK ), - $ LWORK-IWORK+1, INFO ) - IL = IWORK -* -* Copy L to WORK(IL), zeroing out above it -* - CALL DLACPY( 'L', M, M, A, LDA, WORK( IL ), LDWORK ) - CALL DLASET( 'U', M-1, M-1, ZERO, ZERO, WORK( IL+LDWORK ), - $ LDWORK ) - IE = IL + LDWORK*M - ITAUQ = IE + M - ITAUP = ITAUQ + M - IWORK = ITAUP + M -* -* Bidiagonalize L in WORK(IL) -* (Workspace: need M*M+5*M, prefer M*M+4*M+2*M*NB) -* - CALL DGEBRD( M, M, WORK( IL ), LDWORK, S, WORK( IE ), - $ WORK( ITAUQ ), WORK( ITAUP ), WORK( IWORK ), - $ LWORK-IWORK+1, INFO ) -* -* Multiply B by transpose of left bidiagonalizing vectors of L -* (Workspace: need M*M+4*M+NRHS, prefer M*M+4*M+NRHS*NB) -* - CALL DORMBR( 'Q', 'L', 'T', M, NRHS, M, WORK( IL ), LDWORK, - $ WORK( ITAUQ ), B, LDB, WORK( IWORK ), - $ LWORK-IWORK+1, INFO ) -* -* Generate right bidiagonalizing vectors of R in WORK(IL) -* (Workspace: need M*M+5*M-1, prefer M*M+4*M+(M-1)*NB) -* - CALL DORGBR( 'P', M, M, M, WORK( IL ), LDWORK, WORK( ITAUP ), - $ WORK( IWORK ), LWORK-IWORK+1, INFO ) - IWORK = IE + M -* -* Perform bidiagonal QR iteration, -* computing right singular vectors of L in WORK(IL) and -* multiplying B by transpose of left singular vectors -* (Workspace: need M*M+M+BDSPAC) -* - CALL DBDSQR( 'U', M, M, 0, NRHS, S, WORK( IE ), WORK( IL ), - $ LDWORK, A, LDA, B, LDB, WORK( IWORK ), INFO ) - IF( INFO.NE.0 ) - $ GO TO 70 -* -* Multiply B by reciprocals of singular values -* - THR = MAX( RCOND*S( 1 ), SFMIN ) - IF( RCOND.LT.ZERO ) - $ THR = MAX( EPS*S( 1 ), SFMIN ) - RANK = 0 - DO 30 I = 1, M - IF( S( I ).GT.THR ) THEN - CALL DRSCL( NRHS, S( I ), B( I, 1 ), LDB ) - RANK = RANK + 1 - ELSE - CALL DLASET( 'F', 1, NRHS, ZERO, ZERO, B( I, 1 ), LDB ) - END IF - 30 CONTINUE - IWORK = IE -* -* Multiply B by right singular vectors of L in WORK(IL) -* (Workspace: need M*M+2*M, prefer M*M+M+M*NRHS) -* - IF( LWORK.GE.LDB*NRHS+IWORK-1 .AND. NRHS.GT.1 ) THEN - CALL DGEMM( 'T', 'N', M, NRHS, M, ONE, WORK( IL ), LDWORK, - $ B, LDB, ZERO, WORK( IWORK ), LDB ) - CALL DLACPY( 'G', M, NRHS, WORK( IWORK ), LDB, B, LDB ) - ELSE IF( NRHS.GT.1 ) THEN - CHUNK = ( LWORK-IWORK+1 ) / M - DO 40 I = 1, NRHS, CHUNK - BL = MIN( NRHS-I+1, CHUNK ) - CALL DGEMM( 'T', 'N', M, BL, M, ONE, WORK( IL ), LDWORK, - $ B( 1, I ), LDB, ZERO, WORK( IWORK ), N ) - CALL DLACPY( 'G', M, BL, WORK( IWORK ), N, B, LDB ) - 40 CONTINUE - ELSE - CALL DGEMV( 'T', M, M, ONE, WORK( IL ), LDWORK, B( 1, 1 ), - $ 1, ZERO, WORK( IWORK ), 1 ) - CALL DCOPY( M, WORK( IWORK ), 1, B( 1, 1 ), 1 ) - END IF -* -* Zero out below first M rows of B -* - CALL DLASET( 'F', N-M, NRHS, ZERO, ZERO, B( M+1, 1 ), LDB ) - IWORK = ITAU + M -* -* Multiply transpose(Q) by B -* (Workspace: need M+NRHS, prefer M+NRHS*NB) -* - CALL DORMLQ( 'L', 'T', N, NRHS, M, A, LDA, WORK( ITAU ), B, - $ LDB, WORK( IWORK ), LWORK-IWORK+1, INFO ) -* - ELSE -* -* Path 2 - remaining underdetermined cases -* - IE = 1 - ITAUQ = IE + M - ITAUP = ITAUQ + M - IWORK = ITAUP + M -* -* Bidiagonalize A -* (Workspace: need 3*M+N, prefer 3*M+(M+N)*NB) -* - CALL DGEBRD( M, N, A, LDA, S, WORK( IE ), WORK( ITAUQ ), - $ WORK( ITAUP ), WORK( IWORK ), LWORK-IWORK+1, - $ INFO ) -* -* Multiply B by transpose of left bidiagonalizing vectors -* (Workspace: need 3*M+NRHS, prefer 3*M+NRHS*NB) -* - CALL DORMBR( 'Q', 'L', 'T', M, NRHS, N, A, LDA, WORK( ITAUQ ), - $ B, LDB, WORK( IWORK ), LWORK-IWORK+1, INFO ) -* -* Generate right bidiagonalizing vectors in A -* (Workspace: need 4*M, prefer 3*M+M*NB) -* - CALL DORGBR( 'P', M, N, M, A, LDA, WORK( ITAUP ), - $ WORK( IWORK ), LWORK-IWORK+1, INFO ) - IWORK = IE + M -* -* Perform bidiagonal QR iteration, -* computing right singular vectors of A in A and -* multiplying B by transpose of left singular vectors -* (Workspace: need BDSPAC) -* - CALL DBDSQR( 'L', M, N, 0, NRHS, S, WORK( IE ), A, LDA, VDUM, - $ 1, B, LDB, WORK( IWORK ), INFO ) - IF( INFO.NE.0 ) - $ GO TO 70 -* -* Multiply B by reciprocals of singular values -* - THR = MAX( RCOND*S( 1 ), SFMIN ) - IF( RCOND.LT.ZERO ) - $ THR = MAX( EPS*S( 1 ), SFMIN ) - RANK = 0 - DO 50 I = 1, M - IF( S( I ).GT.THR ) THEN - CALL DRSCL( NRHS, S( I ), B( I, 1 ), LDB ) - RANK = RANK + 1 - ELSE - CALL DLASET( 'F', 1, NRHS, ZERO, ZERO, B( I, 1 ), LDB ) - END IF - 50 CONTINUE -* -* Multiply B by right singular vectors of A -* (Workspace: need N, prefer N*NRHS) -* - IF( LWORK.GE.LDB*NRHS .AND. NRHS.GT.1 ) THEN - CALL DGEMM( 'T', 'N', N, NRHS, M, ONE, A, LDA, B, LDB, ZERO, - $ WORK, LDB ) - CALL DLACPY( 'F', N, NRHS, WORK, LDB, B, LDB ) - ELSE IF( NRHS.GT.1 ) THEN - CHUNK = LWORK / N - DO 60 I = 1, NRHS, CHUNK - BL = MIN( NRHS-I+1, CHUNK ) - CALL DGEMM( 'T', 'N', N, BL, M, ONE, A, LDA, B( 1, I ), - $ LDB, ZERO, WORK, N ) - CALL DLACPY( 'F', N, BL, WORK, N, B( 1, I ), LDB ) - 60 CONTINUE - ELSE - CALL DGEMV( 'T', M, N, ONE, A, LDA, B, 1, ZERO, WORK, 1 ) - CALL DCOPY( N, WORK, 1, B, 1 ) - END IF - END IF -* -* Undo scaling -* - IF( IASCL.EQ.1 ) THEN - CALL DLASCL( 'G', 0, 0, ANRM, SMLNUM, N, NRHS, B, LDB, INFO ) - CALL DLASCL( 'G', 0, 0, SMLNUM, ANRM, MINMN, 1, S, MINMN, - $ INFO ) - ELSE IF( IASCL.EQ.2 ) THEN - CALL DLASCL( 'G', 0, 0, ANRM, BIGNUM, N, NRHS, B, LDB, INFO ) - CALL DLASCL( 'G', 0, 0, BIGNUM, ANRM, MINMN, 1, S, MINMN, - $ INFO ) - END IF - IF( IBSCL.EQ.1 ) THEN - CALL DLASCL( 'G', 0, 0, SMLNUM, BNRM, N, NRHS, B, LDB, INFO ) - ELSE IF( IBSCL.EQ.2 ) THEN - CALL DLASCL( 'G', 0, 0, BIGNUM, BNRM, N, NRHS, B, LDB, INFO ) - END IF -* - 70 CONTINUE - WORK( 1 ) = MAXWRK - RETURN -* -* End of DGELSS -* - END diff --git a/Cantera/ext/lapack/dgeqr2.f b/Cantera/ext/lapack/dgeqr2.f deleted file mode 100755 index 9dc6435c5..000000000 --- a/Cantera/ext/lapack/dgeqr2.f +++ /dev/null @@ -1,122 +0,0 @@ - SUBROUTINE DGEQR2( M, N, A, LDA, TAU, WORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - INTEGER INFO, LDA, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * ) -* .. -* -* Purpose -* ======= -* -* DGEQR2 computes a QR factorization of a real m by n matrix A: -* A = Q * R. -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows of the matrix A. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix A. N >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the m by n matrix A. -* On exit, the elements on and above the diagonal of the array -* contain the min(m,n) by n upper trapezoidal matrix R (R is -* upper triangular if m >= n); the elements below the diagonal, -* with the array TAU, represent the orthogonal matrix Q as a -* product of elementary reflectors (see Further Details). -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,M). -* -* TAU (output) DOUBLE PRECISION array, dimension (min(M,N)) -* The scalar factors of the elementary reflectors (see Further -* Details). -* -* WORK (workspace) DOUBLE PRECISION array, dimension (N) -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* -* Further Details -* =============== -* -* The matrix Q is represented as a product of elementary reflectors -* -* Q = H(1) H(2) . . . H(k), where k = min(m,n). -* -* Each H(i) has the form -* -* H(i) = I - tau * v * v' -* -* where tau is a real scalar, and v is a real vector with -* v(1:i-1) = 0 and v(i) = 1; v(i+1:m) is stored on exit in A(i+1:m,i), -* and tau in TAU(i). -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE - PARAMETER ( ONE = 1.0D+0 ) -* .. -* .. Local Scalars .. - INTEGER I, K - DOUBLE PRECISION AII -* .. -* .. External Subroutines .. - EXTERNAL DLARF, DLARFG, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input arguments -* - INFO = 0 - IF( M.LT.0 ) THEN - INFO = -1 - ELSE IF( N.LT.0 ) THEN - INFO = -2 - ELSE IF( LDA.LT.MAX( 1, M ) ) THEN - INFO = -4 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DGEQR2', -INFO ) - RETURN - END IF -* - K = MIN( M, N ) -* - DO 10 I = 1, K -* -* Generate elementary reflector H(i) to annihilate A(i+1:m,i) -* - CALL DLARFG( M-I+1, A( I, I ), A( MIN( I+1, M ), I ), 1, - $ TAU( I ) ) - IF( I.LT.N ) THEN -* -* Apply H(i) to A(i:m,i+1:n) from the left -* - AII = A( I, I ) - A( I, I ) = ONE - CALL DLARF( 'Left', M-I+1, N-I, A( I, I ), 1, TAU( I ), - $ A( I, I+1 ), LDA, WORK ) - A( I, I ) = AII - END IF - 10 CONTINUE - RETURN -* -* End of DGEQR2 -* - END diff --git a/Cantera/ext/lapack/dgeqrf.f b/Cantera/ext/lapack/dgeqrf.f deleted file mode 100755 index 90aeae8ad..000000000 --- a/Cantera/ext/lapack/dgeqrf.f +++ /dev/null @@ -1,187 +0,0 @@ - SUBROUTINE DGEQRF( M, N, A, LDA, TAU, WORK, LWORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - INTEGER INFO, LDA, LWORK, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( LWORK ) -* .. -* -* Purpose -* ======= -* -* DGEQRF computes a QR factorization of a real M-by-N matrix A: -* A = Q * R. -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows of the matrix A. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix A. N >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the M-by-N matrix A. -* On exit, the elements on and above the diagonal of the array -* contain the min(M,N)-by-N upper trapezoidal matrix R (R is -* upper triangular if m >= n); the elements below the diagonal, -* with the array TAU, represent the orthogonal matrix Q as a -* product of min(m,n) elementary reflectors (see Further -* Details). -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,M). -* -* TAU (output) DOUBLE PRECISION array, dimension (min(M,N)) -* The scalar factors of the elementary reflectors (see Further -* Details). -* -* WORK (workspace/output) DOUBLE PRECISION array, dimension (LWORK) -* On exit, if INFO = 0, WORK(1) returns the optimal LWORK. -* -* LWORK (input) INTEGER -* The dimension of the array WORK. LWORK >= max(1,N). -* For optimum performance LWORK >= N*NB, where NB is -* the optimal blocksize. -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* -* Further Details -* =============== -* -* The matrix Q is represented as a product of elementary reflectors -* -* Q = H(1) H(2) . . . H(k), where k = min(m,n). -* -* Each H(i) has the form -* -* H(i) = I - tau * v * v' -* -* where tau is a real scalar, and v is a real vector with -* v(1:i-1) = 0 and v(i) = 1; v(i+1:m) is stored on exit in A(i+1:m,i), -* and tau in TAU(i). -* -* ===================================================================== -* -* .. Local Scalars .. - INTEGER I, IB, IINFO, IWS, K, LDWORK, NB, NBMIN, NX -* .. -* .. External Subroutines .. - EXTERNAL DGEQR2, DLARFB, DLARFT, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. External Functions .. - INTEGER ILAENV - EXTERNAL ILAENV -* .. -* .. Executable Statements .. -* -* Test the input arguments -* - INFO = 0 - IF( M.LT.0 ) THEN - INFO = -1 - ELSE IF( N.LT.0 ) THEN - INFO = -2 - ELSE IF( LDA.LT.MAX( 1, M ) ) THEN - INFO = -4 - ELSE IF( LWORK.LT.MAX( 1, N ) ) THEN - INFO = -7 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DGEQRF', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - K = MIN( M, N ) - IF( K.EQ.0 ) THEN - WORK( 1 ) = 1 - RETURN - END IF -* -* Determine the block size. -* - NB = ILAENV( 1, 'DGEQRF', ' ', M, N, -1, -1 ) - NBMIN = 2 - NX = 0 - IWS = N - IF( NB.GT.1 .AND. NB.LT.K ) THEN -* -* Determine when to cross over from blocked to unblocked code. -* - NX = MAX( 0, ILAENV( 3, 'DGEQRF', ' ', M, N, -1, -1 ) ) - IF( NX.LT.K ) THEN -* -* Determine if workspace is large enough for blocked code. -* - LDWORK = N - IWS = LDWORK*NB - IF( LWORK.LT.IWS ) THEN -* -* Not enough workspace to use optimal NB: reduce NB and -* determine the minimum value of NB. -* - NB = LWORK / LDWORK - NBMIN = MAX( 2, ILAENV( 2, 'DGEQRF', ' ', M, N, -1, - $ -1 ) ) - END IF - END IF - END IF -* - IF( NB.GE.NBMIN .AND. NB.LT.K .AND. NX.LT.K ) THEN -* -* Use blocked code initially -* - DO 10 I = 1, K - NX, NB - IB = MIN( K-I+1, NB ) -* -* Compute the QR factorization of the current block -* A(i:m,i:i+ib-1) -* - CALL DGEQR2( M-I+1, IB, A( I, I ), LDA, TAU( I ), WORK, - $ IINFO ) - IF( I+IB.LE.N ) THEN -* -* Form the triangular factor of the block reflector -* H = H(i) H(i+1) . . . H(i+ib-1) -* - CALL DLARFT( 'Forward', 'Columnwise', M-I+1, IB, - $ A( I, I ), LDA, TAU( I ), WORK, LDWORK ) -* -* Apply H' to A(i:m,i+ib:n) from the left -* - CALL DLARFB( 'Left', 'Transpose', 'Forward', - $ 'Columnwise', M-I+1, N-I-IB+1, IB, - $ A( I, I ), LDA, WORK, LDWORK, A( I, I+IB ), - $ LDA, WORK( IB+1 ), LDWORK ) - END IF - 10 CONTINUE - ELSE - I = 1 - END IF -* -* Use unblocked code to factor the last or only block. -* - IF( I.LE.K ) - $ CALL DGEQR2( M-I+1, N-I+1, A( I, I ), LDA, TAU( I ), WORK, - $ IINFO ) -* - WORK( 1 ) = IWS - RETURN -* -* End of DGEQRF -* - END diff --git a/Cantera/ext/lapack/dgetf2.f b/Cantera/ext/lapack/dgetf2.f deleted file mode 100755 index 27610c487..000000000 --- a/Cantera/ext/lapack/dgetf2.f +++ /dev/null @@ -1,135 +0,0 @@ - SUBROUTINE DGETF2( M, N, A, LDA, IPIV, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* June 30, 1992 -* -* .. Scalar Arguments .. - INTEGER INFO, LDA, M, N -* .. -* .. Array Arguments .. - INTEGER IPIV( * ) - DOUBLE PRECISION A( LDA, * ) -* .. -* -* Purpose -* ======= -* -* DGETF2 computes an LU factorization of a general m-by-n matrix A -* using partial pivoting with row interchanges. -* -* The factorization has the form -* A = P * L * U -* where P is a permutation matrix, L is lower triangular with unit -* diagonal elements (lower trapezoidal if m > n), and U is upper -* triangular (upper trapezoidal if m < n). -* -* This is the right-looking Level 2 BLAS version of the algorithm. -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows of the matrix A. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix A. N >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the m by n matrix to be factored. -* On exit, the factors L and U from the factorization -* A = P*L*U; the unit diagonal elements of L are not stored. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,M). -* -* IPIV (output) INTEGER array, dimension (min(M,N)) -* The pivot indices; for 1 <= i <= min(M,N), row i of the -* matrix was interchanged with row IPIV(i). -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -k, the k-th argument had an illegal value -* > 0: if INFO = k, U(k,k) is exactly zero. The factorization -* has been completed, but the factor U is exactly -* singular, and division by zero will occur if it is used -* to solve a system of equations. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE, ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Local Scalars .. - INTEGER J, JP -* .. -* .. External Functions .. - INTEGER IDAMAX - EXTERNAL IDAMAX -* .. -* .. External Subroutines .. - EXTERNAL DGER, DSCAL, DSWAP, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF( M.LT.0 ) THEN - INFO = -1 - ELSE IF( N.LT.0 ) THEN - INFO = -2 - ELSE IF( LDA.LT.MAX( 1, M ) ) THEN - INFO = -4 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DGETF2', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( M.EQ.0 .OR. N.EQ.0 ) - $ RETURN -* - DO 10 J = 1, MIN( M, N ) -* -* Find pivot and test for singularity. -* - JP = J - 1 + IDAMAX( M-J+1, A( J, J ), 1 ) - IPIV( J ) = JP - IF( A( JP, J ).NE.ZERO ) THEN -* -* Apply the interchange to columns 1:N. -* - IF( JP.NE.J ) - $ CALL DSWAP( N, A( J, 1 ), LDA, A( JP, 1 ), LDA ) -* -* Compute elements J+1:M of J-th column. -* - IF( J.LT.M ) - $ CALL DSCAL( M-J, ONE / A( J, J ), A( J+1, J ), 1 ) -* - ELSE IF( INFO.EQ.0 ) THEN -* - INFO = J - END IF -* - IF( J.LT.MIN( M, N ) ) THEN -* -* Update trailing submatrix. -* - CALL DGER( M-J, N-J, -ONE, A( J+1, J ), 1, A( J, J+1 ), LDA, - $ A( J+1, J+1 ), LDA ) - END IF - 10 CONTINUE - RETURN -* -* End of DGETF2 -* - END diff --git a/Cantera/ext/lapack/dgetrf.f b/Cantera/ext/lapack/dgetrf.f deleted file mode 100755 index 7c7fbf22c..000000000 --- a/Cantera/ext/lapack/dgetrf.f +++ /dev/null @@ -1,160 +0,0 @@ - SUBROUTINE DGETRF( M, N, A, LDA, IPIV, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* March 31, 1993 -* -* .. Scalar Arguments .. - INTEGER INFO, LDA, M, N -* .. -* .. Array Arguments .. - INTEGER IPIV( * ) - DOUBLE PRECISION A( LDA, * ) -* .. -* -* Purpose -* ======= -* -* DGETRF computes an LU factorization of a general M-by-N matrix A -* using partial pivoting with row interchanges. -* -* The factorization has the form -* A = P * L * U -* where P is a permutation matrix, L is lower triangular with unit -* diagonal elements (lower trapezoidal if m > n), and U is upper -* triangular (upper trapezoidal if m < n). -* -* This is the right-looking Level 3 BLAS version of the algorithm. -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows of the matrix A. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix A. N >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the M-by-N matrix to be factored. -* On exit, the factors L and U from the factorization -* A = P*L*U; the unit diagonal elements of L are not stored. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,M). -* -* IPIV (output) INTEGER array, dimension (min(M,N)) -* The pivot indices; for 1 <= i <= min(M,N), row i of the -* matrix was interchanged with row IPIV(i). -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* > 0: if INFO = i, U(i,i) is exactly zero. The factorization -* has been completed, but the factor U is exactly -* singular, and division by zero will occur if it is used -* to solve a system of equations. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE - PARAMETER ( ONE = 1.0D+0 ) -* .. -* .. Local Scalars .. - INTEGER I, IINFO, J, JB, NB -* .. -* .. External Subroutines .. - EXTERNAL DGEMM, DGETF2, DLASWP, DTRSM, XERBLA -* .. -* .. External Functions .. - INTEGER ILAENV - EXTERNAL ILAENV -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - IF( M.LT.0 ) THEN - INFO = -1 - ELSE IF( N.LT.0 ) THEN - INFO = -2 - ELSE IF( LDA.LT.MAX( 1, M ) ) THEN - INFO = -4 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DGETRF', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( M.EQ.0 .OR. N.EQ.0 ) - $ RETURN -* -* Determine the block size for this environment. -* - NB = ILAENV( 1, 'DGETRF', ' ', M, N, -1, -1 ) - IF( NB.LE.1 .OR. NB.GE.MIN( M, N ) ) THEN -* -* Use unblocked code. -* - CALL DGETF2( M, N, A, LDA, IPIV, INFO ) - ELSE -* -* Use blocked code. -* - DO 20 J = 1, MIN( M, N ), NB - JB = MIN( MIN( M, N )-J+1, NB ) -* -* Factor diagonal and subdiagonal blocks and test for exact -* singularity. -* - CALL DGETF2( M-J+1, JB, A( J, J ), LDA, IPIV( J ), IINFO ) -* -* Adjust INFO and the pivot indices. -* - IF( INFO.EQ.0 .AND. IINFO.GT.0 ) - $ INFO = IINFO + J - 1 - DO 10 I = J, MIN( M, J+JB-1 ) - IPIV( I ) = J - 1 + IPIV( I ) - 10 CONTINUE -* -* Apply interchanges to columns 1:J-1. -* - CALL DLASWP( J-1, A, LDA, J, J+JB-1, IPIV, 1 ) -* - IF( J+JB.LE.N ) THEN -* -* Apply interchanges to columns J+JB:N. -* - CALL DLASWP( N-J-JB+1, A( 1, J+JB ), LDA, J, J+JB-1, - $ IPIV, 1 ) -* -* Compute block row of U. -* - CALL DTRSM( 'Left', 'Lower', 'No transpose', 'Unit', JB, - $ N-J-JB+1, ONE, A( J, J ), LDA, A( J, J+JB ), - $ LDA ) - IF( J+JB.LE.M ) THEN -* -* Update trailing submatrix. -* - CALL DGEMM( 'No transpose', 'No transpose', M-J-JB+1, - $ N-J-JB+1, JB, -ONE, A( J+JB, J ), LDA, - $ A( J, J+JB ), LDA, ONE, A( J+JB, J+JB ), - $ LDA ) - END IF - END IF - 20 CONTINUE - END IF - RETURN -* -* End of DGETRF -* - END diff --git a/Cantera/ext/lapack/dgetri.f b/Cantera/ext/lapack/dgetri.f deleted file mode 100755 index efe21b7a0..000000000 --- a/Cantera/ext/lapack/dgetri.f +++ /dev/null @@ -1,801 +0,0 @@ - SUBROUTINE DGETRI( N, A, LDA, IPIV, WORK, LWORK, INFO ) -* -* -- LAPACK routine (version 3.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* June 30, 1999 -* -* .. Scalar Arguments .. - INTEGER INFO, LDA, LWORK, N -* .. -* .. Array Arguments .. - INTEGER IPIV( * ) - DOUBLE PRECISION A( LDA, * ), WORK( * ) -* .. -* -* Purpose -* ======= -* -* DGETRI computes the inverse of a matrix using the LU factorization -* computed by DGETRF. -* -* This method inverts U and then computes inv(A) by solving the system -* inv(A)*L = inv(U) for inv(A). -* -* Arguments -* ========= -* -* N (input) INTEGER -* The order of the matrix A. N >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the factors L and U from the factorization -* A = P*L*U as computed by DGETRF. -* On exit, if INFO = 0, the inverse of the original matrix A. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,N). -* -* IPIV (input) INTEGER array, dimension (N) -* The pivot indices from DGETRF; for 1<=i<=N, row i of the -* matrix was interchanged with row IPIV(i). -* -* WORK (workspace/output) DOUBLE PRECISION array, dimension (LWORK) -* On exit, if INFO=0, then WORK(1) returns the optimal LWORK. -* -* LWORK (input) INTEGER -* The dimension of the array WORK. LWORK >= max(1,N). -* For optimal performance LWORK >= N*NB, where NB is -* the optimal blocksize returned by ILAENV. -* -* If LWORK = -1, then a workspace query is assumed; the routine -* only calculates the optimal size of the WORK array, returns -* this value as the first entry of the WORK array, and no error -* message related to LWORK is issued by XERBLA. -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* > 0: if INFO = i, U(i,i) is exactly zero; the matrix is -* singular and its inverse could not be computed. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO, ONE - PARAMETER ( ZERO = 0.0D+0, ONE = 1.0D+0 ) -* .. -* .. Local Scalars .. - LOGICAL LQUERY - INTEGER I, IWS, J, JB, JJ, JP, LDWORK, LWKOPT, NB, - $ NBMIN, NN -* .. -* .. External Functions .. - INTEGER ILAENV - EXTERNAL ILAENV -* .. -* .. External Subroutines .. - EXTERNAL DGEMM, DGEMV, DSWAP, DTRSM, DTRTRI, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - NB = ILAENV( 1, 'DGETRI', ' ', N, -1, -1, -1 ) - LWKOPT = N*NB - WORK( 1 ) = LWKOPT - LQUERY = ( LWORK.EQ.-1 ) - IF( N.LT.0 ) THEN - INFO = -1 - ELSE IF( LDA.LT.MAX( 1, N ) ) THEN - INFO = -3 - ELSE IF( LWORK.LT.MAX( 1, N ) .AND. .NOT.LQUERY ) THEN - INFO = -6 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DGETRI', -INFO ) - RETURN - ELSE IF( LQUERY ) THEN - RETURN - END IF -* -* Quick return if possible -* - IF( N.EQ.0 ) - $ RETURN -* -* Form inv(U). If INFO > 0 from DTRTRI, then U is singular, -* and the inverse is not computed. -* - CALL DTRTRI( 'Upper', 'Non-unit', N, A, LDA, INFO ) - IF( INFO.GT.0 ) - $ RETURN -* - NBMIN = 2 - LDWORK = N - IF( NB.GT.1 .AND. NB.LT.N ) THEN - IWS = MAX( LDWORK*NB, 1 ) - IF( LWORK.LT.IWS ) THEN - NB = LWORK / LDWORK - NBMIN = MAX( 2, ILAENV( 2, 'DGETRI', ' ', N, -1, -1, -1 ) ) - END IF - ELSE - IWS = N - END IF -* -* Solve the equation inv(A)*L = inv(U) for inv(A). -* - IF( NB.LT.NBMIN .OR. NB.GE.N ) THEN -* -* Use unblocked code. -* - DO 20 J = N, 1, -1 -* -* Copy current column of L to WORK and replace with zeros. -* - DO 10 I = J + 1, N - WORK( I ) = A( I, J ) - A( I, J ) = ZERO - 10 CONTINUE -* -* Compute current column of inv(A). -* - IF( J.LT.N ) - $ CALL DGEMV( 'No transpose', N, N-J, -ONE, A( 1, J+1 ), - $ LDA, WORK( J+1 ), 1, ONE, A( 1, J ), 1 ) - 20 CONTINUE - ELSE -* -* Use blocked code. -* - NN = ( ( N-1 ) / NB )*NB + 1 - DO 50 J = NN, 1, -NB - JB = MIN( NB, N-J+1 ) -* -* Copy current block column of L to WORK and replace with -* zeros. -* - DO 40 JJ = J, J + JB - 1 - DO 30 I = JJ + 1, N - WORK( I+( JJ-J )*LDWORK ) = A( I, JJ ) - A( I, JJ ) = ZERO - 30 CONTINUE - 40 CONTINUE -* -* Compute current block column of inv(A). -* - IF( J+JB.LE.N ) - $ CALL DGEMM( 'No transpose', 'No transpose', N, JB, - $ N-J-JB+1, -ONE, A( 1, J+JB ), LDA, - $ WORK( J+JB ), LDWORK, ONE, A( 1, J ), LDA ) - CALL DTRSM( 'Right', 'Lower', 'No transpose', 'Unit', N, JB, - $ ONE, WORK( J ), LDWORK, A( 1, J ), LDA ) - 50 CONTINUE - END IF -* -* Apply column interchanges. -* - DO 60 J = N - 1, 1, -1 - JP = IPIV( J ) - IF( JP.NE.J ) - $ CALL DSWAP( N, A( 1, J ), 1, A( 1, JP ), 1 ) - 60 CONTINUE -* - WORK( 1 ) = IWS - RETURN -* -* End of DGETRI -* - END - SUBROUTINE DTRTI2( UPLO, DIAG, N, A, LDA, INFO ) -* -* -- LAPACK routine (version 3.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - CHARACTER DIAG, UPLO - INTEGER INFO, LDA, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ) -* .. -* -* Purpose -* ======= -* -* DTRTI2 computes the inverse of a real upper or lower triangular -* matrix. -* -* This is the Level 2 BLAS version of the algorithm. -* -* Arguments -* ========= -* -* UPLO (input) CHARACTER*1 -* Specifies whether the matrix A is upper or lower triangular. -* = 'U': Upper triangular -* = 'L': Lower triangular -* -* DIAG (input) CHARACTER*1 -* Specifies whether or not the matrix A is unit triangular. -* = 'N': Non-unit triangular -* = 'U': Unit triangular -* -* N (input) INTEGER -* The order of the matrix A. N >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the triangular matrix A. If UPLO = 'U', the -* leading n by n upper triangular part of the array A contains -* the upper triangular matrix, and the strictly lower -* triangular part of A is not referenced. If UPLO = 'L', the -* leading n by n lower triangular part of the array A contains -* the lower triangular matrix, and the strictly upper -* triangular part of A is not referenced. If DIAG = 'U', the -* diagonal elements of A are also not referenced and are -* assumed to be 1. -* -* On exit, the (triangular) inverse of the original matrix, in -* the same storage format. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,N). -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -k, the k-th argument had an illegal value -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE - PARAMETER ( ONE = 1.0D+0 ) -* .. -* .. Local Scalars .. - LOGICAL NOUNIT, UPPER - INTEGER J - DOUBLE PRECISION AJJ -* .. -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. -* .. External Subroutines .. - EXTERNAL DSCAL, DTRMV, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - UPPER = LSAME( UPLO, 'U' ) - NOUNIT = LSAME( DIAG, 'N' ) - IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN - INFO = -1 - ELSE IF( .NOT.NOUNIT .AND. .NOT.LSAME( DIAG, 'U' ) ) THEN - INFO = -2 - ELSE IF( N.LT.0 ) THEN - INFO = -3 - ELSE IF( LDA.LT.MAX( 1, N ) ) THEN - INFO = -5 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DTRTI2', -INFO ) - RETURN - END IF -* - IF( UPPER ) THEN -* -* Compute inverse of upper triangular matrix. -* - DO 10 J = 1, N - IF( NOUNIT ) THEN - A( J, J ) = ONE / A( J, J ) - AJJ = -A( J, J ) - ELSE - AJJ = -ONE - END IF -* -* Compute elements 1:j-1 of j-th column. -* - CALL DTRMV( 'Upper', 'No transpose', DIAG, J-1, A, LDA, - $ A( 1, J ), 1 ) - CALL DSCAL( J-1, AJJ, A( 1, J ), 1 ) - 10 CONTINUE - ELSE -* -* Compute inverse of lower triangular matrix. -* - DO 20 J = N, 1, -1 - IF( NOUNIT ) THEN - A( J, J ) = ONE / A( J, J ) - AJJ = -A( J, J ) - ELSE - AJJ = -ONE - END IF - IF( J.LT.N ) THEN -* -* Compute elements j+1:n of j-th column. -* - CALL DTRMV( 'Lower', 'No transpose', DIAG, N-J, - $ A( J+1, J+1 ), LDA, A( J+1, J ), 1 ) - CALL DSCAL( N-J, AJJ, A( J+1, J ), 1 ) - END IF - 20 CONTINUE - END IF -* - RETURN -* -* End of DTRTI2 -* - END - SUBROUTINE DTRTRI( UPLO, DIAG, N, A, LDA, INFO ) -* -* -- LAPACK routine (version 3.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* March 31, 1993 -* -* .. Scalar Arguments .. - CHARACTER DIAG, UPLO - INTEGER INFO, LDA, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ) -* .. -* -* Purpose -* ======= -* -* DTRTRI computes the inverse of a real upper or lower triangular -* matrix A. -* -* This is the Level 3 BLAS version of the algorithm. -* -* Arguments -* ========= -* -* UPLO (input) CHARACTER*1 -* = 'U': A is upper triangular; -* = 'L': A is lower triangular. -* -* DIAG (input) CHARACTER*1 -* = 'N': A is non-unit triangular; -* = 'U': A is unit triangular. -* -* N (input) INTEGER -* The order of the matrix A. N >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the triangular matrix A. If UPLO = 'U', the -* leading N-by-N upper triangular part of the array A contains -* the upper triangular matrix, and the strictly lower -* triangular part of A is not referenced. If UPLO = 'L', the -* leading N-by-N lower triangular part of the array A contains -* the lower triangular matrix, and the strictly upper -* triangular part of A is not referenced. If DIAG = 'U', the -* diagonal elements of A are also not referenced and are -* assumed to be 1. -* On exit, the (triangular) inverse of the original matrix, in -* the same storage format. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,N). -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* > 0: if INFO = i, A(i,i) is exactly zero. The triangular -* matrix is singular and its inverse can not be computed. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE, ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Local Scalars .. - LOGICAL NOUNIT, UPPER - INTEGER J, JB, NB, NN -* .. -* .. External Functions .. - LOGICAL LSAME - INTEGER ILAENV - EXTERNAL LSAME, ILAENV -* .. -* .. External Subroutines .. - EXTERNAL DTRMM, DTRSM, DTRTI2, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - UPPER = LSAME( UPLO, 'U' ) - NOUNIT = LSAME( DIAG, 'N' ) - IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN - INFO = -1 - ELSE IF( .NOT.NOUNIT .AND. .NOT.LSAME( DIAG, 'U' ) ) THEN - INFO = -2 - ELSE IF( N.LT.0 ) THEN - INFO = -3 - ELSE IF( LDA.LT.MAX( 1, N ) ) THEN - INFO = -5 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DTRTRI', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( N.EQ.0 ) - $ RETURN -* -* Check for singularity if non-unit. -* - IF( NOUNIT ) THEN - DO 10 INFO = 1, N - IF( A( INFO, INFO ).EQ.ZERO ) - $ RETURN - 10 CONTINUE - INFO = 0 - END IF -* -* Determine the block size for this environment. -* - NB = ILAENV( 1, 'DTRTRI', UPLO // DIAG, N, -1, -1, -1 ) - IF( NB.LE.1 .OR. NB.GE.N ) THEN -* -* Use unblocked code -* - CALL DTRTI2( UPLO, DIAG, N, A, LDA, INFO ) - ELSE -* -* Use blocked code -* - IF( UPPER ) THEN -* -* Compute inverse of upper triangular matrix -* - DO 20 J = 1, N, NB - JB = MIN( NB, N-J+1 ) -* -* Compute rows 1:j-1 of current block column -* - CALL DTRMM( 'Left', 'Upper', 'No transpose', DIAG, J-1, - $ JB, ONE, A, LDA, A( 1, J ), LDA ) - CALL DTRSM( 'Right', 'Upper', 'No transpose', DIAG, J-1, - $ JB, -ONE, A( J, J ), LDA, A( 1, J ), LDA ) -* -* Compute inverse of current diagonal block -* - CALL DTRTI2( 'Upper', DIAG, JB, A( J, J ), LDA, INFO ) - 20 CONTINUE - ELSE -* -* Compute inverse of lower triangular matrix -* - NN = ( ( N-1 ) / NB )*NB + 1 - DO 30 J = NN, 1, -NB - JB = MIN( NB, N-J+1 ) - IF( J+JB.LE.N ) THEN -* -* Compute rows j+jb:n of current block column -* - CALL DTRMM( 'Left', 'Lower', 'No transpose', DIAG, - $ N-J-JB+1, JB, ONE, A( J+JB, J+JB ), LDA, - $ A( J+JB, J ), LDA ) - CALL DTRSM( 'Right', 'Lower', 'No transpose', DIAG, - $ N-J-JB+1, JB, -ONE, A( J, J ), LDA, - $ A( J+JB, J ), LDA ) - END IF -* -* Compute inverse of current diagonal block -* - CALL DTRTI2( 'Lower', DIAG, JB, A( J, J ), LDA, INFO ) - 30 CONTINUE - END IF - END IF -* - RETURN -* -* End of DTRTRI -* - END - INTEGER FUNCTION IEEECK( ISPEC, ZERO, ONE ) -* -* -- LAPACK auxiliary routine (version 3.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* June 30, 1998 -* -* .. Scalar Arguments .. - INTEGER ISPEC - REAL ONE, ZERO -* .. -* -* Purpose -* ======= -* -* IEEECK is called from the ILAENV to verify that Infinity and -* possibly NaN arithmetic is safe (i.e. will not trap). -* -* Arguments -* ========= -* -* ISPEC (input) INTEGER -* Specifies whether to test just for inifinity arithmetic -* or whether to test for infinity and NaN arithmetic. -* = 0: Verify infinity arithmetic only. -* = 1: Verify infinity and NaN arithmetic. -* -* ZERO (input) REAL -* Must contain the value 0.0 -* This is passed to prevent the compiler from optimizing -* away this code. -* -* ONE (input) REAL -* Must contain the value 1.0 -* This is passed to prevent the compiler from optimizing -* away this code. -* -* RETURN VALUE: INTEGER -* = 0: Arithmetic failed to produce the correct answers -* = 1: Arithmetic produced the correct answers -* -* .. Local Scalars .. - REAL NAN1, NAN2, NAN3, NAN4, NAN5, NAN6, NEGINF, - $ NEGZRO, NEWZRO, POSINF -* .. -* .. Executable Statements .. - IEEECK = 1 -* - POSINF = ONE / ZERO - IF( POSINF.LE.ONE ) THEN - IEEECK = 0 - RETURN - END IF -* - NEGINF = -ONE / ZERO - IF( NEGINF.GE.ZERO ) THEN - IEEECK = 0 - RETURN - END IF -* - NEGZRO = ONE / ( NEGINF+ONE ) - IF( NEGZRO.NE.ZERO ) THEN - IEEECK = 0 - RETURN - END IF -* - NEGINF = ONE / NEGZRO - IF( NEGINF.GE.ZERO ) THEN - IEEECK = 0 - RETURN - END IF -* - NEWZRO = NEGZRO + ZERO - IF( NEWZRO.NE.ZERO ) THEN - IEEECK = 0 - RETURN - END IF -* - POSINF = ONE / NEWZRO - IF( POSINF.LE.ONE ) THEN - IEEECK = 0 - RETURN - END IF -* - NEGINF = NEGINF*POSINF - IF( NEGINF.GE.ZERO ) THEN - IEEECK = 0 - RETURN - END IF -* - POSINF = POSINF*POSINF - IF( POSINF.LE.ONE ) THEN - IEEECK = 0 - RETURN - END IF -* -* -* -* -* Return if we were only asked to check infinity arithmetic -* - IF( ISPEC.EQ.0 ) - $ RETURN -* - NAN1 = POSINF + NEGINF -* - NAN2 = POSINF / NEGINF -* - NAN3 = POSINF / POSINF -* - NAN4 = POSINF*ZERO -* - NAN5 = NEGINF*NEGZRO -* - NAN6 = NAN5*0.0 -* - IF( NAN1.EQ.NAN1 ) THEN - IEEECK = 0 - RETURN - END IF -* - IF( NAN2.EQ.NAN2 ) THEN - IEEECK = 0 - RETURN - END IF -* - IF( NAN3.EQ.NAN3 ) THEN - IEEECK = 0 - RETURN - END IF -* - IF( NAN4.EQ.NAN4 ) THEN - IEEECK = 0 - RETURN - END IF -* - IF( NAN5.EQ.NAN5 ) THEN - IEEECK = 0 - RETURN - END IF -* - IF( NAN6.EQ.NAN6 ) THEN - IEEECK = 0 - RETURN - END IF -* - RETURN - END - -c END - -c LOGICAL FUNCTION LSAME( CA, CB ) -* -* -- LAPACK auxiliary routine (version 3.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. -c CHARACTER CA, CB -* .. -* -* Purpose -* ======= -* -* LSAME returns .TRUE. if CA is the same letter as CB regardless of -* case. -* -* Arguments -* ========= -* -* CA (input) CHARACTER*1 -* CB (input) CHARACTER*1 -* CA and CB specify the single characters to be compared. -* -* ===================================================================== -* -* .. Intrinsic Functions .. -c INTRINSIC ICHAR -* .. -* .. Local Scalars .. -c INTEGER INTA, INTB, ZCODE -* .. -* .. Executable Statements .. -* -* Test if the characters are equal -* -c LSAME = CA.EQ.CB -c IF( LSAME ) -c $ RETURN -* -* Now test for equivalence if both characters are alphabetic. -* -c ZCODE = ICHAR( 'Z' ) -* -* Use 'Z' rather than 'A' so that ASCII can be detected on Prime -* machines, on which ICHAR returns a value with bit 8 set. -* ICHAR('A') on Prime machines returns 193 which is the same as -* ICHAR('A') on an EBCDIC machine. -* -c INTA = ICHAR( CA ) -c INTB = ICHAR( CB ) -* -c IF( ZCODE.EQ.90 .OR. ZCODE.EQ.122 ) THEN -* -* ASCII is assumed - ZCODE is the ASCII code of either lower or -* upper case 'Z'. -* -c IF( INTA.GE.97 .AND. INTA.LE.122 ) INTA = INTA - 32 -c IF( INTB.GE.97 .AND. INTB.LE.122 ) INTB = INTB - 32 -* -c ELSE IF( ZCODE.EQ.233 .OR. ZCODE.EQ.169 ) THEN -* -* EBCDIC is assumed - ZCODE is the EBCDIC code of either lower or -* upper case 'Z'. -* -c IF( INTA.GE.129 .AND. INTA.LE.137 .OR. -c $ INTA.GE.145 .AND. INTA.LE.153 .OR. -c $ INTA.GE.162 .AND. INTA.LE.169 ) INTA = INTA + 64 -c IF( INTB.GE.129 .AND. INTB.LE.137 .OR. -c $ INTB.GE.145 .AND. INTB.LE.153 .OR. -c $ INTB.GE.162 .AND. INTB.LE.169 ) INTB = INTB + 64 -* -c ELSE IF( ZCODE.EQ.218 .OR. ZCODE.EQ.250 ) THEN -* -* ASCII is assumed, on Prime machines - ZCODE is the ASCII code -* plus 128 of either lower or upper case 'Z'. -* -c IF( INTA.GE.225 .AND. INTA.LE.250 ) INTA = INTA - 32 -c IF( INTB.GE.225 .AND. INTB.LE.250 ) INTB = INTB - 32 -c END IF -c LSAME = INTA.EQ.INTB -* -* RETURN -* -* End of LSAME -* -c END -c$$$ SUBROUTINE XERBLA( SRNAME, INFO ) -c$$$* -c$$$* -- LAPACK auxiliary routine (version 3.0) -- -c$$$* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -c$$$* Courant Institute, Argonne National Lab, and Rice University -c$$$* September 30, 1994 -c$$$* -c$$$* .. Scalar Arguments .. -c$$$ CHARACTER*6 SRNAME -c$$$ INTEGER INFO -c$$$* .. -c$$$* -c$$$* Purpose -c$$$* ======= -c$$$* -c$$$* XERBLA is an error handler for the LAPACK routines. -c$$$* It is called by an LAPACK routine if an input parameter has an -c$$$* invalid value. A message is printed and execution stops. -c$$$* -c$$$* Installers may consider modifying the STOP statement in order to -c$$$* call system-specific exception-handling facilities. -c$$$* -c$$$* Arguments -c$$$* ========= -c$$$* -c$$$* SRNAME (input) CHARACTER*6 -c$$$* The name of the routine which called XERBLA. -c$$$* -c$$$* INFO (input) INTEGER -c$$$* The position of the invalid parameter in the parameter list -c$$$* of the calling routine. -c$$$* -c$$$* ===================================================================== -c$$$* -c$$$* .. Executable Statements .. -c$$$* -c$$$ WRITE( *, FMT = 9999 )SRNAME, INFO -c$$$* -c$$$ STOP -c$$$* -c$$$ 9999 FORMAT( ' ** On entry to ', A6, ' parameter number ', I2, ' had ', -c$$$ $ 'an illegal value' ) -c$$$* -c$$$* End of XERBLA -c$$$* -c$$$ END \ No newline at end of file diff --git a/Cantera/ext/lapack/dgetrs.f b/Cantera/ext/lapack/dgetrs.f deleted file mode 100755 index 1d0db1e91..000000000 --- a/Cantera/ext/lapack/dgetrs.f +++ /dev/null @@ -1,150 +0,0 @@ - SUBROUTINE DGETRS( TRANS, N, NRHS, A, LDA, IPIV, B, LDB, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* March 31, 1993 -* -* .. Scalar Arguments .. - CHARACTER TRANS - INTEGER INFO, LDA, LDB, N, NRHS -* .. -* .. Array Arguments .. - INTEGER IPIV( * ) - DOUBLE PRECISION A( LDA, * ), B( LDB, * ) -* .. -* -* Purpose -* ======= -* -* DGETRS solves a system of linear equations -* A * X = B or A' * X = B -* with a general N-by-N matrix A using the LU factorization computed -* by DGETRF. -* -* Arguments -* ========= -* -* TRANS (input) CHARACTER*1 -* Specifies the form of the system of equations: -* = 'N': A * X = B (No transpose) -* = 'T': A'* X = B (Transpose) -* = 'C': A'* X = B (Conjugate transpose = Transpose) -* -* N (input) INTEGER -* The order of the matrix A. N >= 0. -* -* NRHS (input) INTEGER -* The number of right hand sides, i.e., the number of columns -* of the matrix B. NRHS >= 0. -* -* A (input) DOUBLE PRECISION array, dimension (LDA,N) -* The factors L and U from the factorization A = P*L*U -* as computed by DGETRF. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,N). -* -* IPIV (input) INTEGER array, dimension (N) -* The pivot indices from DGETRF; for 1<=i<=N, row i of the -* matrix was interchanged with row IPIV(i). -* -* B (input/output) DOUBLE PRECISION array, dimension (LDB,NRHS) -* On entry, the right hand side matrix B. -* On exit, the solution matrix X. -* -* LDB (input) INTEGER -* The leading dimension of the array B. LDB >= max(1,N). -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE - PARAMETER ( ONE = 1.0D+0 ) -* .. -* .. Local Scalars .. - LOGICAL NOTRAN -* .. -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. -* .. External Subroutines .. - EXTERNAL DLASWP, DTRSM, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. -* .. Executable Statements .. -* -* Test the input parameters. -* - INFO = 0 - NOTRAN = LSAME( TRANS, 'N' ) - IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'T' ) .AND. .NOT. - $ LSAME( TRANS, 'C' ) ) THEN - INFO = -1 - ELSE IF( N.LT.0 ) THEN - INFO = -2 - ELSE IF( NRHS.LT.0 ) THEN - INFO = -3 - ELSE IF( LDA.LT.MAX( 1, N ) ) THEN - INFO = -5 - ELSE IF( LDB.LT.MAX( 1, N ) ) THEN - INFO = -8 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DGETRS', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( N.EQ.0 .OR. NRHS.EQ.0 ) - $ RETURN -* - IF( NOTRAN ) THEN -* -* Solve A * X = B. -* -* Apply row interchanges to the right hand sides. -* - CALL DLASWP( NRHS, B, LDB, 1, N, IPIV, 1 ) -* -* Solve L*X = B, overwriting B with X. -* - CALL DTRSM( 'Left', 'Lower', 'No transpose', 'Unit', N, NRHS, - $ ONE, A, LDA, B, LDB ) -* -* Solve U*X = B, overwriting B with X. -* - CALL DTRSM( 'Left', 'Upper', 'No transpose', 'Non-unit', N, - $ NRHS, ONE, A, LDA, B, LDB ) - ELSE -* -* Solve A' * X = B. -* -* Solve U'*X = B, overwriting B with X. -* - CALL DTRSM( 'Left', 'Upper', 'Transpose', 'Non-unit', N, NRHS, - $ ONE, A, LDA, B, LDB ) -* -* Solve L'*X = B, overwriting B with X. -* - CALL DTRSM( 'Left', 'Lower', 'Transpose', 'Unit', N, NRHS, ONE, - $ A, LDA, B, LDB ) -* -* Apply row interchanges to the solution vectors. -* - CALL DLASWP( NRHS, B, LDB, 1, N, IPIV, -1 ) - END IF -* - RETURN -* -* End of DGETRS -* - END diff --git a/Cantera/ext/lapack/dlabad.f b/Cantera/ext/lapack/dlabad.f deleted file mode 100755 index 1f453d222..000000000 --- a/Cantera/ext/lapack/dlabad.f +++ /dev/null @@ -1,56 +0,0 @@ - SUBROUTINE DLABAD( SMALL, LARGE ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* October 31, 1992 -* -* .. Scalar Arguments .. - DOUBLE PRECISION LARGE, SMALL -* .. -* -* Purpose -* ======= -* -* DLABAD takes as input the values computed by SLAMCH for underflow and -* overflow, and returns the square root of each of these values if the -* log of LARGE is sufficiently large. This subroutine is intended to -* identify machines with a large exponent range, such as the Crays, and -* redefine the underflow and overflow limits to be the square roots of -* the values computed by DLAMCH. This subroutine is needed because -* DLAMCH does not compensate for poor arithmetic in the upper half of -* the exponent range, as is found on a Cray. -* -* Arguments -* ========= -* -* SMALL (input/output) DOUBLE PRECISION -* On entry, the underflow threshold as computed by DLAMCH. -* On exit, if LOG10(LARGE) is sufficiently large, the square -* root of SMALL, otherwise unchanged. -* -* LARGE (input/output) DOUBLE PRECISION -* On entry, the overflow threshold as computed by DLAMCH. -* On exit, if LOG10(LARGE) is sufficiently large, the square -* root of LARGE, otherwise unchanged. -* -* ===================================================================== -* -* .. Intrinsic Functions .. - INTRINSIC LOG10, SQRT -* .. -* .. Executable Statements .. -* -* If it looks like we're on a Cray, take the square root of -* SMALL and LARGE to avoid overflow and underflow problems. -* - IF( LOG10( LARGE ).GT.2000.D0 ) THEN - SMALL = SQRT( SMALL ) - LARGE = SQRT( LARGE ) - END IF -* - RETURN -* -* End of DLABAD -* - END diff --git a/Cantera/ext/lapack/dlabrd.f b/Cantera/ext/lapack/dlabrd.f deleted file mode 100755 index 50d333af4..000000000 --- a/Cantera/ext/lapack/dlabrd.f +++ /dev/null @@ -1,291 +0,0 @@ - SUBROUTINE DLABRD( M, N, NB, A, LDA, D, E, TAUQ, TAUP, X, LDX, Y, - $ LDY ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - INTEGER LDA, LDX, LDY, M, N, NB -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), D( * ), E( * ), TAUP( * ), - $ TAUQ( * ), X( LDX, * ), Y( LDY, * ) -* .. -* -* Purpose -* ======= -* -* DLABRD reduces the first NB rows and columns of a real general -* m by n matrix A to upper or lower bidiagonal form by an orthogonal -* transformation Q' * A * P, and returns the matrices X and Y which -* are needed to apply the transformation to the unreduced part of A. -* -* If m >= n, A is reduced to upper bidiagonal form; if m < n, to lower -* bidiagonal form. -* -* This is an auxiliary routine called by DGEBRD -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows in the matrix A. -* -* N (input) INTEGER -* The number of columns in the matrix A. -* -* NB (input) INTEGER -* The number of leading rows and columns of A to be reduced. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the m by n general matrix to be reduced. -* On exit, the first NB rows and columns of the matrix are -* overwritten; the rest of the array is unchanged. -* If m >= n, elements on and below the diagonal in the first NB -* columns, with the array TAUQ, represent the orthogonal -* matrix Q as a product of elementary reflectors; and -* elements above the diagonal in the first NB rows, with the -* array TAUP, represent the orthogonal matrix P as a product -* of elementary reflectors. -* If m < n, elements below the diagonal in the first NB -* columns, with the array TAUQ, represent the orthogonal -* matrix Q as a product of elementary reflectors, and -* elements on and above the diagonal in the first NB rows, -* with the array TAUP, represent the orthogonal matrix P as -* a product of elementary reflectors. -* See Further Details. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,M). -* -* D (output) DOUBLE PRECISION array, dimension (NB) -* The diagonal elements of the first NB rows and columns of -* the reduced matrix. D(i) = A(i,i). -* -* E (output) DOUBLE PRECISION array, dimension (NB) -* The off-diagonal elements of the first NB rows and columns of -* the reduced matrix. -* -* TAUQ (output) DOUBLE PRECISION array dimension (NB) -* The scalar factors of the elementary reflectors which -* represent the orthogonal matrix Q. See Further Details. -* -* TAUP (output) DOUBLE PRECISION array, dimension (NB) -* The scalar factors of the elementary reflectors which -* represent the orthogonal matrix P. See Further Details. -* -* X (output) DOUBLE PRECISION array, dimension (LDX,NB) -* The m-by-nb matrix X required to update the unreduced part -* of A. -* -* LDX (input) INTEGER -* The leading dimension of the array X. LDX >= M. -* -* Y (output) DOUBLE PRECISION array, dimension (LDY,NB) -* The n-by-nb matrix Y required to update the unreduced part -* of A. -* -* LDY (output) INTEGER -* The leading dimension of the array Y. LDY >= N. -* -* Further Details -* =============== -* -* The matrices Q and P are represented as products of elementary -* reflectors: -* -* Q = H(1) H(2) . . . H(nb) and P = G(1) G(2) . . . G(nb) -* -* Each H(i) and G(i) has the form: -* -* H(i) = I - tauq * v * v' and G(i) = I - taup * u * u' -* -* where tauq and taup are real scalars, and v and u are real vectors. -* -* If m >= n, v(1:i-1) = 0, v(i) = 1, and v(i:m) is stored on exit in -* A(i:m,i); u(1:i) = 0, u(i+1) = 1, and u(i+1:n) is stored on exit in -* A(i,i+1:n); tauq is stored in TAUQ(i) and taup in TAUP(i). -* -* If m < n, v(1:i) = 0, v(i+1) = 1, and v(i+1:m) is stored on exit in -* A(i+2:m,i); u(1:i-1) = 0, u(i) = 1, and u(i:n) is stored on exit in -* A(i,i+1:n); tauq is stored in TAUQ(i) and taup in TAUP(i). -* -* The elements of the vectors v and u together form the m-by-nb matrix -* V and the nb-by-n matrix U' which are needed, with X and Y, to apply -* the transformation to the unreduced part of the matrix, using a block -* update of the form: A := A - V*Y' - X*U'. -* -* The contents of A on exit are illustrated by the following examples -* with nb = 2: -* -* m = 6 and n = 5 (m > n): m = 5 and n = 6 (m < n): -* -* ( 1 1 u1 u1 u1 ) ( 1 u1 u1 u1 u1 u1 ) -* ( v1 1 1 u2 u2 ) ( 1 1 u2 u2 u2 u2 ) -* ( v1 v2 a a a ) ( v1 1 a a a a ) -* ( v1 v2 a a a ) ( v1 v2 a a a a ) -* ( v1 v2 a a a ) ( v1 v2 a a a a ) -* ( v1 v2 a a a ) -* -* where a denotes an element of the original matrix which is unchanged, -* vi denotes an element of the vector defining H(i), and ui an element -* of the vector defining G(i). -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO, ONE - PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0 ) -* .. -* .. Local Scalars .. - INTEGER I -* .. -* .. External Subroutines .. - EXTERNAL DGEMV, DLARFG, DSCAL -* .. -* .. Intrinsic Functions .. - INTRINSIC MIN -* .. -* .. Executable Statements .. -* -* Quick return if possible -* - IF( M.LE.0 .OR. N.LE.0 ) - $ RETURN -* - IF( M.GE.N ) THEN -* -* Reduce to upper bidiagonal form -* - DO 10 I = 1, NB -* -* Update A(i:m,i) -* - CALL DGEMV( 'No transpose', M-I+1, I-1, -ONE, A( I, 1 ), - $ LDA, Y( I, 1 ), LDY, ONE, A( I, I ), 1 ) - CALL DGEMV( 'No transpose', M-I+1, I-1, -ONE, X( I, 1 ), - $ LDX, A( 1, I ), 1, ONE, A( I, I ), 1 ) -* -* Generate reflection Q(i) to annihilate A(i+1:m,i) -* - CALL DLARFG( M-I+1, A( I, I ), A( MIN( I+1, M ), I ), 1, - $ TAUQ( I ) ) - D( I ) = A( I, I ) - IF( I.LT.N ) THEN - A( I, I ) = ONE -* -* Compute Y(i+1:n,i) -* - CALL DGEMV( 'Transpose', M-I+1, N-I, ONE, A( I, I+1 ), - $ LDA, A( I, I ), 1, ZERO, Y( I+1, I ), 1 ) - CALL DGEMV( 'Transpose', M-I+1, I-1, ONE, A( I, 1 ), LDA, - $ A( I, I ), 1, ZERO, Y( 1, I ), 1 ) - CALL DGEMV( 'No transpose', N-I, I-1, -ONE, Y( I+1, 1 ), - $ LDY, Y( 1, I ), 1, ONE, Y( I+1, I ), 1 ) - CALL DGEMV( 'Transpose', M-I+1, I-1, ONE, X( I, 1 ), LDX, - $ A( I, I ), 1, ZERO, Y( 1, I ), 1 ) - CALL DGEMV( 'Transpose', I-1, N-I, -ONE, A( 1, I+1 ), - $ LDA, Y( 1, I ), 1, ONE, Y( I+1, I ), 1 ) - CALL DSCAL( N-I, TAUQ( I ), Y( I+1, I ), 1 ) -* -* Update A(i,i+1:n) -* - CALL DGEMV( 'No transpose', N-I, I, -ONE, Y( I+1, 1 ), - $ LDY, A( I, 1 ), LDA, ONE, A( I, I+1 ), LDA ) - CALL DGEMV( 'Transpose', I-1, N-I, -ONE, A( 1, I+1 ), - $ LDA, X( I, 1 ), LDX, ONE, A( I, I+1 ), LDA ) -* -* Generate reflection P(i) to annihilate A(i,i+2:n) -* - CALL DLARFG( N-I, A( I, I+1 ), A( I, MIN( I+2, N ) ), - $ LDA, TAUP( I ) ) - E( I ) = A( I, I+1 ) - A( I, I+1 ) = ONE -* -* Compute X(i+1:m,i) -* - CALL DGEMV( 'No transpose', M-I, N-I, ONE, A( I+1, I+1 ), - $ LDA, A( I, I+1 ), LDA, ZERO, X( I+1, I ), 1 ) - CALL DGEMV( 'Transpose', N-I, I, ONE, Y( I+1, 1 ), LDY, - $ A( I, I+1 ), LDA, ZERO, X( 1, I ), 1 ) - CALL DGEMV( 'No transpose', M-I, I, -ONE, A( I+1, 1 ), - $ LDA, X( 1, I ), 1, ONE, X( I+1, I ), 1 ) - CALL DGEMV( 'No transpose', I-1, N-I, ONE, A( 1, I+1 ), - $ LDA, A( I, I+1 ), LDA, ZERO, X( 1, I ), 1 ) - CALL DGEMV( 'No transpose', M-I, I-1, -ONE, X( I+1, 1 ), - $ LDX, X( 1, I ), 1, ONE, X( I+1, I ), 1 ) - CALL DSCAL( M-I, TAUP( I ), X( I+1, I ), 1 ) - END IF - 10 CONTINUE - ELSE -* -* Reduce to lower bidiagonal form -* - DO 20 I = 1, NB -* -* Update A(i,i:n) -* - CALL DGEMV( 'No transpose', N-I+1, I-1, -ONE, Y( I, 1 ), - $ LDY, A( I, 1 ), LDA, ONE, A( I, I ), LDA ) - CALL DGEMV( 'Transpose', I-1, N-I+1, -ONE, A( 1, I ), LDA, - $ X( I, 1 ), LDX, ONE, A( I, I ), LDA ) -* -* Generate reflection P(i) to annihilate A(i,i+1:n) -* - CALL DLARFG( N-I+1, A( I, I ), A( I, MIN( I+1, N ) ), LDA, - $ TAUP( I ) ) - D( I ) = A( I, I ) - IF( I.LT.M ) THEN - A( I, I ) = ONE -* -* Compute X(i+1:m,i) -* - CALL DGEMV( 'No transpose', M-I, N-I+1, ONE, A( I+1, I ), - $ LDA, A( I, I ), LDA, ZERO, X( I+1, I ), 1 ) - CALL DGEMV( 'Transpose', N-I+1, I-1, ONE, Y( I, 1 ), LDY, - $ A( I, I ), LDA, ZERO, X( 1, I ), 1 ) - CALL DGEMV( 'No transpose', M-I, I-1, -ONE, A( I+1, 1 ), - $ LDA, X( 1, I ), 1, ONE, X( I+1, I ), 1 ) - CALL DGEMV( 'No transpose', I-1, N-I+1, ONE, A( 1, I ), - $ LDA, A( I, I ), LDA, ZERO, X( 1, I ), 1 ) - CALL DGEMV( 'No transpose', M-I, I-1, -ONE, X( I+1, 1 ), - $ LDX, X( 1, I ), 1, ONE, X( I+1, I ), 1 ) - CALL DSCAL( M-I, TAUP( I ), X( I+1, I ), 1 ) -* -* Update A(i+1:m,i) -* - CALL DGEMV( 'No transpose', M-I, I-1, -ONE, A( I+1, 1 ), - $ LDA, Y( I, 1 ), LDY, ONE, A( I+1, I ), 1 ) - CALL DGEMV( 'No transpose', M-I, I, -ONE, X( I+1, 1 ), - $ LDX, A( 1, I ), 1, ONE, A( I+1, I ), 1 ) -* -* Generate reflection Q(i) to annihilate A(i+2:m,i) -* - CALL DLARFG( M-I, A( I+1, I ), A( MIN( I+2, M ), I ), 1, - $ TAUQ( I ) ) - E( I ) = A( I+1, I ) - A( I+1, I ) = ONE -* -* Compute Y(i+1:n,i) -* - CALL DGEMV( 'Transpose', M-I, N-I, ONE, A( I+1, I+1 ), - $ LDA, A( I+1, I ), 1, ZERO, Y( I+1, I ), 1 ) - CALL DGEMV( 'Transpose', M-I, I-1, ONE, A( I+1, 1 ), LDA, - $ A( I+1, I ), 1, ZERO, Y( 1, I ), 1 ) - CALL DGEMV( 'No transpose', N-I, I-1, -ONE, Y( I+1, 1 ), - $ LDY, Y( 1, I ), 1, ONE, Y( I+1, I ), 1 ) - CALL DGEMV( 'Transpose', M-I, I, ONE, X( I+1, 1 ), LDX, - $ A( I+1, I ), 1, ZERO, Y( 1, I ), 1 ) - CALL DGEMV( 'Transpose', I, N-I, -ONE, A( 1, I+1 ), LDA, - $ Y( 1, I ), 1, ONE, Y( I+1, I ), 1 ) - CALL DSCAL( N-I, TAUQ( I ), Y( I+1, I ), 1 ) - END IF - 20 CONTINUE - END IF - RETURN -* -* End of DLABRD -* - END diff --git a/Cantera/ext/lapack/dlacpy.f b/Cantera/ext/lapack/dlacpy.f deleted file mode 100755 index 6820d45fb..000000000 --- a/Cantera/ext/lapack/dlacpy.f +++ /dev/null @@ -1,88 +0,0 @@ - SUBROUTINE DLACPY( UPLO, M, N, A, LDA, B, LDB ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - CHARACTER UPLO - INTEGER LDA, LDB, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), B( LDB, * ) -* .. -* -* Purpose -* ======= -* -* DLACPY copies all or part of a two-dimensional matrix A to another -* matrix B. -* -* Arguments -* ========= -* -* UPLO (input) CHARACTER*1 -* Specifies the part of the matrix A to be copied to B. -* = 'U': Upper triangular part -* = 'L': Lower triangular part -* Otherwise: All of the matrix A -* -* M (input) INTEGER -* The number of rows of the matrix A. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix A. N >= 0. -* -* A (input) DOUBLE PRECISION array, dimension (LDA,N) -* The m by n matrix A. If UPLO = 'U', only the upper triangle -* or trapezoid is accessed; if UPLO = 'L', only the lower -* triangle or trapezoid is accessed. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,M). -* -* B (output) DOUBLE PRECISION array, dimension (LDB,N) -* On exit, B = A in the locations specified by UPLO. -* -* LDB (input) INTEGER -* The leading dimension of the array B. LDB >= max(1,M). -* -* ===================================================================== -* -* .. Local Scalars .. - INTEGER I, J -* .. -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. -* .. Intrinsic Functions .. - INTRINSIC MIN -* .. -* .. Executable Statements .. -* - IF( LSAME( UPLO, 'U' ) ) THEN - DO 20 J = 1, N - DO 10 I = 1, MIN( J, M ) - B( I, J ) = A( I, J ) - 10 CONTINUE - 20 CONTINUE - ELSE IF( LSAME( UPLO, 'L' ) ) THEN - DO 40 J = 1, N - DO 30 I = J, M - B( I, J ) = A( I, J ) - 30 CONTINUE - 40 CONTINUE - ELSE - DO 60 J = 1, N - DO 50 I = 1, M - B( I, J ) = A( I, J ) - 50 CONTINUE - 60 CONTINUE - END IF - RETURN -* -* End of DLACPY -* - END diff --git a/Cantera/ext/lapack/dlamch.f b/Cantera/ext/lapack/dlamch.f deleted file mode 100755 index e293aa8c7..000000000 --- a/Cantera/ext/lapack/dlamch.f +++ /dev/null @@ -1,857 +0,0 @@ - DOUBLE PRECISION FUNCTION DLAMCH( CMACH ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* October 31, 1992 -* -* .. Scalar Arguments .. - CHARACTER CMACH -* .. -* -* Purpose -* ======= -* -* DLAMCH determines double precision machine parameters. -* -* Arguments -* ========= -* -* CMACH (input) CHARACTER*1 -* Specifies the value to be returned by DLAMCH: -* = 'E' or 'e', DLAMCH := eps -* = 'S' or 's , DLAMCH := sfmin -* = 'B' or 'b', DLAMCH := base -* = 'P' or 'p', DLAMCH := eps*base -* = 'N' or 'n', DLAMCH := t -* = 'R' or 'r', DLAMCH := rnd -* = 'M' or 'm', DLAMCH := emin -* = 'U' or 'u', DLAMCH := rmin -* = 'L' or 'l', DLAMCH := emax -* = 'O' or 'o', DLAMCH := rmax -* -* where -* -* eps = relative machine precision -* sfmin = safe minimum, such that 1/sfmin does not overflow -* base = base of the machine -* prec = eps*base -* t = number of (base) digits in the mantissa -* rnd = 1.0 when rounding occurs in addition, 0.0 otherwise -* emin = minimum exponent before (gradual) underflow -* rmin = underflow threshold - base**(emin-1) -* emax = largest exponent before overflow -* rmax = overflow threshold - (base**emax)*(1-eps) -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE, ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Local Scalars .. - LOGICAL FIRST, LRND - INTEGER BETA, IMAX, IMIN, IT - DOUBLE PRECISION BASE, EMAX, EMIN, EPS, PREC, RMACH, RMAX, RMIN, - $ RND, SFMIN, SMALL, T -* .. -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. -* .. External Subroutines .. - EXTERNAL DLAMC2 -* .. -* .. Save statement .. - SAVE FIRST, EPS, SFMIN, BASE, T, RND, EMIN, RMIN, - $ EMAX, RMAX, PREC -* .. -* .. Data statements .. - DATA FIRST / .TRUE. / -* .. -* .. Executable Statements .. -* - IF( FIRST ) THEN - FIRST = .FALSE. - CALL DLAMC2( BETA, IT, LRND, EPS, IMIN, RMIN, IMAX, RMAX ) - BASE = BETA - T = IT - IF( LRND ) THEN - RND = ONE - EPS = ( BASE**( 1-IT ) ) / 2 - ELSE - RND = ZERO - EPS = BASE**( 1-IT ) - END IF - PREC = EPS*BASE - EMIN = IMIN - EMAX = IMAX - SFMIN = RMIN - SMALL = ONE / RMAX - IF( SMALL.GE.SFMIN ) THEN -* -* Use SMALL plus a bit, to avoid the possibility of rounding -* causing overflow when computing 1/sfmin. -* - SFMIN = SMALL*( ONE+EPS ) - END IF - END IF -* - IF( LSAME( CMACH, 'E' ) ) THEN - RMACH = EPS - ELSE IF( LSAME( CMACH, 'S' ) ) THEN - RMACH = SFMIN - ELSE IF( LSAME( CMACH, 'B' ) ) THEN - RMACH = BASE - ELSE IF( LSAME( CMACH, 'P' ) ) THEN - RMACH = PREC - ELSE IF( LSAME( CMACH, 'N' ) ) THEN - RMACH = T - ELSE IF( LSAME( CMACH, 'R' ) ) THEN - RMACH = RND - ELSE IF( LSAME( CMACH, 'M' ) ) THEN - RMACH = EMIN - ELSE IF( LSAME( CMACH, 'U' ) ) THEN - RMACH = RMIN - ELSE IF( LSAME( CMACH, 'L' ) ) THEN - RMACH = EMAX - ELSE IF( LSAME( CMACH, 'O' ) ) THEN - RMACH = RMAX - END IF -* - DLAMCH = RMACH - RETURN -* -* End of DLAMCH -* - END -* -************************************************************************ -* - SUBROUTINE DLAMC1( BETA, T, RND, IEEE1 ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* October 31, 1992 -* -* .. Scalar Arguments .. - LOGICAL IEEE1, RND - INTEGER BETA, T -* .. -* -* Purpose -* ======= -* -* DLAMC1 determines the machine parameters given by BETA, T, RND, and -* IEEE1. -* -* Arguments -* ========= -* -* BETA (output) INTEGER -* The base of the machine. -* -* T (output) INTEGER -* The number of ( BETA ) digits in the mantissa. -* -* RND (output) LOGICAL -* Specifies whether proper rounding ( RND = .TRUE. ) or -* chopping ( RND = .FALSE. ) occurs in addition. This may not -* be a reliable guide to the way in which the machine performs -* its arithmetic. -* -* IEEE1 (output) LOGICAL -* Specifies whether rounding appears to be done in the IEEE -* 'round to nearest' style. -* -* Further Details -* =============== -* -* The routine is based on the routine ENVRON by Malcolm and -* incorporates suggestions by Gentleman and Marovich. See -* -* Malcolm M. A. (1972) Algorithms to reveal properties of -* floating-point arithmetic. Comms. of the ACM, 15, 949-951. -* -* Gentleman W. M. and Marovich S. B. (1974) More on algorithms -* that reveal properties of floating point arithmetic units. -* Comms. of the ACM, 17, 276-277. -* -* ===================================================================== -* -* .. Local Scalars .. - LOGICAL FIRST, LIEEE1, LRND - INTEGER LBETA, LT - DOUBLE PRECISION A, B, C, F, ONE, QTR, SAVEC, T1, T2 -* .. -* .. External Functions .. - DOUBLE PRECISION DLAMC3 - EXTERNAL DLAMC3 -* .. -* .. Save statement .. - SAVE FIRST, LIEEE1, LBETA, LRND, LT -* .. -* .. Data statements .. - DATA FIRST / .TRUE. / -* .. -* .. Executable Statements .. -* - IF( FIRST ) THEN - FIRST = .FALSE. - ONE = 1 -* -* LBETA, LIEEE1, LT and LRND are the local values of BETA, -* IEEE1, T and RND. -* -* Throughout this routine we use the function DLAMC3 to ensure -* that relevant values are stored and not held in registers, or -* are not affected by optimizers. -* -* Compute a = 2.0**m with the smallest positive integer m such -* that -* -* fl( a + 1.0 ) = a. -* - A = 1 - C = 1 -* -*+ WHILE( C.EQ.ONE )LOOP - 10 CONTINUE - IF( C.EQ.ONE ) THEN - A = 2*A - C = DLAMC3( A, ONE ) - C = DLAMC3( C, -A ) - GO TO 10 - END IF -*+ END WHILE -* -* Now compute b = 2.0**m with the smallest positive integer m -* such that -* -* fl( a + b ) .gt. a. -* - B = 1 - C = DLAMC3( A, B ) -* -*+ WHILE( C.EQ.A )LOOP - 20 CONTINUE - IF( C.EQ.A ) THEN - B = 2*B - C = DLAMC3( A, B ) - GO TO 20 - END IF -*+ END WHILE -* -* Now compute the base. a and c are neighbouring floating point -* numbers in the interval ( beta**t, beta**( t + 1 ) ) and so -* their difference is beta. Adding 0.25 to c is to ensure that it -* is truncated to beta and not ( beta - 1 ). -* - QTR = ONE / 4 - SAVEC = C - C = DLAMC3( C, -A ) - LBETA = C + QTR -* -* Now determine whether rounding or chopping occurs, by adding a -* bit less than beta/2 and a bit more than beta/2 to a. -* - B = LBETA - F = DLAMC3( B / 2, -B / 100 ) - C = DLAMC3( F, A ) - IF( C.EQ.A ) THEN - LRND = .TRUE. - ELSE - LRND = .FALSE. - END IF - F = DLAMC3( B / 2, B / 100 ) - C = DLAMC3( F, A ) - IF( ( LRND ) .AND. ( C.EQ.A ) ) - $ LRND = .FALSE. -* -* Try and decide whether rounding is done in the IEEE 'round to -* nearest' style. B/2 is half a unit in the last place of the two -* numbers A and SAVEC. Furthermore, A is even, i.e. has last bit -* zero, and SAVEC is odd. Thus adding B/2 to A should not change -* A, but adding B/2 to SAVEC should change SAVEC. -* - T1 = DLAMC3( B / 2, A ) - T2 = DLAMC3( B / 2, SAVEC ) - LIEEE1 = ( T1.EQ.A ) .AND. ( T2.GT.SAVEC ) .AND. LRND -* -* Now find the mantissa, t. It should be the integer part of -* log to the base beta of a, however it is safer to determine t -* by powering. So we find t as the smallest positive integer for -* which -* -* fl( beta**t + 1.0 ) = 1.0. -* - LT = 0 - A = 1 - C = 1 -* -*+ WHILE( C.EQ.ONE )LOOP - 30 CONTINUE - IF( C.EQ.ONE ) THEN - LT = LT + 1 - A = A*LBETA - C = DLAMC3( A, ONE ) - C = DLAMC3( C, -A ) - GO TO 30 - END IF -*+ END WHILE -* - END IF -* - BETA = LBETA - T = LT - RND = LRND - IEEE1 = LIEEE1 - RETURN -* -* End of DLAMC1 -* - END -* -************************************************************************ -* - SUBROUTINE DLAMC2( BETA, T, RND, EPS, EMIN, RMIN, EMAX, RMAX ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* October 31, 1992 -* -* .. Scalar Arguments .. - LOGICAL RND - INTEGER BETA, EMAX, EMIN, T - DOUBLE PRECISION EPS, RMAX, RMIN -* .. -* -* Purpose -* ======= -* -* DLAMC2 determines the machine parameters specified in its argument -* list. -* -* Arguments -* ========= -* -* BETA (output) INTEGER -* The base of the machine. -* -* T (output) INTEGER -* The number of ( BETA ) digits in the mantissa. -* -* RND (output) LOGICAL -* Specifies whether proper rounding ( RND = .TRUE. ) or -* chopping ( RND = .FALSE. ) occurs in addition. This may not -* be a reliable guide to the way in which the machine performs -* its arithmetic. -* -* EPS (output) DOUBLE PRECISION -* The smallest positive number such that -* -* fl( 1.0 - EPS ) .LT. 1.0, -* -* where fl denotes the computed value. -* -* EMIN (output) INTEGER -* The minimum exponent before (gradual) underflow occurs. -* -* RMIN (output) DOUBLE PRECISION -* The smallest normalized number for the machine, given by -* BASE**( EMIN - 1 ), where BASE is the floating point value -* of BETA. -* -* EMAX (output) INTEGER -* The maximum exponent before overflow occurs. -* -* RMAX (output) DOUBLE PRECISION -* The largest positive number for the machine, given by -* BASE**EMAX * ( 1 - EPS ), where BASE is the floating point -* value of BETA. -* -* Further Details -* =============== -* -* The computation of EPS is based on a routine PARANOIA by -* W. Kahan of the University of California at Berkeley. -* -* ===================================================================== -* -* .. Local Scalars .. - LOGICAL FIRST, IEEE, IWARN, LIEEE1, LRND - INTEGER GNMIN, GPMIN, I, LBETA, LEMAX, LEMIN, LT, - $ NGNMIN, NGPMIN - DOUBLE PRECISION A, B, C, HALF, LEPS, LRMAX, LRMIN, ONE, RBASE, - $ SIXTH, SMALL, THIRD, TWO, ZERO -* .. -* .. External Functions .. - DOUBLE PRECISION DLAMC3 - EXTERNAL DLAMC3 -* .. -* .. External Subroutines .. - EXTERNAL DLAMC1, DLAMC4, DLAMC5 -* .. -* .. Intrinsic Functions .. - INTRINSIC ABS, MAX, MIN -* .. -* .. Save statement .. - SAVE FIRST, IWARN, LBETA, LEMAX, LEMIN, LEPS, LRMAX, - $ LRMIN, LT -* .. -* .. Data statements .. - DATA FIRST / .TRUE. / , IWARN / .FALSE. / -* .. -* .. Executable Statements .. -* - IF( FIRST ) THEN - FIRST = .FALSE. - ZERO = 0 - ONE = 1 - TWO = 2 -* -* LBETA, LT, LRND, LEPS, LEMIN and LRMIN are the local values of -* BETA, T, RND, EPS, EMIN and RMIN. -* -* Throughout this routine we use the function DLAMC3 to ensure -* that relevant values are stored and not held in registers, or -* are not affected by optimizers. -* -* DLAMC1 returns the parameters LBETA, LT, LRND and LIEEE1. -* - CALL DLAMC1( LBETA, LT, LRND, LIEEE1 ) -* -* Start to find EPS. -* - B = LBETA - A = B**( -LT ) - LEPS = A -* -* Try some tricks to see whether or not this is the correct EPS. -* - B = TWO / 3 - HALF = ONE / 2 - SIXTH = DLAMC3( B, -HALF ) - THIRD = DLAMC3( SIXTH, SIXTH ) - B = DLAMC3( THIRD, -HALF ) - B = DLAMC3( B, SIXTH ) - B = ABS( B ) - IF( B.LT.LEPS ) - $ B = LEPS -* - LEPS = 1 -* -*+ WHILE( ( LEPS.GT.B ).AND.( B.GT.ZERO ) )LOOP - 10 CONTINUE - IF( ( LEPS.GT.B ) .AND. ( B.GT.ZERO ) ) THEN - LEPS = B - C = DLAMC3( HALF*LEPS, ( TWO**5 )*( LEPS**2 ) ) - C = DLAMC3( HALF, -C ) - B = DLAMC3( HALF, C ) - C = DLAMC3( HALF, -B ) - B = DLAMC3( HALF, C ) - GO TO 10 - END IF -*+ END WHILE -* - IF( A.LT.LEPS ) - $ LEPS = A -* -* Computation of EPS complete. -* -* Now find EMIN. Let A = + or - 1, and + or - (1 + BASE**(-3)). -* Keep dividing A by BETA until (gradual) underflow occurs. This -* is detected when we cannot recover the previous A. -* - RBASE = ONE / LBETA - SMALL = ONE - DO 20 I = 1, 3 - SMALL = DLAMC3( SMALL*RBASE, ZERO ) - 20 CONTINUE - A = DLAMC3( ONE, SMALL ) - CALL DLAMC4( NGPMIN, ONE, LBETA ) - CALL DLAMC4( NGNMIN, -ONE, LBETA ) - CALL DLAMC4( GPMIN, A, LBETA ) - CALL DLAMC4( GNMIN, -A, LBETA ) - IEEE = .FALSE. -* - IF( ( NGPMIN.EQ.NGNMIN ) .AND. ( GPMIN.EQ.GNMIN ) ) THEN - IF( NGPMIN.EQ.GPMIN ) THEN - LEMIN = NGPMIN -* ( Non twos-complement machines, no gradual underflow; -* e.g., VAX ) - ELSE IF( ( GPMIN-NGPMIN ).EQ.3 ) THEN - LEMIN = NGPMIN - 1 + LT - IEEE = .TRUE. -* ( Non twos-complement machines, with gradual underflow; -* e.g., IEEE standard followers ) - ELSE - LEMIN = MIN( NGPMIN, GPMIN ) -* ( A guess; no known machine ) - IWARN = .TRUE. - END IF -* - ELSE IF( ( NGPMIN.EQ.GPMIN ) .AND. ( NGNMIN.EQ.GNMIN ) ) THEN - IF( ABS( NGPMIN-NGNMIN ).EQ.1 ) THEN - LEMIN = MAX( NGPMIN, NGNMIN ) -* ( Twos-complement machines, no gradual underflow; -* e.g., CYBER 205 ) - ELSE - LEMIN = MIN( NGPMIN, NGNMIN ) -* ( A guess; no known machine ) - IWARN = .TRUE. - END IF -* - ELSE IF( ( ABS( NGPMIN-NGNMIN ).EQ.1 ) .AND. - $ ( GPMIN.EQ.GNMIN ) ) THEN - IF( ( GPMIN-MIN( NGPMIN, NGNMIN ) ).EQ.3 ) THEN - LEMIN = MAX( NGPMIN, NGNMIN ) - 1 + LT -* ( Twos-complement machines with gradual underflow; -* no known machine ) - ELSE - LEMIN = MIN( NGPMIN, NGNMIN ) -* ( A guess; no known machine ) - IWARN = .TRUE. - END IF -* - ELSE - LEMIN = MIN( NGPMIN, NGNMIN, GPMIN, GNMIN ) -* ( A guess; no known machine ) - IWARN = .TRUE. - END IF -*** -* Comment out this if block if EMIN is ok - IF( IWARN ) THEN - FIRST = .TRUE. - WRITE( 6, FMT = 9999 )LEMIN - END IF -*** -* -* Assume IEEE arithmetic if we found denormalised numbers above, -* or if arithmetic seems to round in the IEEE style, determined -* in routine DLAMC1. A true IEEE machine should have both things -* true; however, faulty machines may have one or the other. -* - IEEE = IEEE .OR. LIEEE1 -* -* Compute RMIN by successive division by BETA. We could compute -* RMIN as BASE**( EMIN - 1 ), but some machines underflow during -* this computation. -* - LRMIN = 1 - DO 30 I = 1, 1 - LEMIN - LRMIN = DLAMC3( LRMIN*RBASE, ZERO ) - 30 CONTINUE -* -* Finally, call DLAMC5 to compute EMAX and RMAX. -* - CALL DLAMC5( LBETA, LT, LEMIN, IEEE, LEMAX, LRMAX ) - END IF -* - BETA = LBETA - T = LT - RND = LRND - EPS = LEPS - EMIN = LEMIN - RMIN = LRMIN - EMAX = LEMAX - RMAX = LRMAX -* - RETURN -* - 9999 FORMAT( / / ' WARNING. The value EMIN may be incorrect:-', - $ ' EMIN = ', I8, / - $ ' If, after inspection, the value EMIN looks', - $ ' acceptable please comment out ', - $ / ' the IF block as marked within the code of routine', - $ ' DLAMC2,', / ' otherwise supply EMIN explicitly.', / ) -* -* End of DLAMC2 -* - END -* -************************************************************************ -* - DOUBLE PRECISION FUNCTION DLAMC3( A, B ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* October 31, 1992 -* -* .. Scalar Arguments .. - DOUBLE PRECISION A, B -* .. -* -* Purpose -* ======= -* -* DLAMC3 is intended to force A and B to be stored prior to doing -* the addition of A and B , for use in situations where optimizers -* might hold one of these in a register. -* -* Arguments -* ========= -* -* A, B (input) DOUBLE PRECISION -* The values A and B. -* -* ===================================================================== -* -* .. Executable Statements .. -* - DLAMC3 = A + B -* - RETURN -* -* End of DLAMC3 -* - END -* -************************************************************************ -* - SUBROUTINE DLAMC4( EMIN, START, BASE ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* October 31, 1992 -* -* .. Scalar Arguments .. - INTEGER BASE, EMIN - DOUBLE PRECISION START -* .. -* -* Purpose -* ======= -* -* DLAMC4 is a service routine for DLAMC2. -* -* Arguments -* ========= -* -* EMIN (output) EMIN -* The minimum exponent before (gradual) underflow, computed by -* setting A = START and dividing by BASE until the previous A -* can not be recovered. -* -* START (input) DOUBLE PRECISION -* The starting point for determining EMIN. -* -* BASE (input) INTEGER -* The base of the machine. -* -* ===================================================================== -* -* .. Local Scalars .. - INTEGER I - DOUBLE PRECISION A, B1, B2, C1, C2, D1, D2, ONE, RBASE, ZERO -* .. -* .. External Functions .. - DOUBLE PRECISION DLAMC3 - EXTERNAL DLAMC3 -* .. -* .. Executable Statements .. -* - A = START - ONE = 1 - RBASE = ONE / BASE - ZERO = 0 - EMIN = 1 - B1 = DLAMC3( A*RBASE, ZERO ) - C1 = A - C2 = A - D1 = A - D2 = A -*+ WHILE( ( C1.EQ.A ).AND.( C2.EQ.A ).AND. -* $ ( D1.EQ.A ).AND.( D2.EQ.A ) )LOOP - 10 CONTINUE - IF( ( C1.EQ.A ) .AND. ( C2.EQ.A ) .AND. ( D1.EQ.A ) .AND. - $ ( D2.EQ.A ) ) THEN - EMIN = EMIN - 1 - A = B1 - B1 = DLAMC3( A / BASE, ZERO ) - C1 = DLAMC3( B1*BASE, ZERO ) - D1 = ZERO - DO 20 I = 1, BASE - D1 = D1 + B1 - 20 CONTINUE - B2 = DLAMC3( A*RBASE, ZERO ) - C2 = DLAMC3( B2 / RBASE, ZERO ) - D2 = ZERO - DO 30 I = 1, BASE - D2 = D2 + B2 - 30 CONTINUE - GO TO 10 - END IF -*+ END WHILE -* - RETURN -* -* End of DLAMC4 -* - END -* -************************************************************************ -* - SUBROUTINE DLAMC5( BETA, P, EMIN, IEEE, EMAX, RMAX ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* October 31, 1992 -* -* .. Scalar Arguments .. - LOGICAL IEEE - INTEGER BETA, EMAX, EMIN, P - DOUBLE PRECISION RMAX -* .. -* -* Purpose -* ======= -* -* DLAMC5 attempts to compute RMAX, the largest machine floating-point -* number, without overflow. It assumes that EMAX + abs(EMIN) sum -* approximately to a power of 2. It will fail on machines where this -* assumption does not hold, for example, the Cyber 205 (EMIN = -28625, -* EMAX = 28718). It will also fail if the value supplied for EMIN is -* too large (i.e. too close to zero), probably with overflow. -* -* Arguments -* ========= -* -* BETA (input) INTEGER -* The base of floating-point arithmetic. -* -* P (input) INTEGER -* The number of base BETA digits in the mantissa of a -* floating-point value. -* -* EMIN (input) INTEGER -* The minimum exponent before (gradual) underflow. -* -* IEEE (input) LOGICAL -* A logical flag specifying whether or not the arithmetic -* system is thought to comply with the IEEE standard. -* -* EMAX (output) INTEGER -* The largest exponent before overflow -* -* RMAX (output) DOUBLE PRECISION -* The largest machine floating-point number. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO, ONE - PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0 ) -* .. -* .. Local Scalars .. - INTEGER EXBITS, EXPSUM, I, LEXP, NBITS, TRY, UEXP - DOUBLE PRECISION OLDY, RECBAS, Y, Z -* .. -* .. External Functions .. - DOUBLE PRECISION DLAMC3 - EXTERNAL DLAMC3 -* .. -* .. Intrinsic Functions .. - INTRINSIC MOD -* .. -* .. Executable Statements .. -* -* First compute LEXP and UEXP, two powers of 2 that bound -* abs(EMIN). We then assume that EMAX + abs(EMIN) will sum -* approximately to the bound that is closest to abs(EMIN). -* (EMAX is the exponent of the required number RMAX). -* - LEXP = 1 - EXBITS = 1 - 10 CONTINUE - TRY = LEXP*2 - IF( TRY.LE.( -EMIN ) ) THEN - LEXP = TRY - EXBITS = EXBITS + 1 - GO TO 10 - END IF - IF( LEXP.EQ.-EMIN ) THEN - UEXP = LEXP - ELSE - UEXP = TRY - EXBITS = EXBITS + 1 - END IF -* -* Now -LEXP is less than or equal to EMIN, and -UEXP is greater -* than or equal to EMIN. EXBITS is the number of bits needed to -* store the exponent. -* - IF( ( UEXP+EMIN ).GT.( -LEXP-EMIN ) ) THEN - EXPSUM = 2*LEXP - ELSE - EXPSUM = 2*UEXP - END IF -* -* EXPSUM is the exponent range, approximately equal to -* EMAX - EMIN + 1 . -* - EMAX = EXPSUM + EMIN - 1 - NBITS = 1 + EXBITS + P -* -* NBITS is the total number of bits needed to store a -* floating-point number. -* - IF( ( MOD( NBITS, 2 ).EQ.1 ) .AND. ( BETA.EQ.2 ) ) THEN -* -* Either there are an odd number of bits used to store a -* floating-point number, which is unlikely, or some bits are -* not used in the representation of numbers, which is possible, -* (e.g. Cray machines) or the mantissa has an implicit bit, -* (e.g. IEEE machines, Dec Vax machines), which is perhaps the -* most likely. We have to assume the last alternative. -* If this is true, then we need to reduce EMAX by one because -* there must be some way of representing zero in an implicit-bit -* system. On machines like Cray, we are reducing EMAX by one -* unnecessarily. -* - EMAX = EMAX - 1 - END IF -* - IF( IEEE ) THEN -* -* Assume we are on an IEEE machine which reserves one exponent -* for infinity and NaN. -* - EMAX = EMAX - 1 - END IF -* -* Now create RMAX, the largest machine number, which should -* be equal to (1.0 - BETA**(-P)) * BETA**EMAX . -* -* First compute 1.0 - BETA**(-P), being careful that the -* result is less than 1.0 . -* - RECBAS = ONE / BETA - Z = BETA - ONE - Y = ZERO - DO 20 I = 1, P - Z = Z*RECBAS - IF( Y.LT.ONE ) - $ OLDY = Y - Y = DLAMC3( Y, Z ) - 20 CONTINUE - IF( Y.GE.ONE ) - $ Y = OLDY -* -* Now multiply by BETA**EMAX to get RMAX. -* - DO 30 I = 1, EMAX - Y = DLAMC3( Y*BETA, ZERO ) - 30 CONTINUE -* - RMAX = Y - RETURN -* -* End of DLAMC5 -* - END diff --git a/Cantera/ext/lapack/dlange.f b/Cantera/ext/lapack/dlange.f deleted file mode 100755 index 0737f03ea..000000000 --- a/Cantera/ext/lapack/dlange.f +++ /dev/null @@ -1,145 +0,0 @@ - DOUBLE PRECISION FUNCTION DLANGE( NORM, M, N, A, LDA, WORK ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* October 31, 1992 -* -* .. Scalar Arguments .. - CHARACTER NORM - INTEGER LDA, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), WORK( * ) -* .. -* -* Purpose -* ======= -* -* DLANGE returns the value of the one norm, or the Frobenius norm, or -* the infinity norm, or the element of largest absolute value of a -* real matrix A. -* -* Description -* =========== -* -* DLANGE returns the value -* -* DLANGE = ( max(abs(A(i,j))), NORM = 'M' or 'm' -* ( -* ( norm1(A), NORM = '1', 'O' or 'o' -* ( -* ( normI(A), NORM = 'I' or 'i' -* ( -* ( normF(A), NORM = 'F', 'f', 'E' or 'e' -* -* where norm1 denotes the one norm of a matrix (maximum column sum), -* normI denotes the infinity norm of a matrix (maximum row sum) and -* normF denotes the Frobenius norm of a matrix (square root of sum of -* squares). Note that max(abs(A(i,j))) is not a matrix norm. -* -* Arguments -* ========= -* -* NORM (input) CHARACTER*1 -* Specifies the value to be returned in DLANGE as described -* above. -* -* M (input) INTEGER -* The number of rows of the matrix A. M >= 0. When M = 0, -* DLANGE is set to zero. -* -* N (input) INTEGER -* The number of columns of the matrix A. N >= 0. When N = 0, -* DLANGE is set to zero. -* -* A (input) DOUBLE PRECISION array, dimension (LDA,N) -* The m by n matrix A. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(M,1). -* -* WORK (workspace) DOUBLE PRECISION array, dimension (LWORK), -* where LWORK >= M when NORM = 'I'; otherwise, WORK is not -* referenced. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE, ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Local Scalars .. - INTEGER I, J - DOUBLE PRECISION SCALE, SUM, VALUE -* .. -* .. External Subroutines .. - EXTERNAL DLASSQ -* .. -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. -* .. Intrinsic Functions .. - INTRINSIC ABS, MAX, MIN, SQRT -* .. -* .. Executable Statements .. -* - IF( MIN( M, N ).EQ.0 ) THEN - VALUE = ZERO - ELSE IF( LSAME( NORM, 'M' ) ) THEN -* -* Find max(abs(A(i,j))). -* - VALUE = ZERO - DO 20 J = 1, N - DO 10 I = 1, M - VALUE = MAX( VALUE, ABS( A( I, J ) ) ) - 10 CONTINUE - 20 CONTINUE - ELSE IF( ( LSAME( NORM, 'O' ) ) .OR. ( NORM.EQ.'1' ) ) THEN -* -* Find norm1(A). -* - VALUE = ZERO - DO 40 J = 1, N - SUM = ZERO - DO 30 I = 1, M - SUM = SUM + ABS( A( I, J ) ) - 30 CONTINUE - VALUE = MAX( VALUE, SUM ) - 40 CONTINUE - ELSE IF( LSAME( NORM, 'I' ) ) THEN -* -* Find normI(A). -* - DO 50 I = 1, M - WORK( I ) = ZERO - 50 CONTINUE - DO 70 J = 1, N - DO 60 I = 1, M - WORK( I ) = WORK( I ) + ABS( A( I, J ) ) - 60 CONTINUE - 70 CONTINUE - VALUE = ZERO - DO 80 I = 1, M - VALUE = MAX( VALUE, WORK( I ) ) - 80 CONTINUE - ELSE IF( ( LSAME( NORM, 'F' ) ) .OR. ( LSAME( NORM, 'E' ) ) ) THEN -* -* Find normF(A). -* - SCALE = ZERO - SUM = ONE - DO 90 J = 1, N - CALL DLASSQ( M, A( 1, J ), 1, SCALE, SUM ) - 90 CONTINUE - VALUE = SCALE*SQRT( SUM ) - END IF -* - DLANGE = VALUE - RETURN -* -* End of DLANGE -* - END diff --git a/Cantera/ext/lapack/dlapy2.f b/Cantera/ext/lapack/dlapy2.f deleted file mode 100755 index d38196132..000000000 --- a/Cantera/ext/lapack/dlapy2.f +++ /dev/null @@ -1,54 +0,0 @@ - DOUBLE PRECISION FUNCTION DLAPY2( X, Y ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* October 31, 1992 -* -* .. Scalar Arguments .. - DOUBLE PRECISION X, Y -* .. -* -* Purpose -* ======= -* -* DLAPY2 returns sqrt(x**2+y**2), taking care not to cause unnecessary -* overflow. -* -* Arguments -* ========= -* -* X (input) DOUBLE PRECISION -* Y (input) DOUBLE PRECISION -* X and Y specify the values x and y. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D0 ) - DOUBLE PRECISION ONE - PARAMETER ( ONE = 1.0D0 ) -* .. -* .. Local Scalars .. - DOUBLE PRECISION W, XABS, YABS, Z -* .. -* .. Intrinsic Functions .. - INTRINSIC ABS, MAX, MIN, SQRT -* .. -* .. Executable Statements .. -* - XABS = ABS( X ) - YABS = ABS( Y ) - W = MAX( XABS, YABS ) - Z = MIN( XABS, YABS ) - IF( Z.EQ.ZERO ) THEN - DLAPY2 = W - ELSE - DLAPY2 = W*SQRT( ONE+( Z / W )**2 ) - END IF - RETURN -* -* End of DLAPY2 -* - END diff --git a/Cantera/ext/lapack/dlarf.f b/Cantera/ext/lapack/dlarf.f deleted file mode 100755 index 1bb357f9b..000000000 --- a/Cantera/ext/lapack/dlarf.f +++ /dev/null @@ -1,116 +0,0 @@ - SUBROUTINE DLARF( SIDE, M, N, V, INCV, TAU, C, LDC, WORK ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - CHARACTER SIDE - INTEGER INCV, LDC, M, N - DOUBLE PRECISION TAU -* .. -* .. Array Arguments .. - DOUBLE PRECISION C( LDC, * ), V( * ), WORK( * ) -* .. -* -* Purpose -* ======= -* -* DLARF applies a real elementary reflector H to a real m by n matrix -* C, from either the left or the right. H is represented in the form -* -* H = I - tau * v * v' -* -* where tau is a real scalar and v is a real vector. -* -* If tau = 0, then H is taken to be the unit matrix. -* -* Arguments -* ========= -* -* SIDE (input) CHARACTER*1 -* = 'L': form H * C -* = 'R': form C * H -* -* M (input) INTEGER -* The number of rows of the matrix C. -* -* N (input) INTEGER -* The number of columns of the matrix C. -* -* V (input) DOUBLE PRECISION array, dimension -* (1 + (M-1)*abs(INCV)) if SIDE = 'L' -* or (1 + (N-1)*abs(INCV)) if SIDE = 'R' -* The vector v in the representation of H. V is not used if -* TAU = 0. -* -* INCV (input) INTEGER -* The increment between elements of v. INCV <> 0. -* -* TAU (input) DOUBLE PRECISION -* The value tau in the representation of H. -* -* C (input/output) DOUBLE PRECISION array, dimension (LDC,N) -* On entry, the m by n matrix C. -* On exit, C is overwritten by the matrix H * C if SIDE = 'L', -* or C * H if SIDE = 'R'. -* -* LDC (input) INTEGER -* The leading dimension of the array C. LDC >= max(1,M). -* -* WORK (workspace) DOUBLE PRECISION array, dimension -* (N) if SIDE = 'L' -* or (M) if SIDE = 'R' -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE, ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. External Subroutines .. - EXTERNAL DGEMV, DGER -* .. -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. -* .. Executable Statements .. -* - IF( LSAME( SIDE, 'L' ) ) THEN -* -* Form H * C -* - IF( TAU.NE.ZERO ) THEN -* -* w := C' * v -* - CALL DGEMV( 'Transpose', M, N, ONE, C, LDC, V, INCV, ZERO, - $ WORK, 1 ) -* -* C := C - v * w' -* - CALL DGER( M, N, -TAU, V, INCV, WORK, 1, C, LDC ) - END IF - ELSE -* -* Form C * H -* - IF( TAU.NE.ZERO ) THEN -* -* w := C * v -* - CALL DGEMV( 'No transpose', M, N, ONE, C, LDC, V, INCV, - $ ZERO, WORK, 1 ) -* -* C := C - w * v' -* - CALL DGER( M, N, -TAU, WORK, 1, V, INCV, C, LDC ) - END IF - END IF - RETURN -* -* End of DLARF -* - END diff --git a/Cantera/ext/lapack/dlarfb.f b/Cantera/ext/lapack/dlarfb.f deleted file mode 100755 index 4e4f18600..000000000 --- a/Cantera/ext/lapack/dlarfb.f +++ /dev/null @@ -1,588 +0,0 @@ - SUBROUTINE DLARFB( SIDE, TRANS, DIRECT, STOREV, M, N, K, V, LDV, - $ T, LDT, C, LDC, WORK, LDWORK ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - CHARACTER DIRECT, SIDE, STOREV, TRANS - INTEGER K, LDC, LDT, LDV, LDWORK, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION C( LDC, * ), T( LDT, * ), V( LDV, * ), - $ WORK( LDWORK, * ) -* .. -* -* Purpose -* ======= -* -* DLARFB applies a real block reflector H or its transpose H' to a -* real m by n matrix C, from either the left or the right. -* -* Arguments -* ========= -* -* SIDE (input) CHARACTER*1 -* = 'L': apply H or H' from the Left -* = 'R': apply H or H' from the Right -* -* TRANS (input) CHARACTER*1 -* = 'N': apply H (No transpose) -* = 'T': apply H' (Transpose) -* -* DIRECT (input) CHARACTER*1 -* Indicates how H is formed from a product of elementary -* reflectors -* = 'F': H = H(1) H(2) . . . H(k) (Forward) -* = 'B': H = H(k) . . . H(2) H(1) (Backward) -* -* STOREV (input) CHARACTER*1 -* Indicates how the vectors which define the elementary -* reflectors are stored: -* = 'C': Columnwise -* = 'R': Rowwise -* -* M (input) INTEGER -* The number of rows of the matrix C. -* -* N (input) INTEGER -* The number of columns of the matrix C. -* -* K (input) INTEGER -* The order of the matrix T (= the number of elementary -* reflectors whose product defines the block reflector). -* -* V (input) DOUBLE PRECISION array, dimension -* (LDV,K) if STOREV = 'C' -* (LDV,M) if STOREV = 'R' and SIDE = 'L' -* (LDV,N) if STOREV = 'R' and SIDE = 'R' -* The matrix V. See further details. -* -* LDV (input) INTEGER -* The leading dimension of the array V. -* If STOREV = 'C' and SIDE = 'L', LDV >= max(1,M); -* if STOREV = 'C' and SIDE = 'R', LDV >= max(1,N); -* if STOREV = 'R', LDV >= K. -* -* T (input) DOUBLE PRECISION array, dimension (LDT,K) -* The triangular k by k matrix T in the representation of the -* block reflector. -* -* LDT (input) INTEGER -* The leading dimension of the array T. LDT >= K. -* -* C (input/output) DOUBLE PRECISION array, dimension (LDC,N) -* On entry, the m by n matrix C. -* On exit, C is overwritten by H*C or H'*C or C*H or C*H'. -* -* LDC (input) INTEGER -* The leading dimension of the array C. LDA >= max(1,M). -* -* WORK (workspace) DOUBLE PRECISION array, dimension (LDWORK,K) -* -* LDWORK (input) INTEGER -* The leading dimension of the array WORK. -* If SIDE = 'L', LDWORK >= max(1,N); -* if SIDE = 'R', LDWORK >= max(1,M). -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE - PARAMETER ( ONE = 1.0D+0 ) -* .. -* .. Local Scalars .. - CHARACTER TRANST - INTEGER I, J -* .. -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. -* .. External Subroutines .. - EXTERNAL DCOPY, DGEMM, DTRMM -* .. -* .. Executable Statements .. -* -* Quick return if possible -* - IF( M.LE.0 .OR. N.LE.0 ) - $ RETURN -* - IF( LSAME( TRANS, 'N' ) ) THEN - TRANST = 'T' - ELSE - TRANST = 'N' - END IF -* - IF( LSAME( STOREV, 'C' ) ) THEN -* - IF( LSAME( DIRECT, 'F' ) ) THEN -* -* Let V = ( V1 ) (first K rows) -* ( V2 ) -* where V1 is unit lower triangular. -* - IF( LSAME( SIDE, 'L' ) ) THEN -* -* Form H * C or H' * C where C = ( C1 ) -* ( C2 ) -* -* W := C' * V = (C1'*V1 + C2'*V2) (stored in WORK) -* -* W := C1' -* - DO 10 J = 1, K - CALL DCOPY( N, C( J, 1 ), LDC, WORK( 1, J ), 1 ) - 10 CONTINUE -* -* W := W * V1 -* - CALL DTRMM( 'Right', 'Lower', 'No transpose', 'Unit', N, - $ K, ONE, V, LDV, WORK, LDWORK ) - IF( M.GT.K ) THEN -* -* W := W + C2'*V2 -* - CALL DGEMM( 'Transpose', 'No transpose', N, K, M-K, - $ ONE, C( K+1, 1 ), LDC, V( K+1, 1 ), LDV, - $ ONE, WORK, LDWORK ) - END IF -* -* W := W * T' or W * T -* - CALL DTRMM( 'Right', 'Upper', TRANST, 'Non-unit', N, K, - $ ONE, T, LDT, WORK, LDWORK ) -* -* C := C - V * W' -* - IF( M.GT.K ) THEN -* -* C2 := C2 - V2 * W' -* - CALL DGEMM( 'No transpose', 'Transpose', M-K, N, K, - $ -ONE, V( K+1, 1 ), LDV, WORK, LDWORK, ONE, - $ C( K+1, 1 ), LDC ) - END IF -* -* W := W * V1' -* - CALL DTRMM( 'Right', 'Lower', 'Transpose', 'Unit', N, K, - $ ONE, V, LDV, WORK, LDWORK ) -* -* C1 := C1 - W' -* - DO 30 J = 1, K - DO 20 I = 1, N - C( J, I ) = C( J, I ) - WORK( I, J ) - 20 CONTINUE - 30 CONTINUE -* - ELSE IF( LSAME( SIDE, 'R' ) ) THEN -* -* Form C * H or C * H' where C = ( C1 C2 ) -* -* W := C * V = (C1*V1 + C2*V2) (stored in WORK) -* -* W := C1 -* - DO 40 J = 1, K - CALL DCOPY( M, C( 1, J ), 1, WORK( 1, J ), 1 ) - 40 CONTINUE -* -* W := W * V1 -* - CALL DTRMM( 'Right', 'Lower', 'No transpose', 'Unit', M, - $ K, ONE, V, LDV, WORK, LDWORK ) - IF( N.GT.K ) THEN -* -* W := W + C2 * V2 -* - CALL DGEMM( 'No transpose', 'No transpose', M, K, N-K, - $ ONE, C( 1, K+1 ), LDC, V( K+1, 1 ), LDV, - $ ONE, WORK, LDWORK ) - END IF -* -* W := W * T or W * T' -* - CALL DTRMM( 'Right', 'Upper', TRANS, 'Non-unit', M, K, - $ ONE, T, LDT, WORK, LDWORK ) -* -* C := C - W * V' -* - IF( N.GT.K ) THEN -* -* C2 := C2 - W * V2' -* - CALL DGEMM( 'No transpose', 'Transpose', M, N-K, K, - $ -ONE, WORK, LDWORK, V( K+1, 1 ), LDV, ONE, - $ C( 1, K+1 ), LDC ) - END IF -* -* W := W * V1' -* - CALL DTRMM( 'Right', 'Lower', 'Transpose', 'Unit', M, K, - $ ONE, V, LDV, WORK, LDWORK ) -* -* C1 := C1 - W -* - DO 60 J = 1, K - DO 50 I = 1, M - C( I, J ) = C( I, J ) - WORK( I, J ) - 50 CONTINUE - 60 CONTINUE - END IF -* - ELSE -* -* Let V = ( V1 ) -* ( V2 ) (last K rows) -* where V2 is unit upper triangular. -* - IF( LSAME( SIDE, 'L' ) ) THEN -* -* Form H * C or H' * C where C = ( C1 ) -* ( C2 ) -* -* W := C' * V = (C1'*V1 + C2'*V2) (stored in WORK) -* -* W := C2' -* - DO 70 J = 1, K - CALL DCOPY( N, C( M-K+J, 1 ), LDC, WORK( 1, J ), 1 ) - 70 CONTINUE -* -* W := W * V2 -* - CALL DTRMM( 'Right', 'Upper', 'No transpose', 'Unit', N, - $ K, ONE, V( M-K+1, 1 ), LDV, WORK, LDWORK ) - IF( M.GT.K ) THEN -* -* W := W + C1'*V1 -* - CALL DGEMM( 'Transpose', 'No transpose', N, K, M-K, - $ ONE, C, LDC, V, LDV, ONE, WORK, LDWORK ) - END IF -* -* W := W * T' or W * T -* - CALL DTRMM( 'Right', 'Lower', TRANST, 'Non-unit', N, K, - $ ONE, T, LDT, WORK, LDWORK ) -* -* C := C - V * W' -* - IF( M.GT.K ) THEN -* -* C1 := C1 - V1 * W' -* - CALL DGEMM( 'No transpose', 'Transpose', M-K, N, K, - $ -ONE, V, LDV, WORK, LDWORK, ONE, C, LDC ) - END IF -* -* W := W * V2' -* - CALL DTRMM( 'Right', 'Upper', 'Transpose', 'Unit', N, K, - $ ONE, V( M-K+1, 1 ), LDV, WORK, LDWORK ) -* -* C2 := C2 - W' -* - DO 90 J = 1, K - DO 80 I = 1, N - C( M-K+J, I ) = C( M-K+J, I ) - WORK( I, J ) - 80 CONTINUE - 90 CONTINUE -* - ELSE IF( LSAME( SIDE, 'R' ) ) THEN -* -* Form C * H or C * H' where C = ( C1 C2 ) -* -* W := C * V = (C1*V1 + C2*V2) (stored in WORK) -* -* W := C2 -* - DO 100 J = 1, K - CALL DCOPY( M, C( 1, N-K+J ), 1, WORK( 1, J ), 1 ) - 100 CONTINUE -* -* W := W * V2 -* - CALL DTRMM( 'Right', 'Upper', 'No transpose', 'Unit', M, - $ K, ONE, V( N-K+1, 1 ), LDV, WORK, LDWORK ) - IF( N.GT.K ) THEN -* -* W := W + C1 * V1 -* - CALL DGEMM( 'No transpose', 'No transpose', M, K, N-K, - $ ONE, C, LDC, V, LDV, ONE, WORK, LDWORK ) - END IF -* -* W := W * T or W * T' -* - CALL DTRMM( 'Right', 'Lower', TRANS, 'Non-unit', M, K, - $ ONE, T, LDT, WORK, LDWORK ) -* -* C := C - W * V' -* - IF( N.GT.K ) THEN -* -* C1 := C1 - W * V1' -* - CALL DGEMM( 'No transpose', 'Transpose', M, N-K, K, - $ -ONE, WORK, LDWORK, V, LDV, ONE, C, LDC ) - END IF -* -* W := W * V2' -* - CALL DTRMM( 'Right', 'Upper', 'Transpose', 'Unit', M, K, - $ ONE, V( N-K+1, 1 ), LDV, WORK, LDWORK ) -* -* C2 := C2 - W -* - DO 120 J = 1, K - DO 110 I = 1, M - C( I, N-K+J ) = C( I, N-K+J ) - WORK( I, J ) - 110 CONTINUE - 120 CONTINUE - END IF - END IF -* - ELSE IF( LSAME( STOREV, 'R' ) ) THEN -* - IF( LSAME( DIRECT, 'F' ) ) THEN -* -* Let V = ( V1 V2 ) (V1: first K columns) -* where V1 is unit upper triangular. -* - IF( LSAME( SIDE, 'L' ) ) THEN -* -* Form H * C or H' * C where C = ( C1 ) -* ( C2 ) -* -* W := C' * V' = (C1'*V1' + C2'*V2') (stored in WORK) -* -* W := C1' -* - DO 130 J = 1, K - CALL DCOPY( N, C( J, 1 ), LDC, WORK( 1, J ), 1 ) - 130 CONTINUE -* -* W := W * V1' -* - CALL DTRMM( 'Right', 'Upper', 'Transpose', 'Unit', N, K, - $ ONE, V, LDV, WORK, LDWORK ) - IF( M.GT.K ) THEN -* -* W := W + C2'*V2' -* - CALL DGEMM( 'Transpose', 'Transpose', N, K, M-K, ONE, - $ C( K+1, 1 ), LDC, V( 1, K+1 ), LDV, ONE, - $ WORK, LDWORK ) - END IF -* -* W := W * T' or W * T -* - CALL DTRMM( 'Right', 'Upper', TRANST, 'Non-unit', N, K, - $ ONE, T, LDT, WORK, LDWORK ) -* -* C := C - V' * W' -* - IF( M.GT.K ) THEN -* -* C2 := C2 - V2' * W' -* - CALL DGEMM( 'Transpose', 'Transpose', M-K, N, K, -ONE, - $ V( 1, K+1 ), LDV, WORK, LDWORK, ONE, - $ C( K+1, 1 ), LDC ) - END IF -* -* W := W * V1 -* - CALL DTRMM( 'Right', 'Upper', 'No transpose', 'Unit', N, - $ K, ONE, V, LDV, WORK, LDWORK ) -* -* C1 := C1 - W' -* - DO 150 J = 1, K - DO 140 I = 1, N - C( J, I ) = C( J, I ) - WORK( I, J ) - 140 CONTINUE - 150 CONTINUE -* - ELSE IF( LSAME( SIDE, 'R' ) ) THEN -* -* Form C * H or C * H' where C = ( C1 C2 ) -* -* W := C * V' = (C1*V1' + C2*V2') (stored in WORK) -* -* W := C1 -* - DO 160 J = 1, K - CALL DCOPY( M, C( 1, J ), 1, WORK( 1, J ), 1 ) - 160 CONTINUE -* -* W := W * V1' -* - CALL DTRMM( 'Right', 'Upper', 'Transpose', 'Unit', M, K, - $ ONE, V, LDV, WORK, LDWORK ) - IF( N.GT.K ) THEN -* -* W := W + C2 * V2' -* - CALL DGEMM( 'No transpose', 'Transpose', M, K, N-K, - $ ONE, C( 1, K+1 ), LDC, V( 1, K+1 ), LDV, - $ ONE, WORK, LDWORK ) - END IF -* -* W := W * T or W * T' -* - CALL DTRMM( 'Right', 'Upper', TRANS, 'Non-unit', M, K, - $ ONE, T, LDT, WORK, LDWORK ) -* -* C := C - W * V -* - IF( N.GT.K ) THEN -* -* C2 := C2 - W * V2 -* - CALL DGEMM( 'No transpose', 'No transpose', M, N-K, K, - $ -ONE, WORK, LDWORK, V( 1, K+1 ), LDV, ONE, - $ C( 1, K+1 ), LDC ) - END IF -* -* W := W * V1 -* - CALL DTRMM( 'Right', 'Upper', 'No transpose', 'Unit', M, - $ K, ONE, V, LDV, WORK, LDWORK ) -* -* C1 := C1 - W -* - DO 180 J = 1, K - DO 170 I = 1, M - C( I, J ) = C( I, J ) - WORK( I, J ) - 170 CONTINUE - 180 CONTINUE -* - END IF -* - ELSE -* -* Let V = ( V1 V2 ) (V2: last K columns) -* where V2 is unit lower triangular. -* - IF( LSAME( SIDE, 'L' ) ) THEN -* -* Form H * C or H' * C where C = ( C1 ) -* ( C2 ) -* -* W := C' * V' = (C1'*V1' + C2'*V2') (stored in WORK) -* -* W := C2' -* - DO 190 J = 1, K - CALL DCOPY( N, C( M-K+J, 1 ), LDC, WORK( 1, J ), 1 ) - 190 CONTINUE -* -* W := W * V2' -* - CALL DTRMM( 'Right', 'Lower', 'Transpose', 'Unit', N, K, - $ ONE, V( 1, M-K+1 ), LDV, WORK, LDWORK ) - IF( M.GT.K ) THEN -* -* W := W + C1'*V1' -* - CALL DGEMM( 'Transpose', 'Transpose', N, K, M-K, ONE, - $ C, LDC, V, LDV, ONE, WORK, LDWORK ) - END IF -* -* W := W * T' or W * T -* - CALL DTRMM( 'Right', 'Lower', TRANST, 'Non-unit', N, K, - $ ONE, T, LDT, WORK, LDWORK ) -* -* C := C - V' * W' -* - IF( M.GT.K ) THEN -* -* C1 := C1 - V1' * W' -* - CALL DGEMM( 'Transpose', 'Transpose', M-K, N, K, -ONE, - $ V, LDV, WORK, LDWORK, ONE, C, LDC ) - END IF -* -* W := W * V2 -* - CALL DTRMM( 'Right', 'Lower', 'No transpose', 'Unit', N, - $ K, ONE, V( 1, M-K+1 ), LDV, WORK, LDWORK ) -* -* C2 := C2 - W' -* - DO 210 J = 1, K - DO 200 I = 1, N - C( M-K+J, I ) = C( M-K+J, I ) - WORK( I, J ) - 200 CONTINUE - 210 CONTINUE -* - ELSE IF( LSAME( SIDE, 'R' ) ) THEN -* -* Form C * H or C * H' where C = ( C1 C2 ) -* -* W := C * V' = (C1*V1' + C2*V2') (stored in WORK) -* -* W := C2 -* - DO 220 J = 1, K - CALL DCOPY( M, C( 1, N-K+J ), 1, WORK( 1, J ), 1 ) - 220 CONTINUE -* -* W := W * V2' -* - CALL DTRMM( 'Right', 'Lower', 'Transpose', 'Unit', M, K, - $ ONE, V( 1, N-K+1 ), LDV, WORK, LDWORK ) - IF( N.GT.K ) THEN -* -* W := W + C1 * V1' -* - CALL DGEMM( 'No transpose', 'Transpose', M, K, N-K, - $ ONE, C, LDC, V, LDV, ONE, WORK, LDWORK ) - END IF -* -* W := W * T or W * T' -* - CALL DTRMM( 'Right', 'Lower', TRANS, 'Non-unit', M, K, - $ ONE, T, LDT, WORK, LDWORK ) -* -* C := C - W * V -* - IF( N.GT.K ) THEN -* -* C1 := C1 - W * V1 -* - CALL DGEMM( 'No transpose', 'No transpose', M, N-K, K, - $ -ONE, WORK, LDWORK, V, LDV, ONE, C, LDC ) - END IF -* -* W := W * V2 -* - CALL DTRMM( 'Right', 'Lower', 'No transpose', 'Unit', M, - $ K, ONE, V( 1, N-K+1 ), LDV, WORK, LDWORK ) -* -* C1 := C1 - W -* - DO 240 J = 1, K - DO 230 I = 1, M - C( I, N-K+J ) = C( I, N-K+J ) - WORK( I, J ) - 230 CONTINUE - 240 CONTINUE -* - END IF -* - END IF - END IF -* - RETURN -* -* End of DLARFB -* - END diff --git a/Cantera/ext/lapack/dlarfg.f b/Cantera/ext/lapack/dlarfg.f deleted file mode 100755 index a8e64c1b9..000000000 --- a/Cantera/ext/lapack/dlarfg.f +++ /dev/null @@ -1,138 +0,0 @@ - SUBROUTINE DLARFG( N, ALPHA, X, INCX, TAU ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - INTEGER INCX, N - DOUBLE PRECISION ALPHA, TAU -* .. -* .. Array Arguments .. - DOUBLE PRECISION X( * ) -* .. -* -* Purpose -* ======= -* -* DLARFG generates a real elementary reflector H of order n, such -* that -* -* H * ( alpha ) = ( beta ), H' * H = I. -* ( x ) ( 0 ) -* -* where alpha and beta are scalars, and x is an (n-1)-element real -* vector. H is represented in the form -* -* H = I - tau * ( 1 ) * ( 1 v' ) , -* ( v ) -* -* where tau is a real scalar and v is a real (n-1)-element -* vector. -* -* If the elements of x are all zero, then tau = 0 and H is taken to be -* the unit matrix. -* -* Otherwise 1 <= tau <= 2. -* -* Arguments -* ========= -* -* N (input) INTEGER -* The order of the elementary reflector. -* -* ALPHA (input/output) DOUBLE PRECISION -* On entry, the value alpha. -* On exit, it is overwritten with the value beta. -* -* X (input/output) DOUBLE PRECISION array, dimension -* (1+(N-2)*abs(INCX)) -* On entry, the vector x. -* On exit, it is overwritten with the vector v. -* -* INCX (input) INTEGER -* The increment between elements of X. INCX > 0. -* -* TAU (output) DOUBLE PRECISION -* The value tau. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE, ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Local Scalars .. - INTEGER J, KNT - DOUBLE PRECISION BETA, RSAFMN, SAFMIN, XNORM -* .. -* .. External Functions .. - DOUBLE PRECISION DLAMCH, DLAPY2, DNRM2 - EXTERNAL DLAMCH, DLAPY2, DNRM2 -* .. -* .. Intrinsic Functions .. - INTRINSIC ABS, SIGN -* .. -* .. External Subroutines .. - EXTERNAL DSCAL -* .. -* .. Executable Statements .. -* - IF( N.LE.1 ) THEN - TAU = ZERO - RETURN - END IF -* - XNORM = DNRM2( N-1, X, INCX ) -* - IF( XNORM.EQ.ZERO ) THEN -* -* H = I -* - TAU = ZERO - ELSE -* -* general case -* - BETA = -SIGN( DLAPY2( ALPHA, XNORM ), ALPHA ) - SAFMIN = DLAMCH( 'S' ) / DLAMCH( 'E' ) - IF( ABS( BETA ).LT.SAFMIN ) THEN -* -* XNORM, BETA may be inaccurate; scale X and recompute them -* - RSAFMN = ONE / SAFMIN - KNT = 0 - 10 CONTINUE - KNT = KNT + 1 - CALL DSCAL( N-1, RSAFMN, X, INCX ) - BETA = BETA*RSAFMN - ALPHA = ALPHA*RSAFMN - IF( ABS( BETA ).LT.SAFMIN ) - $ GO TO 10 -* -* New BETA is at most 1, at least SAFMIN -* - XNORM = DNRM2( N-1, X, INCX ) - BETA = -SIGN( DLAPY2( ALPHA, XNORM ), ALPHA ) - TAU = ( BETA-ALPHA ) / BETA - CALL DSCAL( N-1, ONE / ( ALPHA-BETA ), X, INCX ) -* -* If ALPHA is subnormal, it may lose relative accuracy -* - ALPHA = BETA - DO 20 J = 1, KNT - ALPHA = ALPHA*SAFMIN - 20 CONTINUE - ELSE - TAU = ( BETA-ALPHA ) / BETA - CALL DSCAL( N-1, ONE / ( ALPHA-BETA ), X, INCX ) - ALPHA = BETA - END IF - END IF -* - RETURN -* -* End of DLARFG -* - END diff --git a/Cantera/ext/lapack/dlarft.f b/Cantera/ext/lapack/dlarft.f deleted file mode 100755 index 6035df482..000000000 --- a/Cantera/ext/lapack/dlarft.f +++ /dev/null @@ -1,218 +0,0 @@ - SUBROUTINE DLARFT( DIRECT, STOREV, N, K, V, LDV, TAU, T, LDT ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - CHARACTER DIRECT, STOREV - INTEGER K, LDT, LDV, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION T( LDT, * ), TAU( * ), V( LDV, * ) -* .. -* -* Purpose -* ======= -* -* DLARFT forms the triangular factor T of a real block reflector H -* of order n, which is defined as a product of k elementary reflectors. -* -* If DIRECT = 'F', H = H(1) H(2) . . . H(k) and T is upper triangular; -* -* If DIRECT = 'B', H = H(k) . . . H(2) H(1) and T is lower triangular. -* -* If STOREV = 'C', the vector which defines the elementary reflector -* H(i) is stored in the i-th column of the array V, and -* -* H = I - V * T * V' -* -* If STOREV = 'R', the vector which defines the elementary reflector -* H(i) is stored in the i-th row of the array V, and -* -* H = I - V' * T * V -* -* Arguments -* ========= -* -* DIRECT (input) CHARACTER*1 -* Specifies the order in which the elementary reflectors are -* multiplied to form the block reflector: -* = 'F': H = H(1) H(2) . . . H(k) (Forward) -* = 'B': H = H(k) . . . H(2) H(1) (Backward) -* -* STOREV (input) CHARACTER*1 -* Specifies how the vectors which define the elementary -* reflectors are stored (see also Further Details): -* = 'C': columnwise -* = 'R': rowwise -* -* N (input) INTEGER -* The order of the block reflector H. N >= 0. -* -* K (input) INTEGER -* The order of the triangular factor T (= the number of -* elementary reflectors). K >= 1. -* -* V (input/output) DOUBLE PRECISION array, dimension -* (LDV,K) if STOREV = 'C' -* (LDV,N) if STOREV = 'R' -* The matrix V. See further details. -* -* LDV (input) INTEGER -* The leading dimension of the array V. -* If STOREV = 'C', LDV >= max(1,N); if STOREV = 'R', LDV >= K. -* -* TAU (input) DOUBLE PRECISION array, dimension (K) -* TAU(i) must contain the scalar factor of the elementary -* reflector H(i). -* -* T (output) DOUBLE PRECISION array, dimension (LDT,K) -* The k by k triangular factor T of the block reflector. -* If DIRECT = 'F', T is upper triangular; if DIRECT = 'B', T is -* lower triangular. The rest of the array is not used. -* -* LDT (input) INTEGER -* The leading dimension of the array T. LDT >= K. -* -* Further Details -* =============== -* -* The shape of the matrix V and the storage of the vectors which define -* the H(i) is best illustrated by the following example with n = 5 and -* k = 3. The elements equal to 1 are not stored; the corresponding -* array elements are modified but restored on exit. The rest of the -* array is not used. -* -* DIRECT = 'F' and STOREV = 'C': DIRECT = 'F' and STOREV = 'R': -* -* V = ( 1 ) V = ( 1 v1 v1 v1 v1 ) -* ( v1 1 ) ( 1 v2 v2 v2 ) -* ( v1 v2 1 ) ( 1 v3 v3 ) -* ( v1 v2 v3 ) -* ( v1 v2 v3 ) -* -* DIRECT = 'B' and STOREV = 'C': DIRECT = 'B' and STOREV = 'R': -* -* V = ( v1 v2 v3 ) V = ( v1 v1 1 ) -* ( v1 v2 v3 ) ( v2 v2 v2 1 ) -* ( 1 v2 v3 ) ( v3 v3 v3 v3 1 ) -* ( 1 v3 ) -* ( 1 ) -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE, ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Local Scalars .. - INTEGER I, J - DOUBLE PRECISION VII -* .. -* .. External Subroutines .. - EXTERNAL DGEMV, DTRMV -* .. -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. -* .. Executable Statements .. -* -* Quick return if possible -* - IF( N.EQ.0 ) - $ RETURN -* - IF( LSAME( DIRECT, 'F' ) ) THEN - DO 20 I = 1, K - IF( TAU( I ).EQ.ZERO ) THEN -* -* H(i) = I -* - DO 10 J = 1, I - T( J, I ) = ZERO - 10 CONTINUE - ELSE -* -* general case -* - VII = V( I, I ) - V( I, I ) = ONE - IF( LSAME( STOREV, 'C' ) ) THEN -* -* T(1:i-1,i) := - tau(i) * V(i:n,1:i-1)' * V(i:n,i) -* - CALL DGEMV( 'Transpose', N-I+1, I-1, -TAU( I ), - $ V( I, 1 ), LDV, V( I, I ), 1, ZERO, - $ T( 1, I ), 1 ) - ELSE -* -* T(1:i-1,i) := - tau(i) * V(1:i-1,i:n) * V(i,i:n)' -* - CALL DGEMV( 'No transpose', I-1, N-I+1, -TAU( I ), - $ V( 1, I ), LDV, V( I, I ), LDV, ZERO, - $ T( 1, I ), 1 ) - END IF - V( I, I ) = VII -* -* T(1:i-1,i) := T(1:i-1,1:i-1) * T(1:i-1,i) -* - CALL DTRMV( 'Upper', 'No transpose', 'Non-unit', I-1, T, - $ LDT, T( 1, I ), 1 ) - T( I, I ) = TAU( I ) - END IF - 20 CONTINUE - ELSE - DO 40 I = K, 1, -1 - IF( TAU( I ).EQ.ZERO ) THEN -* -* H(i) = I -* - DO 30 J = I, K - T( J, I ) = ZERO - 30 CONTINUE - ELSE -* -* general case -* - IF( I.LT.K ) THEN - IF( LSAME( STOREV, 'C' ) ) THEN - VII = V( N-K+I, I ) - V( N-K+I, I ) = ONE -* -* T(i+1:k,i) := -* - tau(i) * V(1:n-k+i,i+1:k)' * V(1:n-k+i,i) -* - CALL DGEMV( 'Transpose', N-K+I, K-I, -TAU( I ), - $ V( 1, I+1 ), LDV, V( 1, I ), 1, ZERO, - $ T( I+1, I ), 1 ) - V( N-K+I, I ) = VII - ELSE - VII = V( I, N-K+I ) - V( I, N-K+I ) = ONE -* -* T(i+1:k,i) := -* - tau(i) * V(i+1:k,1:n-k+i) * V(i,1:n-k+i)' -* - CALL DGEMV( 'No transpose', K-I, N-K+I, -TAU( I ), - $ V( I+1, 1 ), LDV, V( I, 1 ), LDV, ZERO, - $ T( I+1, I ), 1 ) - V( I, N-K+I ) = VII - END IF -* -* T(i+1:k,i) := T(i+1:k,i+1:k) * T(i+1:k,i) -* - CALL DTRMV( 'Lower', 'No transpose', 'Non-unit', K-I, - $ T( I+1, I+1 ), LDT, T( I+1, I ), 1 ) - END IF - T( I, I ) = TAU( I ) - END IF - 40 CONTINUE - END IF - RETURN -* -* End of DLARFT -* - END diff --git a/Cantera/ext/lapack/dlartg.f b/Cantera/ext/lapack/dlartg.f deleted file mode 100755 index 502f13eeb..000000000 --- a/Cantera/ext/lapack/dlartg.f +++ /dev/null @@ -1,143 +0,0 @@ - SUBROUTINE DLARTG( F, G, CS, SN, R ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - DOUBLE PRECISION CS, F, G, R, SN -* .. -* -* Purpose -* ======= -* -* DLARTG generate a plane rotation so that -* -* [ CS SN ] . [ F ] = [ R ] where CS**2 + SN**2 = 1. -* [ -SN CS ] [ G ] [ 0 ] -* -* This is a slower, more accurate version of the BLAS1 routine DROTG, -* with the following other differences: -* F and G are unchanged on return. -* If G=0, then CS=1 and SN=0. -* If F=0 and (G .ne. 0), then CS=0 and SN=1 without doing any -* floating point operations (saves work in DBDSQR when -* there are zeros on the diagonal). -* -* If F exceeds G in magnitude, CS will be positive. -* -* Arguments -* ========= -* -* F (input) DOUBLE PRECISION -* The first component of vector to be rotated. -* -* G (input) DOUBLE PRECISION -* The second component of vector to be rotated. -* -* CS (output) DOUBLE PRECISION -* The cosine of the rotation. -* -* SN (output) DOUBLE PRECISION -* The sine of the rotation. -* -* R (output) DOUBLE PRECISION -* The nonzero component of the rotated vector. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D0 ) - DOUBLE PRECISION ONE - PARAMETER ( ONE = 1.0D0 ) - DOUBLE PRECISION TWO - PARAMETER ( TWO = 2.0D0 ) -* .. -* .. Local Scalars .. - LOGICAL FIRST - INTEGER COUNT, I - DOUBLE PRECISION EPS, F1, G1, SAFMIN, SAFMN2, SAFMX2, SCALE -* .. -* .. External Functions .. - DOUBLE PRECISION DLAMCH - EXTERNAL DLAMCH -* .. -* .. Intrinsic Functions .. - INTRINSIC ABS, INT, LOG, MAX, SQRT -* .. -* .. Save statement .. - SAVE FIRST, SAFMX2, SAFMIN, SAFMN2 -* .. -* .. Data statements .. - DATA FIRST / .TRUE. / -* .. -* .. Executable Statements .. -* - IF( FIRST ) THEN - FIRST = .FALSE. - SAFMIN = DLAMCH( 'S' ) - EPS = DLAMCH( 'E' ) - SAFMN2 = DLAMCH( 'B' )**INT( LOG( SAFMIN / EPS ) / - $ LOG( DLAMCH( 'B' ) ) / TWO ) - SAFMX2 = ONE / SAFMN2 - END IF - IF( G.EQ.ZERO ) THEN - CS = ONE - SN = ZERO - R = F - ELSE IF( F.EQ.ZERO ) THEN - CS = ZERO - SN = ONE - R = G - ELSE - F1 = F - G1 = G - SCALE = MAX( ABS( F1 ), ABS( G1 ) ) - IF( SCALE.GE.SAFMX2 ) THEN - COUNT = 0 - 10 CONTINUE - COUNT = COUNT + 1 - F1 = F1*SAFMN2 - G1 = G1*SAFMN2 - SCALE = MAX( ABS( F1 ), ABS( G1 ) ) - IF( SCALE.GE.SAFMX2 ) - $ GO TO 10 - R = SQRT( F1**2+G1**2 ) - CS = F1 / R - SN = G1 / R - DO 20 I = 1, COUNT - R = R*SAFMX2 - 20 CONTINUE - ELSE IF( SCALE.LE.SAFMN2 ) THEN - COUNT = 0 - 30 CONTINUE - COUNT = COUNT + 1 - F1 = F1*SAFMX2 - G1 = G1*SAFMX2 - SCALE = MAX( ABS( F1 ), ABS( G1 ) ) - IF( SCALE.LE.SAFMN2 ) - $ GO TO 30 - R = SQRT( F1**2+G1**2 ) - CS = F1 / R - SN = G1 / R - DO 40 I = 1, COUNT - R = R*SAFMN2 - 40 CONTINUE - ELSE - R = SQRT( F1**2+G1**2 ) - CS = F1 / R - SN = G1 / R - END IF - IF( ABS( F ).GT.ABS( G ) .AND. CS.LT.ZERO ) THEN - CS = -CS - SN = -SN - R = -R - END IF - END IF - RETURN -* -* End of DLARTG -* - END diff --git a/Cantera/ext/lapack/dlas2.f b/Cantera/ext/lapack/dlas2.f deleted file mode 100755 index ad2f337dc..000000000 --- a/Cantera/ext/lapack/dlas2.f +++ /dev/null @@ -1,122 +0,0 @@ - SUBROUTINE DLAS2( F, G, H, SSMIN, SSMAX ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - DOUBLE PRECISION F, G, H, SSMAX, SSMIN -* .. -* -* Purpose -* ======= -* -* DLAS2 computes the singular values of the 2-by-2 matrix -* [ F G ] -* [ 0 H ]. -* On return, SSMIN is the smaller singular value and SSMAX is the -* larger singular value. -* -* Arguments -* ========= -* -* F (input) DOUBLE PRECISION -* The (1,1) element of the 2-by-2 matrix. -* -* G (input) DOUBLE PRECISION -* The (1,2) element of the 2-by-2 matrix. -* -* H (input) DOUBLE PRECISION -* The (2,2) element of the 2-by-2 matrix. -* -* SSMIN (output) DOUBLE PRECISION -* The smaller singular value. -* -* SSMAX (output) DOUBLE PRECISION -* The larger singular value. -* -* Further Details -* =============== -* -* Barring over/underflow, all output quantities are correct to within -* a few units in the last place (ulps), even in the absence of a guard -* digit in addition/subtraction. -* -* In IEEE arithmetic, the code works correctly if one matrix element is -* infinite. -* -* Overflow will not occur unless the largest singular value itself -* overflows, or is within a few ulps of overflow. (On machines with -* partial overflow, like the Cray, overflow may occur if the largest -* singular value is within a factor of 2 of overflow.) -* -* Underflow is harmless if underflow is gradual. Otherwise, results -* may correspond to a matrix modified by perturbations of size near -* the underflow threshold. -* -* ==================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D0 ) - DOUBLE PRECISION ONE - PARAMETER ( ONE = 1.0D0 ) - DOUBLE PRECISION TWO - PARAMETER ( TWO = 2.0D0 ) -* .. -* .. Local Scalars .. - DOUBLE PRECISION AS, AT, AU, C, FA, FHMN, FHMX, GA, HA -* .. -* .. Intrinsic Functions .. - INTRINSIC ABS, MAX, MIN, SQRT -* .. -* .. Executable Statements .. -* - FA = ABS( F ) - GA = ABS( G ) - HA = ABS( H ) - FHMN = MIN( FA, HA ) - FHMX = MAX( FA, HA ) - IF( FHMN.EQ.ZERO ) THEN - SSMIN = ZERO - IF( FHMX.EQ.ZERO ) THEN - SSMAX = GA - ELSE - SSMAX = MAX( FHMX, GA )*SQRT( ONE+ - $ ( MIN( FHMX, GA ) / MAX( FHMX, GA ) )**2 ) - END IF - ELSE - IF( GA.LT.FHMX ) THEN - AS = ONE + FHMN / FHMX - AT = ( FHMX-FHMN ) / FHMX - AU = ( GA / FHMX )**2 - C = TWO / ( SQRT( AS*AS+AU )+SQRT( AT*AT+AU ) ) - SSMIN = FHMN*C - SSMAX = FHMX / C - ELSE - AU = FHMX / GA - IF( AU.EQ.ZERO ) THEN -* -* Avoid possible harmful underflow if exponent range -* asymmetric (true SSMIN may not underflow even if -* AU underflows) -* - SSMIN = ( FHMN*FHMX ) / GA - SSMAX = GA - ELSE - AS = ONE + FHMN / FHMX - AT = ( FHMX-FHMN ) / FHMX - C = ONE / ( SQRT( ONE+( AS*AU )**2 )+ - $ SQRT( ONE+( AT*AU )**2 ) ) - SSMIN = ( FHMN*C )*AU - SSMIN = SSMIN + SSMIN - SSMAX = GA / ( C+C ) - END IF - END IF - END IF - RETURN -* -* End of DLAS2 -* - END diff --git a/Cantera/ext/lapack/dlascl.f b/Cantera/ext/lapack/dlascl.f deleted file mode 100755 index a4d53852e..000000000 --- a/Cantera/ext/lapack/dlascl.f +++ /dev/null @@ -1,268 +0,0 @@ - SUBROUTINE DLASCL( TYPE, KL, KU, CFROM, CTO, M, N, A, LDA, INFO ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - CHARACTER TYPE - INTEGER INFO, KL, KU, LDA, M, N - DOUBLE PRECISION CFROM, CTO -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ) -* .. -* -* Purpose -* ======= -* -* DLASCL multiplies the M by N real matrix A by the real scalar -* CTO/CFROM. This is done without over/underflow as long as the final -* result CTO*A(I,J)/CFROM does not over/underflow. TYPE specifies that -* A may be full, upper triangular, lower triangular, upper Hessenberg, -* or banded. -* -* Arguments -* ========= -* -* TYPE (input) CHARACTER*1 -* TYPE indices the storage type of the input matrix. -* = 'G': A is a full matrix. -* = 'L': A is a lower triangular matrix. -* = 'U': A is an upper triangular matrix. -* = 'H': A is an upper Hessenberg matrix. -* = 'B': A is a symmetric band matrix with lower bandwidth KL -* and upper bandwidth KU and with the only the lower -* half stored. -* = 'Q': A is a symmetric band matrix with lower bandwidth KL -* and upper bandwidth KU and with the only the upper -* half stored. -* = 'Z': A is a band matrix with lower bandwidth KL and upper -* bandwidth KU. -* -* KL (input) INTEGER -* The lower bandwidth of A. Referenced only if TYPE = 'B', -* 'Q' or 'Z'. -* -* KU (input) INTEGER -* The upper bandwidth of A. Referenced only if TYPE = 'B', -* 'Q' or 'Z'. -* -* CFROM (input) DOUBLE PRECISION -* CTO (input) DOUBLE PRECISION -* The matrix A is multiplied by CTO/CFROM. A(I,J) is computed -* without over/underflow if the final result CTO*A(I,J)/CFROM -* can be represented without over/underflow. CFROM must be -* nonzero. -* -* M (input) INTEGER -* The number of rows of the matrix A. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix A. N >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,M) -* The matrix to be multiplied by CTO/CFROM. See TYPE for the -* storage type. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,M). -* -* INFO (output) INTEGER -* 0 - successful exit -* <0 - if INFO = -i, the i-th argument had an illegal value. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO, ONE - PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0 ) -* .. -* .. Local Scalars .. - LOGICAL DONE - INTEGER I, ITYPE, J, K1, K2, K3, K4 - DOUBLE PRECISION BIGNUM, CFROM1, CFROMC, CTO1, CTOC, MUL, SMLNUM -* .. -* .. External Functions .. - LOGICAL LSAME - DOUBLE PRECISION DLAMCH - EXTERNAL LSAME, DLAMCH -* .. -* .. Intrinsic Functions .. - INTRINSIC ABS, MAX, MIN -* .. -* .. External Subroutines .. - EXTERNAL XERBLA -* .. -* .. Executable Statements .. -* -* Test the input arguments -* - INFO = 0 -* - IF( LSAME( TYPE, 'G' ) ) THEN - ITYPE = 0 - ELSE IF( LSAME( TYPE, 'L' ) ) THEN - ITYPE = 1 - ELSE IF( LSAME( TYPE, 'U' ) ) THEN - ITYPE = 2 - ELSE IF( LSAME( TYPE, 'H' ) ) THEN - ITYPE = 3 - ELSE IF( LSAME( TYPE, 'B' ) ) THEN - ITYPE = 4 - ELSE IF( LSAME( TYPE, 'Q' ) ) THEN - ITYPE = 5 - ELSE IF( LSAME( TYPE, 'Z' ) ) THEN - ITYPE = 6 - ELSE - ITYPE = -1 - END IF -* - IF( ITYPE.EQ.-1 ) THEN - INFO = -1 - ELSE IF( CFROM.EQ.ZERO ) THEN - INFO = -4 - ELSE IF( M.LT.0 ) THEN - INFO = -6 - ELSE IF( N.LT.0 .OR. ( ITYPE.EQ.4 .AND. N.NE.M ) .OR. - $ ( ITYPE.EQ.5 .AND. N.NE.M ) ) THEN - INFO = -7 - ELSE IF( ITYPE.LE.3 .AND. LDA.LT.MAX( 1, M ) ) THEN - INFO = -9 - ELSE IF( ITYPE.GE.4 ) THEN - IF( KL.LT.0 .OR. KL.GT.MAX( M-1, 0 ) ) THEN - INFO = -2 - ELSE IF( KU.LT.0 .OR. KU.GT.MAX( N-1, 0 ) .OR. - $ ( ( ITYPE.EQ.4 .OR. ITYPE.EQ.5 ) .AND. KL.NE.KU ) ) - $ THEN - INFO = -3 - ELSE IF( ( ITYPE.EQ.4 .AND. LDA.LT.KL+1 ) .OR. - $ ( ITYPE.EQ.5 .AND. LDA.LT.KU+1 ) .OR. - $ ( ITYPE.EQ.6 .AND. LDA.LT.2*KL+KU+1 ) ) THEN - INFO = -9 - END IF - END IF -* - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DLASCL', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( N.EQ.0 .OR. M.EQ.0 ) - $ RETURN -* -* Get machine parameters -* - SMLNUM = DLAMCH( 'S' ) - BIGNUM = ONE / SMLNUM -* - CFROMC = CFROM - CTOC = CTO -* - 10 CONTINUE - CFROM1 = CFROMC*SMLNUM - CTO1 = CTOC / BIGNUM - IF( ABS( CFROM1 ).GT.ABS( CTOC ) .AND. CTOC.NE.ZERO ) THEN - MUL = SMLNUM - DONE = .FALSE. - CFROMC = CFROM1 - ELSE IF( ABS( CTO1 ).GT.ABS( CFROMC ) ) THEN - MUL = BIGNUM - DONE = .FALSE. - CTOC = CTO1 - ELSE - MUL = CTOC / CFROMC - DONE = .TRUE. - END IF -* - IF( ITYPE.EQ.0 ) THEN -* -* Full matrix -* - DO 30 J = 1, N - DO 20 I = 1, M - A( I, J ) = A( I, J )*MUL - 20 CONTINUE - 30 CONTINUE -* - ELSE IF( ITYPE.EQ.1 ) THEN -* -* Lower triangular matrix -* - DO 50 J = 1, N - DO 40 I = J, M - A( I, J ) = A( I, J )*MUL - 40 CONTINUE - 50 CONTINUE -* - ELSE IF( ITYPE.EQ.2 ) THEN -* -* Upper triangular matrix -* - DO 70 J = 1, N - DO 60 I = 1, MIN( J, M ) - A( I, J ) = A( I, J )*MUL - 60 CONTINUE - 70 CONTINUE -* - ELSE IF( ITYPE.EQ.3 ) THEN -* -* Upper Hessenberg matrix -* - DO 90 J = 1, N - DO 80 I = 1, MIN( J+1, M ) - A( I, J ) = A( I, J )*MUL - 80 CONTINUE - 90 CONTINUE -* - ELSE IF( ITYPE.EQ.4 ) THEN -* -* Lower half of a symmetric band matrix -* - K3 = KL + 1 - K4 = N + 1 - DO 110 J = 1, N - DO 100 I = 1, MIN( K3, K4-J ) - A( I, J ) = A( I, J )*MUL - 100 CONTINUE - 110 CONTINUE -* - ELSE IF( ITYPE.EQ.5 ) THEN -* -* Upper half of a symmetric band matrix -* - K1 = KU + 2 - K3 = KU + 1 - DO 130 J = 1, N - DO 120 I = MAX( K1-J, 1 ), K3 - A( I, J ) = A( I, J )*MUL - 120 CONTINUE - 130 CONTINUE -* - ELSE IF( ITYPE.EQ.6 ) THEN -* -* Band matrix -* - K1 = KL + KU + 2 - K2 = KL + 1 - K3 = 2*KL + KU + 1 - K4 = KL + KU + 1 + M - DO 150 J = 1, N - DO 140 I = MAX( K1-J, K2 ), MIN( K3, K4-J ) - A( I, J ) = A( I, J )*MUL - 140 CONTINUE - 150 CONTINUE -* - END IF -* - IF( .NOT.DONE ) - $ GO TO 10 -* - RETURN -* -* End of DLASCL -* - END diff --git a/Cantera/ext/lapack/dlaset.f b/Cantera/ext/lapack/dlaset.f deleted file mode 100755 index c086b6159..000000000 --- a/Cantera/ext/lapack/dlaset.f +++ /dev/null @@ -1,115 +0,0 @@ - SUBROUTINE DLASET( UPLO, M, N, ALPHA, BETA, A, LDA ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* October 31, 1992 -* -* .. Scalar Arguments .. - CHARACTER UPLO - INTEGER LDA, M, N - DOUBLE PRECISION ALPHA, BETA -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ) -* .. -* -* Purpose -* ======= -* -* DLASET initializes an m-by-n matrix A to BETA on the diagonal and -* ALPHA on the offdiagonals. -* -* Arguments -* ========= -* -* UPLO (input) CHARACTER*1 -* Specifies the part of the matrix A to be set. -* = 'U': Upper triangular part is set; the strictly lower -* triangular part of A is not changed. -* = 'L': Lower triangular part is set; the strictly upper -* triangular part of A is not changed. -* Otherwise: All of the matrix A is set. -* -* M (input) INTEGER -* The number of rows of the matrix A. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix A. N >= 0. -* -* ALPHA (input) DOUBLE PRECISION -* The constant to which the offdiagonal elements are to be set. -* -* BETA (input) DOUBLE PRECISION -* The constant to which the diagonal elements are to be set. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On exit, the leading m-by-n submatrix of A is set as follows: -* -* if UPLO = 'U', A(i,j) = ALPHA, 1<=i<=j-1, 1<=j<=n, -* if UPLO = 'L', A(i,j) = ALPHA, j+1<=i<=m, 1<=j<=n, -* otherwise, A(i,j) = ALPHA, 1<=i<=m, 1<=j<=n, i.ne.j, -* -* and, for all UPLO, A(i,i) = BETA, 1<=i<=min(m,n). -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,M). -* -* ===================================================================== -* -* .. Local Scalars .. - INTEGER I, J -* .. -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. -* .. Intrinsic Functions .. - INTRINSIC MIN -* .. -* .. Executable Statements .. -* - IF( LSAME( UPLO, 'U' ) ) THEN -* -* Set the strictly upper triangular or trapezoidal part of the -* array to ALPHA. -* - DO 20 J = 2, N - DO 10 I = 1, MIN( J-1, M ) - A( I, J ) = ALPHA - 10 CONTINUE - 20 CONTINUE -* - ELSE IF( LSAME( UPLO, 'L' ) ) THEN -* -* Set the strictly lower triangular or trapezoidal part of the -* array to ALPHA. -* - DO 40 J = 1, MIN( M, N ) - DO 30 I = J + 1, M - A( I, J ) = ALPHA - 30 CONTINUE - 40 CONTINUE -* - ELSE -* -* Set the leading m-by-n submatrix to ALPHA. -* - DO 60 J = 1, N - DO 50 I = 1, M - A( I, J ) = ALPHA - 50 CONTINUE - 60 CONTINUE - END IF -* -* Set the first min(M,N) diagonal elements to BETA. -* - DO 70 I = 1, MIN( M, N ) - A( I, I ) = BETA - 70 CONTINUE -* - RETURN -* -* End of DLASET -* - END diff --git a/Cantera/ext/lapack/dlasq1.f b/Cantera/ext/lapack/dlasq1.f deleted file mode 100755 index 5614aabc7..000000000 --- a/Cantera/ext/lapack/dlasq1.f +++ /dev/null @@ -1,222 +0,0 @@ - SUBROUTINE DLASQ1( N, D, E, WORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - INTEGER INFO, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION D( * ), E( * ), WORK( * ) -* .. -* -* Purpose -* ======= -* -* DLASQ1 computes the singular values of a real N-by-N bidiagonal -* matrix with diagonal D and off-diagonal E. The singular values are -* computed to high relative accuracy, barring over/underflow or -* denormalization. The algorithm is described in -* -* "Accurate singular values and differential qd algorithms," by -* K. V. Fernando and B. N. Parlett, -* Numer. Math., Vol-67, No. 2, pp. 191-230,1994. -* -* See also -* "Implementation of differential qd algorithms," by -* K. V. Fernando and B. N. Parlett, Technical Report, -* Department of Mathematics, University of California at Berkeley, -* 1994 (Under preparation). -* -* Arguments -* ========= -* -* N (input) INTEGER -* The number of rows and columns in the matrix. N >= 0. -* -* D (input/output) DOUBLE PRECISION array, dimension (N) -* On entry, D contains the diagonal elements of the -* bidiagonal matrix whose SVD is desired. On normal exit, -* D contains the singular values in decreasing order. -* -* E (input/output) DOUBLE PRECISION array, dimension (N) -* On entry, elements E(1:N-1) contain the off-diagonal elements -* of the bidiagonal matrix whose SVD is desired. -* On exit, E is overwritten. -* -* WORK (workspace) DOUBLE PRECISION array, dimension (2*N) -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* > 0: if INFO = i, the algorithm did not converge; i -* specifies how many superdiagonals did not converge. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION MEIGTH - PARAMETER ( MEIGTH = -0.125D0 ) - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D0 ) - DOUBLE PRECISION ONE - PARAMETER ( ONE = 1.0D0 ) - DOUBLE PRECISION TEN - PARAMETER ( TEN = 10.0D0 ) - DOUBLE PRECISION HUNDRD - PARAMETER ( HUNDRD = 100.0D0 ) - DOUBLE PRECISION TWO56 - PARAMETER ( TWO56 = 256.0D0 ) -* .. -* .. Local Scalars .. - LOGICAL RESTRT - INTEGER I, IERR, J, KE, KEND, M, NY - DOUBLE PRECISION DM, DX, EPS, SCL, SFMIN, SIG1, SIG2, SIGMN, - $ SIGMX, SMALL2, THRESH, TOL, TOL2, TOLMUL -* .. -* .. External Functions .. - DOUBLE PRECISION DLAMCH - EXTERNAL DLAMCH -* .. -* .. External Subroutines .. - EXTERNAL DCOPY, DLAS2, DLASCL, DLASQ2, DLASRT, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC ABS, DBLE, MAX, MIN, SQRT -* .. -* .. Executable Statements .. - INFO = 0 - IF( N.LT.0 ) THEN - INFO = -2 - CALL XERBLA( 'DLASQ1', -INFO ) - RETURN - ELSE IF( N.EQ.0 ) THEN - RETURN - ELSE IF( N.EQ.1 ) THEN - D( 1 ) = ABS( D( 1 ) ) - RETURN - ELSE IF( N.EQ.2 ) THEN - CALL DLAS2( D( 1 ), E( 1 ), D( 2 ), SIGMN, SIGMX ) - D( 1 ) = SIGMX - D( 2 ) = SIGMN - RETURN - END IF -* -* Estimate the largest singular value -* - SIGMX = ZERO - DO 10 I = 1, N - 1 - SIGMX = MAX( SIGMX, ABS( E( I ) ) ) - 10 CONTINUE -* -* Early return if sigmx is zero (matrix is already diagonal) -* - IF( SIGMX.EQ.ZERO ) - $ GO TO 70 -* - DO 20 I = 1, N - D( I ) = ABS( D( I ) ) - SIGMX = MAX( SIGMX, D( I ) ) - 20 CONTINUE -* -* Get machine parameters -* - EPS = DLAMCH( 'EPSILON' ) - SFMIN = DLAMCH( 'SAFE MINIMUM' ) -* -* Compute singular values to relative accuracy TOL -* It is assumed that tol**2 does not underflow. -* - TOLMUL = MAX( TEN, MIN( HUNDRD, EPS**( -MEIGTH ) ) ) - TOL = TOLMUL*EPS - TOL2 = TOL**2 -* - THRESH = SIGMX*SQRT( SFMIN )*TOL -* -* Scale matrix so the square of the largest element is -* 1 / ( 256 * SFMIN ) -* - SCL = SQRT( ONE / ( TWO56*SFMIN ) ) - SMALL2 = ONE / ( TWO56*TOLMUL**2 ) - CALL DCOPY( N, D, 1, WORK( 1 ), 1 ) - CALL DCOPY( N-1, E, 1, WORK( N+1 ), 1 ) - CALL DLASCL( 'G', 0, 0, SIGMX, SCL, N, 1, WORK( 1 ), N, IERR ) - CALL DLASCL( 'G', 0, 0, SIGMX, SCL, N-1, 1, WORK( N+1 ), N-1, - $ IERR ) -* -* Square D and E (the input for the qd algorithm) -* - DO 30 J = 1, 2*N - 1 - WORK( J ) = WORK( J )**2 - 30 CONTINUE -* -* Apply qd algorithm -* - M = 0 - E( N ) = ZERO - DX = WORK( 1 ) - DM = DX - KE = 0 - RESTRT = .FALSE. - DO 60 I = 1, N - IF( ABS( E( I ) ).LE.THRESH .OR. WORK( N+I ).LE.TOL2* - $ ( DM / DBLE( I-M ) ) ) THEN - NY = I - M - IF( NY.EQ.1 ) THEN - GO TO 50 - ELSE IF( NY.EQ.2 ) THEN - CALL DLAS2( D( M+1 ), E( M+1 ), D( M+2 ), SIG1, SIG2 ) - D( M+1 ) = SIG1 - D( M+2 ) = SIG2 - ELSE - KEND = KE + 1 - M - CALL DLASQ2( NY, D( M+1 ), E( M+1 ), WORK( M+1 ), - $ WORK( M+N+1 ), EPS, TOL2, SMALL2, DM, KEND, - $ INFO ) -* -* Return, INFO = number of unconverged superdiagonals -* - IF( INFO.NE.0 ) THEN - INFO = INFO + I - RETURN - END IF -* -* Undo scaling -* - DO 40 J = M + 1, M + NY - D( J ) = SQRT( D( J ) ) - 40 CONTINUE - CALL DLASCL( 'G', 0, 0, SCL, SIGMX, NY, 1, D( M+1 ), NY, - $ IERR ) - END IF - 50 CONTINUE - M = I - IF( I.NE.N ) THEN - DX = WORK( I+1 ) - DM = DX - KE = I - RESTRT = .TRUE. - END IF - END IF - IF( I.NE.N .AND. .NOT.RESTRT ) THEN - DX = WORK( I+1 )*( DX / ( DX+WORK( N+I ) ) ) - IF( DM.GT.DX ) THEN - DM = DX - KE = I - END IF - END IF - RESTRT = .FALSE. - 60 CONTINUE - KEND = KE + 1 -* -* Sort the singular values into decreasing order -* - 70 CONTINUE - CALL DLASRT( 'D', N, D, INFO ) - RETURN -* -* End of DLASQ1 -* - END diff --git a/Cantera/ext/lapack/dlasq2.f b/Cantera/ext/lapack/dlasq2.f deleted file mode 100755 index 14112a673..000000000 --- a/Cantera/ext/lapack/dlasq2.f +++ /dev/null @@ -1,268 +0,0 @@ - SUBROUTINE DLASQ2( M, Q, E, QQ, EE, EPS, TOL2, SMALL2, SUP, KEND, - $ INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - INTEGER INFO, KEND, M - DOUBLE PRECISION EPS, SMALL2, SUP, TOL2 -* .. -* .. Array Arguments .. - DOUBLE PRECISION E( * ), EE( * ), Q( * ), QQ( * ) -* .. -* -* Purpose -* ======= -* -* DLASQ2 computes the singular values of a real N-by-N unreduced -* bidiagonal matrix with squared diagonal elements in Q and -* squared off-diagonal elements in E. The singular values are -* computed to relative accuracy TOL, barring over/underflow or -* denormalization. -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows and columns in the matrix. M >= 0. -* -* Q (output) DOUBLE PRECISION array, dimension (M) -* On normal exit, contains the squared singular values. -* -* E (workspace) DOUBLE PRECISION array, dimension (M) -* -* QQ (input/output) DOUBLE PRECISION array, dimension (M) -* On entry, QQ contains the squared diagonal elements of the -* bidiagonal matrix whose SVD is desired. -* On exit, QQ is overwritten. -* -* EE (input/output) DOUBLE PRECISION array, dimension (M) -* On entry, EE(1:N-1) contains the squared off-diagonal -* elements of the bidiagonal matrix whose SVD is desired. -* On exit, EE is overwritten. -* -* EPS (input) DOUBLE PRECISION -* Machine epsilon. -* -* TOL2 (input) DOUBLE PRECISION -* Desired relative accuracy of computed eigenvalues -* as defined in DLASQ1. -* -* SMALL2 (input) DOUBLE PRECISION -* A threshold value as defined in DLASQ1. -* -* SUP (input/output) DOUBLE PRECISION -* Upper bound for the smallest eigenvalue. -* -* KEND (input/output) INTEGER -* Index where minimum d occurs. -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* > 0: if INFO = i, the algorithm did not converge; i -* specifies how many superdiagonals did not converge. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D+0 ) - DOUBLE PRECISION FOUR, HALF - PARAMETER ( FOUR = 4.0D+0, HALF = 0.5D+0 ) -* .. -* .. Local Scalars .. - INTEGER ICONV, IPHASE, ISP, N, OFF, OFF1 - DOUBLE PRECISION QEMAX, SIGMA, XINF, XX, YY -* .. -* .. External Subroutines .. - EXTERNAL DLASQ3 -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN, NINT, SQRT -* .. -* .. Executable Statements .. - N = M -* -* Set the default maximum number of iterations -* - OFF = 0 - OFF1 = OFF + 1 - SIGMA = ZERO - XINF = ZERO - ICONV = 0 - IPHASE = 2 -* -* Try deflation at the bottom -* -* 1x1 deflation -* - 10 CONTINUE - IF( N.LE.2 ) - $ GO TO 20 - IF( EE( N-1 ).LE.MAX( QQ( N ), XINF, SMALL2 )*TOL2 ) THEN - Q( N ) = QQ( N ) - N = N - 1 - IF( KEND.GT.N ) - $ KEND = N - SUP = MIN( QQ( N ), QQ( N-1 ) ) - GO TO 10 - END IF -* -* 2x2 deflation -* - IF( EE( N-2 ).LE.MAX( XINF, SMALL2, - $ ( QQ( N ) / ( QQ( N )+EE( N-1 )+QQ( N-1 ) ) )*QQ( N-1 ) )* - $ TOL2 ) THEN - QEMAX = MAX( QQ( N ), QQ( N-1 ), EE( N-1 ) ) - IF( QEMAX.NE.ZERO ) THEN - IF( QEMAX.EQ.QQ( N-1 ) ) THEN - XX = HALF*( QQ( N )+QQ( N-1 )+EE( N-1 )+QEMAX* - $ SQRT( ( ( QQ( N )-QQ( N-1 )+EE( N-1 ) ) / - $ QEMAX )**2+FOUR*EE( N-1 ) / QEMAX ) ) - ELSE IF( QEMAX.EQ.QQ( N ) ) THEN - XX = HALF*( QQ( N )+QQ( N-1 )+EE( N-1 )+QEMAX* - $ SQRT( ( ( QQ( N-1 )-QQ( N )+EE( N-1 ) ) / - $ QEMAX )**2+FOUR*EE( N-1 ) / QEMAX ) ) - ELSE - XX = HALF*( QQ( N )+QQ( N-1 )+EE( N-1 )+QEMAX* - $ SQRT( ( ( QQ( N )-QQ( N-1 )+EE( N-1 ) ) / - $ QEMAX )**2+FOUR*QQ( N-1 ) / QEMAX ) ) - END IF - YY = ( MAX( QQ( N ), QQ( N-1 ) ) / XX )* - $ MIN( QQ( N ), QQ( N-1 ) ) - ELSE - XX = ZERO - YY = ZERO - END IF - Q( N-1 ) = XX - Q( N ) = YY - N = N - 2 - IF( KEND.GT.N ) - $ KEND = N - SUP = QQ( N ) - GO TO 10 - END IF -* - 20 CONTINUE - IF( N.EQ.0 ) THEN -* -* The lower branch is finished -* - IF( OFF.EQ.0 ) THEN -* -* No upper branch; return to DLASQ1 -* - RETURN - ELSE -* -* Going back to upper branch -* - XINF = ZERO - IF( EE( OFF ).GT.ZERO ) THEN - ISP = NINT( EE( OFF ) ) - IPHASE = 1 - ELSE - ISP = -NINT( EE( OFF ) ) - IPHASE = 2 - END IF - SIGMA = E( OFF ) - N = OFF - ISP + 1 - OFF1 = ISP - OFF = OFF1 - 1 - IF( N.LE.2 ) - $ GO TO 20 - IF( IPHASE.EQ.1 ) THEN - SUP = MIN( Q( N+OFF ), Q( N-1+OFF ), Q( N-2+OFF ) ) - ELSE - SUP = MIN( QQ( N+OFF ), QQ( N-1+OFF ), QQ( N-2+OFF ) ) - END IF - KEND = 0 - ICONV = -3 - END IF - ELSE IF( N.EQ.1 ) THEN -* -* 1x1 Solver -* - IF( IPHASE.EQ.1 ) THEN - Q( OFF1 ) = Q( OFF1 ) + SIGMA - ELSE - Q( OFF1 ) = QQ( OFF1 ) + SIGMA - END IF - N = 0 - GO TO 20 -* -* 2x2 Solver -* - ELSE IF( N.EQ.2 ) THEN - IF( IPHASE.EQ.2 ) THEN - QEMAX = MAX( QQ( N+OFF ), QQ( N-1+OFF ), EE( N-1+OFF ) ) - IF( QEMAX.NE.ZERO ) THEN - IF( QEMAX.EQ.QQ( N-1+OFF ) ) THEN - XX = HALF*( QQ( N+OFF )+QQ( N-1+OFF )+EE( N-1+OFF )+ - $ QEMAX*SQRT( ( ( QQ( N+OFF )-QQ( N-1+OFF )+EE( N- - $ 1+OFF ) ) / QEMAX )**2+FOUR*EE( OFF+N-1 ) / - $ QEMAX ) ) - ELSE IF( QEMAX.EQ.QQ( N+OFF ) ) THEN - XX = HALF*( QQ( N+OFF )+QQ( N-1+OFF )+EE( N-1+OFF )+ - $ QEMAX*SQRT( ( ( QQ( N-1+OFF )-QQ( N+OFF )+EE( N- - $ 1+OFF ) ) / QEMAX )**2+FOUR*EE( N-1+OFF ) / - $ QEMAX ) ) - ELSE - XX = HALF*( QQ( N+OFF )+QQ( N-1+OFF )+EE( N-1+OFF )+ - $ QEMAX*SQRT( ( ( QQ( N+OFF )-QQ( N-1+OFF )+EE( N- - $ 1+OFF ) ) / QEMAX )**2+FOUR*QQ( N-1+OFF ) / - $ QEMAX ) ) - END IF - YY = ( MAX( QQ( N+OFF ), QQ( N-1+OFF ) ) / XX )* - $ MIN( QQ( N+OFF ), QQ( N-1+OFF ) ) - ELSE - XX = ZERO - YY = ZERO - END IF - ELSE - QEMAX = MAX( Q( N+OFF ), Q( N-1+OFF ), E( N-1+OFF ) ) - IF( QEMAX.NE.ZERO ) THEN - IF( QEMAX.EQ.Q( N-1+OFF ) ) THEN - XX = HALF*( Q( N+OFF )+Q( N-1+OFF )+E( N-1+OFF )+ - $ QEMAX*SQRT( ( ( Q( N+OFF )-Q( N-1+OFF )+E( N-1+ - $ OFF ) ) / QEMAX )**2+FOUR*E( N-1+OFF ) / - $ QEMAX ) ) - ELSE IF( QEMAX.EQ.Q( N+OFF ) ) THEN - XX = HALF*( Q( N+OFF )+Q( N-1+OFF )+E( N-1+OFF )+ - $ QEMAX*SQRT( ( ( Q( N-1+OFF )-Q( N+OFF )+E( N-1+ - $ OFF ) ) / QEMAX )**2+FOUR*E( N-1+OFF ) / - $ QEMAX ) ) - ELSE - XX = HALF*( Q( N+OFF )+Q( N-1+OFF )+E( N-1+OFF )+ - $ QEMAX*SQRT( ( ( Q( N+OFF )-Q( N-1+OFF )+E( N-1+ - $ OFF ) ) / QEMAX )**2+FOUR*Q( N-1+OFF ) / - $ QEMAX ) ) - END IF - YY = ( MAX( Q( N+OFF ), Q( N-1+OFF ) ) / XX )* - $ MIN( Q( N+OFF ), Q( N-1+OFF ) ) - ELSE - XX = ZERO - YY = ZERO - END IF - END IF - Q( N-1+OFF ) = SIGMA + XX - Q( N+OFF ) = YY + SIGMA - N = 0 - GO TO 20 - END IF - CALL DLASQ3( N, Q( OFF1 ), E( OFF1 ), QQ( OFF1 ), EE( OFF1 ), SUP, - $ SIGMA, KEND, OFF, IPHASE, ICONV, EPS, TOL2, SMALL2 ) - IF( SUP.LT.ZERO ) THEN - INFO = N + OFF - RETURN - END IF - OFF1 = OFF + 1 - GO TO 20 -* -* End of DLASQ2 -* - END diff --git a/Cantera/ext/lapack/dlasq3.f b/Cantera/ext/lapack/dlasq3.f deleted file mode 100755 index 03daaaf4c..000000000 --- a/Cantera/ext/lapack/dlasq3.f +++ /dev/null @@ -1,820 +0,0 @@ - SUBROUTINE DLASQ3( N, Q, E, QQ, EE, SUP, SIGMA, KEND, OFF, IPHASE, - $ ICONV, EPS, TOL2, SMALL2 ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - INTEGER ICONV, IPHASE, KEND, N, OFF - DOUBLE PRECISION EPS, SIGMA, SMALL2, SUP, TOL2 -* .. -* .. Array Arguments .. - DOUBLE PRECISION E( * ), EE( * ), Q( * ), QQ( * ) -* .. -* -* Purpose -* ======= -* -* DLASQ3 is the workhorse of the whole bidiagonal SVD algorithm. -* This can be described as the differential qd with shifts. -* -* Arguments -* ========= -* -* N (input/output) INTEGER -* On entry, N specifies the number of rows and columns -* in the matrix. N must be at least 3. -* On exit N is non-negative and less than the input value. -* -* Q (input/output) DOUBLE PRECISION array, dimension (N) -* Q array in ping (see IPHASE below) -* -* E (input/output) DOUBLE PRECISION array, dimension (N) -* E array in ping (see IPHASE below) -* -* QQ (input/output) DOUBLE PRECISION array, dimension (N) -* Q array in pong (see IPHASE below) -* -* EE (input/output) DOUBLE PRECISION array, dimension (N) -* E array in pong (see IPHASE below) -* -* SUP (input/output) DOUBLE PRECISION -* Upper bound for the smallest eigenvalue -* -* SIGMA (input/output) DOUBLE PRECISION -* Accumulated shift for the present submatrix -* -* KEND (input/output) INTEGER -* Index where minimum D(i) occurs in recurrence for -* splitting criterion -* -* OFF (input/output) INTEGER -* Offset for arrays -* -* IPHASE (input/output) INTEGER -* If IPHASE = 1 (ping) then data is in Q and E arrays -* If IPHASE = 2 (pong) then data is in QQ and EE arrays -* -* ICONV (input) INTEGER -* If ICONV = 0 a bottom part of a matrix (with a split) -* If ICONV =-3 a top part of a matrix (with a split) -* -* EPS (input) DOUBLE PRECISION -* Machine epsilon -* -* TOL2 (input) DOUBLE PRECISION -* Square of the relative tolerance TOL as defined in DLASQ1 -* -* SMALL2 (input) DOUBLE PRECISION -* A threshold value as defined in DLASQ1 -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE, ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) - INTEGER NPP - PARAMETER ( NPP = 32 ) - INTEGER IPP - PARAMETER ( IPP = 5 ) - DOUBLE PRECISION HALF, FOUR - PARAMETER ( HALF = 0.5D+0, FOUR = 4.0D+0 ) - INTEGER IFLMAX - PARAMETER ( IFLMAX = 2 ) -* .. -* .. Local Scalars .. - LOGICAL LDEF, LSPLIT - INTEGER I, IC, ICNT, IFL, IP, ISP, K1END, K2END, KE, - $ KS, MAXIT, N1, N2 - DOUBLE PRECISION D, DM, QEMAX, T1, TAU, TOLX, TOLY, TOLZ, XX, YY -* .. -* .. External Subroutines .. - EXTERNAL DCOPY, DLASQ4 -* .. -* .. Intrinsic Functions .. - INTRINSIC ABS, MAX, MIN, SQRT -* .. -* .. Executable Statements .. - ICNT = 0 - TAU = ZERO - DM = SUP - TOLX = SIGMA*TOL2 - TOLZ = MAX( SMALL2, SIGMA )*TOL2 -* -* Set maximum number of iterations -* - MAXIT = 100*N -* -* Flipping -* - IC = 2 - IF( N.GT.3 ) THEN - IF( IPHASE.EQ.1 ) THEN - DO 10 I = 1, N - 2 - IF( Q( I ).GT.Q( I+1 ) ) - $ IC = IC + 1 - IF( E( I ).GT.E( I+1 ) ) - $ IC = IC + 1 - 10 CONTINUE - IF( Q( N-1 ).GT.Q( N ) ) - $ IC = IC + 1 - IF( IC.LT.N ) THEN - CALL DCOPY( N, Q, 1, QQ, -1 ) - CALL DCOPY( N-1, E, 1, EE, -1 ) - IF( KEND.NE.0 ) - $ KEND = N - KEND + 1 - IPHASE = 2 - END IF - ELSE - DO 20 I = 1, N - 2 - IF( QQ( I ).GT.QQ( I+1 ) ) - $ IC = IC + 1 - IF( EE( I ).GT.EE( I+1 ) ) - $ IC = IC + 1 - 20 CONTINUE - IF( QQ( N-1 ).GT.QQ( N ) ) - $ IC = IC + 1 - IF( IC.LT.N ) THEN - CALL DCOPY( N, QQ, 1, Q, -1 ) - CALL DCOPY( N-1, EE, 1, E, -1 ) - IF( KEND.NE.0 ) - $ KEND = N - KEND + 1 - IPHASE = 1 - END IF - END IF - END IF - IF( ICONV.EQ.-3 ) THEN - IF( IPHASE.EQ.1 ) THEN - GO TO 180 - ELSE - GO TO 80 - END IF - END IF - IF( IPHASE.EQ.2 ) - $ GO TO 130 -* -* The ping section of the code -* - 30 CONTINUE - IFL = 0 -* -* Compute the shift -* - IF( KEND.EQ.0 .OR. SUP.EQ.ZERO ) THEN - TAU = ZERO - ELSE IF( ICNT.GT.0 .AND. DM.LE.TOLZ ) THEN - TAU = ZERO - ELSE - IP = MAX( IPP, N / NPP ) - N2 = 2*IP + 1 - IF( N2.GE.N ) THEN - N1 = 1 - N2 = N - ELSE IF( KEND+IP.GT.N ) THEN - N1 = N - 2*IP - ELSE IF( KEND-IP.LT.1 ) THEN - N1 = 1 - ELSE - N1 = KEND - IP - END IF - CALL DLASQ4( N2, Q( N1 ), E( N1 ), TAU, SUP ) - END IF - 40 CONTINUE - ICNT = ICNT + 1 - IF( ICNT.GT.MAXIT ) THEN - SUP = -ONE - RETURN - END IF - IF( TAU.EQ.ZERO ) THEN -* -* dqd algorithm -* - D = Q( 1 ) - DM = D - KE = 0 - DO 50 I = 1, N - 3 - QQ( I ) = D + E( I ) - D = ( D / QQ( I ) )*Q( I+1 ) - IF( DM.GT.D ) THEN - DM = D - KE = I - END IF - 50 CONTINUE - KE = KE + 1 -* -* Penultimate dqd step (in ping) -* - K2END = KE - QQ( N-2 ) = D + E( N-2 ) - D = ( D / QQ( N-2 ) )*Q( N-1 ) - IF( DM.GT.D ) THEN - DM = D - KE = N - 1 - END IF -* -* Final dqd step (in ping) -* - K1END = KE - QQ( N-1 ) = D + E( N-1 ) - D = ( D / QQ( N-1 ) )*Q( N ) - IF( DM.GT.D ) THEN - DM = D - KE = N - END IF - QQ( N ) = D - ELSE -* -* The dqds algorithm (in ping) -* - D = Q( 1 ) - TAU - DM = D - KE = 0 - IF( D.LT.ZERO ) - $ GO TO 120 - DO 60 I = 1, N - 3 - QQ( I ) = D + E( I ) - D = ( D / QQ( I ) )*Q( I+1 ) - TAU - IF( DM.GT.D ) THEN - DM = D - KE = I - IF( D.LT.ZERO ) - $ GO TO 120 - END IF - 60 CONTINUE - KE = KE + 1 -* -* Penultimate dqds step (in ping) -* - K2END = KE - QQ( N-2 ) = D + E( N-2 ) - D = ( D / QQ( N-2 ) )*Q( N-1 ) - TAU - IF( DM.GT.D ) THEN - DM = D - KE = N - 1 - IF( D.LT.ZERO ) - $ GO TO 120 - END IF -* -* Final dqds step (in ping) -* - K1END = KE - QQ( N-1 ) = D + E( N-1 ) - D = ( D / QQ( N-1 ) )*Q( N ) - TAU - IF( DM.GT.D ) THEN - DM = D - KE = N - END IF - QQ( N ) = D - END IF -* -* Convergence when QQ(N) is small (in ping) -* - IF( ABS( QQ( N ) ).LE.SIGMA*TOL2 ) THEN - QQ( N ) = ZERO - DM = ZERO - KE = N - END IF - IF( QQ( N ).LT.ZERO ) - $ GO TO 120 -* -* Non-negative qd array: Update the e's -* - DO 70 I = 1, N - 1 - EE( I ) = ( E( I ) / QQ( I ) )*Q( I+1 ) - 70 CONTINUE -* -* Updating sigma and iphase in ping -* - SIGMA = SIGMA + TAU - IPHASE = 2 - 80 CONTINUE - TOLX = SIGMA*TOL2 - TOLY = SIGMA*EPS - TOLZ = MAX( SIGMA, SMALL2 )*TOL2 -* -* Checking for deflation and convergence (in ping) -* - 90 CONTINUE - IF( N.LE.2 ) - $ RETURN -* -* Deflation: bottom 1x1 (in ping) -* - LDEF = .FALSE. - IF( EE( N-1 ).LE.TOLZ ) THEN - LDEF = .TRUE. - ELSE IF( SIGMA.GT.ZERO ) THEN - IF( EE( N-1 ).LE.EPS*( SIGMA+QQ( N ) ) ) THEN - IF( EE( N-1 )*( QQ( N ) / ( QQ( N )+SIGMA ) ).LE.TOL2* - $ ( QQ( N )+SIGMA ) ) THEN - LDEF = .TRUE. - END IF - END IF - ELSE - IF( EE( N-1 ).LE.QQ( N )*TOL2 ) THEN - LDEF = .TRUE. - END IF - END IF - IF( LDEF ) THEN - Q( N ) = QQ( N ) + SIGMA - N = N - 1 - ICONV = ICONV + 1 - GO TO 90 - END IF -* -* Deflation: bottom 2x2 (in ping) -* - LDEF = .FALSE. - IF( EE( N-2 ).LE.TOLZ ) THEN - LDEF = .TRUE. - ELSE IF( SIGMA.GT.ZERO ) THEN - T1 = SIGMA + EE( N-1 )*( SIGMA / ( SIGMA+QQ( N ) ) ) - IF( EE( N-2 )*( T1 / ( QQ( N-1 )+T1 ) ).LE.TOLY ) THEN - IF( EE( N-2 )*( QQ( N-1 ) / ( QQ( N-1 )+T1 ) ).LE.TOLX ) - $ THEN - LDEF = .TRUE. - END IF - END IF - ELSE - IF( EE( N-2 ).LE.( QQ( N ) / ( QQ( N )+EE( N-1 )+QQ( N-1 ) ) )* - $ QQ( N-1 )*TOL2 ) THEN - LDEF = .TRUE. - END IF - END IF - IF( LDEF ) THEN - QEMAX = MAX( QQ( N ), QQ( N-1 ), EE( N-1 ) ) - IF( QEMAX.NE.ZERO ) THEN - IF( QEMAX.EQ.QQ( N-1 ) ) THEN - XX = HALF*( QQ( N )+QQ( N-1 )+EE( N-1 )+QEMAX* - $ SQRT( ( ( QQ( N )-QQ( N-1 )+EE( N-1 ) ) / - $ QEMAX )**2+FOUR*EE( N-1 ) / QEMAX ) ) - ELSE IF( QEMAX.EQ.QQ( N ) ) THEN - XX = HALF*( QQ( N )+QQ( N-1 )+EE( N-1 )+QEMAX* - $ SQRT( ( ( QQ( N-1 )-QQ( N )+EE( N-1 ) ) / - $ QEMAX )**2+FOUR*EE( N-1 ) / QEMAX ) ) - ELSE - XX = HALF*( QQ( N )+QQ( N-1 )+EE( N-1 )+QEMAX* - $ SQRT( ( ( QQ( N )-QQ( N-1 )+EE( N-1 ) ) / - $ QEMAX )**2+FOUR*QQ( N-1 ) / QEMAX ) ) - END IF - YY = ( MAX( QQ( N ), QQ( N-1 ) ) / XX )* - $ MIN( QQ( N ), QQ( N-1 ) ) - ELSE - XX = ZERO - YY = ZERO - END IF - Q( N-1 ) = SIGMA + XX - Q( N ) = YY + SIGMA - N = N - 2 - ICONV = ICONV + 2 - GO TO 90 - END IF -* -* Updating bounds before going to pong -* - IF( ICONV.EQ.0 ) THEN - KEND = KE - SUP = MIN( DM, SUP-TAU ) - ELSE IF( ICONV.GT.0 ) THEN - SUP = MIN( QQ( N ), QQ( N-1 ), QQ( N-2 ), QQ( 1 ), QQ( 2 ), - $ QQ( 3 ) ) - IF( ICONV.EQ.1 ) THEN - KEND = K1END - ELSE IF( ICONV.EQ.2 ) THEN - KEND = K2END - ELSE - KEND = N - END IF - ICNT = 0 - MAXIT = 100*N - END IF -* -* Checking for splitting in ping -* - LSPLIT = .FALSE. - DO 100 KS = N - 3, 3, -1 - IF( EE( KS ).LE.TOLY ) THEN - IF( EE( KS )*( MIN( QQ( KS+1 ), - $ QQ( KS ) ) / ( MIN( QQ( KS+1 ), QQ( KS ) )+SIGMA ) ).LE. - $ TOLX ) THEN - LSPLIT = .TRUE. - GO TO 110 - END IF - END IF - 100 CONTINUE -* - KS = 2 - IF( EE( 2 ).LE.TOLZ ) THEN - LSPLIT = .TRUE. - ELSE IF( SIGMA.GT.ZERO ) THEN - T1 = SIGMA + EE( 1 )*( SIGMA / ( SIGMA+QQ( 1 ) ) ) - IF( EE( 2 )*( T1 / ( QQ( 1 )+T1 ) ).LE.TOLY ) THEN - IF( EE( 2 )*( QQ( 1 ) / ( QQ( 1 )+T1 ) ).LE.TOLX ) THEN - LSPLIT = .TRUE. - END IF - END IF - ELSE - IF( EE( 2 ).LE.( QQ( 1 ) / ( QQ( 1 )+EE( 1 )+QQ( 2 ) ) )* - $ QQ( 2 )*TOL2 ) THEN - LSPLIT = .TRUE. - END IF - END IF - IF( LSPLIT ) - $ GO TO 110 -* - KS = 1 - IF( EE( 1 ).LE.TOLZ ) THEN - LSPLIT = .TRUE. - ELSE IF( SIGMA.GT.ZERO ) THEN - IF( EE( 1 ).LE.EPS*( SIGMA+QQ( 1 ) ) ) THEN - IF( EE( 1 )*( QQ( 1 ) / ( QQ( 1 )+SIGMA ) ).LE.TOL2* - $ ( QQ( 1 )+SIGMA ) ) THEN - LSPLIT = .TRUE. - END IF - END IF - ELSE - IF( EE( 1 ).LE.QQ( 1 )*TOL2 ) THEN - LSPLIT = .TRUE. - END IF - END IF -* - 110 CONTINUE - IF( LSPLIT ) THEN - SUP = MIN( QQ( N ), QQ( N-1 ), QQ( N-2 ) ) - ISP = -( OFF+1 ) - OFF = OFF + KS - N = N - KS - KEND = MAX( 1, KEND-KS ) - E( KS ) = SIGMA - EE( KS ) = ISP - ICONV = 0 - RETURN - END IF -* -* Coincidence -* - IF( TAU.EQ.ZERO .AND. DM.LE.TOLZ .AND. KEND.NE.N .AND. ICONV.EQ. - $ 0 .AND. ICNT.GT.0 ) THEN - CALL DCOPY( N-KE, E( KE ), 1, QQ( KE ), 1 ) - QQ( N ) = ZERO - CALL DCOPY( N-KE, Q( KE+1 ), 1, EE( KE ), 1 ) - SUP = ZERO - END IF - ICONV = 0 - GO TO 130 -* -* A new shift when the previous failed (in ping) -* - 120 CONTINUE - IFL = IFL + 1 - SUP = TAU -* -* SUP is small or -* Too many bad shifts (ping) -* - IF( SUP.LE.TOLZ .OR. IFL.GE.IFLMAX ) THEN - TAU = ZERO - GO TO 40 -* -* The asymptotic shift (in ping) -* - ELSE - TAU = MAX( TAU+D, ZERO ) - IF( TAU.LE.TOLZ ) - $ TAU = ZERO - GO TO 40 - END IF -* -* the pong section of the code -* - 130 CONTINUE - IFL = 0 -* -* Compute the shift (in pong) -* - IF( KEND.EQ.0 .AND. SUP.EQ.ZERO ) THEN - TAU = ZERO - ELSE IF( ICNT.GT.0 .AND. DM.LE.TOLZ ) THEN - TAU = ZERO - ELSE - IP = MAX( IPP, N / NPP ) - N2 = 2*IP + 1 - IF( N2.GE.N ) THEN - N1 = 1 - N2 = N - ELSE IF( KEND+IP.GT.N ) THEN - N1 = N - 2*IP - ELSE IF( KEND-IP.LT.1 ) THEN - N1 = 1 - ELSE - N1 = KEND - IP - END IF - CALL DLASQ4( N2, QQ( N1 ), EE( N1 ), TAU, SUP ) - END IF - 140 CONTINUE - ICNT = ICNT + 1 - IF( ICNT.GT.MAXIT ) THEN - SUP = -SUP - RETURN - END IF - IF( TAU.EQ.ZERO ) THEN -* -* The dqd algorithm (in pong) -* - D = QQ( 1 ) - DM = D - KE = 0 - DO 150 I = 1, N - 3 - Q( I ) = D + EE( I ) - D = ( D / Q( I ) )*QQ( I+1 ) - IF( DM.GT.D ) THEN - DM = D - KE = I - END IF - 150 CONTINUE - KE = KE + 1 -* -* Penultimate dqd step (in pong) -* - K2END = KE - Q( N-2 ) = D + EE( N-2 ) - D = ( D / Q( N-2 ) )*QQ( N-1 ) - IF( DM.GT.D ) THEN - DM = D - KE = N - 1 - END IF -* -* Final dqd step (in pong) -* - K1END = KE - Q( N-1 ) = D + EE( N-1 ) - D = ( D / Q( N-1 ) )*QQ( N ) - IF( DM.GT.D ) THEN - DM = D - KE = N - END IF - Q( N ) = D - ELSE -* -* The dqds algorithm (in pong) -* - D = QQ( 1 ) - TAU - DM = D - KE = 0 - IF( D.LT.ZERO ) - $ GO TO 220 - DO 160 I = 1, N - 3 - Q( I ) = D + EE( I ) - D = ( D / Q( I ) )*QQ( I+1 ) - TAU - IF( DM.GT.D ) THEN - DM = D - KE = I - IF( D.LT.ZERO ) - $ GO TO 220 - END IF - 160 CONTINUE - KE = KE + 1 -* -* Penultimate dqds step (in pong) -* - K2END = KE - Q( N-2 ) = D + EE( N-2 ) - D = ( D / Q( N-2 ) )*QQ( N-1 ) - TAU - IF( DM.GT.D ) THEN - DM = D - KE = N - 1 - IF( D.LT.ZERO ) - $ GO TO 220 - END IF -* -* Final dqds step (in pong) -* - K1END = KE - Q( N-1 ) = D + EE( N-1 ) - D = ( D / Q( N-1 ) )*QQ( N ) - TAU - IF( DM.GT.D ) THEN - DM = D - KE = N - END IF - Q( N ) = D - END IF -* -* Convergence when is small (in pong) -* - IF( ABS( Q( N ) ).LE.SIGMA*TOL2 ) THEN - Q( N ) = ZERO - DM = ZERO - KE = N - END IF - IF( Q( N ).LT.ZERO ) - $ GO TO 220 -* -* Non-negative qd array: Update the e's -* - DO 170 I = 1, N - 1 - E( I ) = ( EE( I ) / Q( I ) )*QQ( I+1 ) - 170 CONTINUE -* -* Updating sigma and iphase in pong -* - SIGMA = SIGMA + TAU - 180 CONTINUE - IPHASE = 1 - TOLX = SIGMA*TOL2 - TOLY = SIGMA*EPS -* -* Checking for deflation and convergence (in pong) -* - 190 CONTINUE - IF( N.LE.2 ) - $ RETURN -* -* Deflation: bottom 1x1 (in pong) -* - LDEF = .FALSE. - IF( E( N-1 ).LE.TOLZ ) THEN - LDEF = .TRUE. - ELSE IF( SIGMA.GT.ZERO ) THEN - IF( E( N-1 ).LE.EPS*( SIGMA+Q( N ) ) ) THEN - IF( E( N-1 )*( Q( N ) / ( Q( N )+SIGMA ) ).LE.TOL2* - $ ( Q( N )+SIGMA ) ) THEN - LDEF = .TRUE. - END IF - END IF - ELSE - IF( E( N-1 ).LE.Q( N )*TOL2 ) THEN - LDEF = .TRUE. - END IF - END IF - IF( LDEF ) THEN - Q( N ) = Q( N ) + SIGMA - N = N - 1 - ICONV = ICONV + 1 - GO TO 190 - END IF -* -* Deflation: bottom 2x2 (in pong) -* - LDEF = .FALSE. - IF( E( N-2 ).LE.TOLZ ) THEN - LDEF = .TRUE. - ELSE IF( SIGMA.GT.ZERO ) THEN - T1 = SIGMA + E( N-1 )*( SIGMA / ( SIGMA+Q( N ) ) ) - IF( E( N-2 )*( T1 / ( Q( N-1 )+T1 ) ).LE.TOLY ) THEN - IF( E( N-2 )*( Q( N-1 ) / ( Q( N-1 )+T1 ) ).LE.TOLX ) THEN - LDEF = .TRUE. - END IF - END IF - ELSE - IF( E( N-2 ).LE.( Q( N ) / ( Q( N )+EE( N-1 )+Q( N-1 ) )*Q( N- - $ 1 ) )*TOL2 ) THEN - LDEF = .TRUE. - END IF - END IF - IF( LDEF ) THEN - QEMAX = MAX( Q( N ), Q( N-1 ), E( N-1 ) ) - IF( QEMAX.NE.ZERO ) THEN - IF( QEMAX.EQ.Q( N-1 ) ) THEN - XX = HALF*( Q( N )+Q( N-1 )+E( N-1 )+QEMAX* - $ SQRT( ( ( Q( N )-Q( N-1 )+E( N-1 ) ) / QEMAX )**2+ - $ FOUR*E( N-1 ) / QEMAX ) ) - ELSE IF( QEMAX.EQ.Q( N ) ) THEN - XX = HALF*( Q( N )+Q( N-1 )+E( N-1 )+QEMAX* - $ SQRT( ( ( Q( N-1 )-Q( N )+E( N-1 ) ) / QEMAX )**2+ - $ FOUR*E( N-1 ) / QEMAX ) ) - ELSE - XX = HALF*( Q( N )+Q( N-1 )+E( N-1 )+QEMAX* - $ SQRT( ( ( Q( N )-Q( N-1 )+E( N-1 ) ) / QEMAX )**2+ - $ FOUR*Q( N-1 ) / QEMAX ) ) - END IF - YY = ( MAX( Q( N ), Q( N-1 ) ) / XX )* - $ MIN( Q( N ), Q( N-1 ) ) - ELSE - XX = ZERO - YY = ZERO - END IF - Q( N-1 ) = SIGMA + XX - Q( N ) = YY + SIGMA - N = N - 2 - ICONV = ICONV + 2 - GO TO 190 - END IF -* -* Updating bounds before going to pong -* - IF( ICONV.EQ.0 ) THEN - KEND = KE - SUP = MIN( DM, SUP-TAU ) - ELSE IF( ICONV.GT.0 ) THEN - SUP = MIN( Q( N ), Q( N-1 ), Q( N-2 ), Q( 1 ), Q( 2 ), Q( 3 ) ) - IF( ICONV.EQ.1 ) THEN - KEND = K1END - ELSE IF( ICONV.EQ.2 ) THEN - KEND = K2END - ELSE - KEND = N - END IF - ICNT = 0 - MAXIT = 100*N - END IF -* -* Checking for splitting in pong -* - LSPLIT = .FALSE. - DO 200 KS = N - 3, 3, -1 - IF( E( KS ).LE.TOLY ) THEN - IF( E( KS )*( MIN( Q( KS+1 ), Q( KS ) ) / ( MIN( Q( KS+1 ), - $ Q( KS ) )+SIGMA ) ).LE.TOLX ) THEN - LSPLIT = .TRUE. - GO TO 210 - END IF - END IF - 200 CONTINUE -* - KS = 2 - IF( E( 2 ).LE.TOLZ ) THEN - LSPLIT = .TRUE. - ELSE IF( SIGMA.GT.ZERO ) THEN - T1 = SIGMA + E( 1 )*( SIGMA / ( SIGMA+Q( 1 ) ) ) - IF( E( 2 )*( T1 / ( Q( 1 )+T1 ) ).LE.TOLY ) THEN - IF( E( 2 )*( Q( 1 ) / ( Q( 1 )+T1 ) ).LE.TOLX ) THEN - LSPLIT = .TRUE. - END IF - END IF - ELSE - IF( E( 2 ).LE.( Q( 1 ) / ( Q( 1 )+E( 1 )+Q( 2 ) ) )*Q( 2 )* - $ TOL2 ) THEN - LSPLIT = .TRUE. - END IF - END IF - IF( LSPLIT ) - $ GO TO 210 -* - KS = 1 - IF( E( 1 ).LE.TOLZ ) THEN - LSPLIT = .TRUE. - ELSE IF( SIGMA.GT.ZERO ) THEN - IF( E( 1 ).LE.EPS*( SIGMA+Q( 1 ) ) ) THEN - IF( E( 1 )*( Q( 1 ) / ( Q( 1 )+SIGMA ) ).LE.TOL2* - $ ( Q( 1 )+SIGMA ) ) THEN - LSPLIT = .TRUE. - END IF - END IF - ELSE - IF( E( 1 ).LE.Q( 1 )*TOL2 ) THEN - LSPLIT = .TRUE. - END IF - END IF -* - 210 CONTINUE - IF( LSPLIT ) THEN - SUP = MIN( Q( N ), Q( N-1 ), Q( N-2 ) ) - ISP = OFF + 1 - OFF = OFF + KS - KEND = MAX( 1, KEND-KS ) - N = N - KS - E( KS ) = SIGMA - EE( KS ) = ISP - ICONV = 0 - RETURN - END IF -* -* Coincidence -* - IF( TAU.EQ.ZERO .AND. DM.LE.TOLZ .AND. KEND.NE.N .AND. ICONV.EQ. - $ 0 .AND. ICNT.GT.0 ) THEN - CALL DCOPY( N-KE, EE( KE ), 1, Q( KE ), 1 ) - Q( N ) = ZERO - CALL DCOPY( N-KE, QQ( KE+1 ), 1, E( KE ), 1 ) - SUP = ZERO - END IF - ICONV = 0 - GO TO 30 -* -* Computation of a new shift when the previous failed (in pong) -* - 220 CONTINUE - IFL = IFL + 1 - SUP = TAU -* -* SUP is small or -* Too many bad shifts (in pong) -* - IF( SUP.LE.TOLZ .OR. IFL.GE.IFLMAX ) THEN - TAU = ZERO - GO TO 140 -* -* The asymptotic shift (in pong) -* - ELSE - TAU = MAX( TAU+D, ZERO ) - IF( TAU.LE.TOLZ ) - $ TAU = ZERO - GO TO 140 - END IF -* -* End of DLASQ3 -* - END diff --git a/Cantera/ext/lapack/dlasq4.f b/Cantera/ext/lapack/dlasq4.f deleted file mode 100755 index d410bae5d..000000000 --- a/Cantera/ext/lapack/dlasq4.f +++ /dev/null @@ -1,103 +0,0 @@ - SUBROUTINE DLASQ4( N, Q, E, TAU, SUP ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - INTEGER N - DOUBLE PRECISION SUP, TAU -* .. -* .. Array Arguments .. - DOUBLE PRECISION E( * ), Q( * ) -* .. -* -* Purpose -* ======= -* -* DLASQ4 estimates TAU, the smallest eigenvalue of a matrix. This -* routine improves the input value of SUP which is an upper bound -* for the smallest eigenvalue for this matrix . -* -* Arguments -* ========= -* -* N (input) INTEGER -* On entry, N specifies the number of rows and columns -* in the matrix. N must be at least 0. -* -* Q (input) DOUBLE PRECISION array, dimension (N) -* Q array -* -* E (input) DOUBLE PRECISION array, dimension (N) -* E array -* -* TAU (output) DOUBLE PRECISION -* Estimate of the shift -* -* SUP (input/output) DOUBLE PRECISION -* Upper bound for the smallest singular value -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D+0 ) - DOUBLE PRECISION BIS, BIS1 - PARAMETER ( BIS = 0.9999D+0, BIS1 = 0.7D+0 ) - INTEGER IFLMAX - PARAMETER ( IFLMAX = 5 ) -* .. -* .. Local Scalars .. - INTEGER I, IFL - DOUBLE PRECISION D, DM, XINF -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. - IFL = 1 - SUP = MIN( SUP, Q( 1 ), Q( 2 ), Q( 3 ), Q( N ), Q( N-1 ), - $ Q( N-2 ) ) - TAU = SUP*BIS - XINF = ZERO - 10 CONTINUE - IF( IFL.EQ.IFLMAX ) THEN - TAU = XINF - RETURN - END IF - D = Q( 1 ) - TAU - DM = D - DO 20 I = 1, N - 2 - D = ( D / ( D+E( I ) ) )*Q( I+1 ) - TAU - IF( DM.GT.D ) - $ DM = D - IF( D.LT.ZERO ) THEN - SUP = TAU - TAU = MAX( SUP*BIS1**IFL, D+TAU ) - IFL = IFL + 1 - GO TO 10 - END IF - 20 CONTINUE - D = ( D / ( D+E( N-1 ) ) )*Q( N ) - TAU - IF( DM.GT.D ) - $ DM = D - IF( D.LT.ZERO ) THEN - SUP = TAU - XINF = MAX( XINF, D+TAU ) - IF( SUP*BIS1**IFL.LE.XINF ) THEN - TAU = XINF - ELSE - TAU = SUP*BIS1**IFL - IFL = IFL + 1 - GO TO 10 - END IF - ELSE - SUP = MIN( SUP, DM+TAU ) - END IF - RETURN -* -* End of DLASQ4 -* - END diff --git a/Cantera/ext/lapack/dlasr.f b/Cantera/ext/lapack/dlasr.f deleted file mode 100755 index 9bf39ac70..000000000 --- a/Cantera/ext/lapack/dlasr.f +++ /dev/null @@ -1,325 +0,0 @@ - SUBROUTINE DLASR( SIDE, PIVOT, DIRECT, M, N, C, S, A, LDA ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* October 31, 1992 -* -* .. Scalar Arguments .. - CHARACTER DIRECT, PIVOT, SIDE - INTEGER LDA, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), C( * ), S( * ) -* .. -* -* Purpose -* ======= -* -* DLASR performs the transformation -* -* A := P*A, when SIDE = 'L' or 'l' ( Left-hand side ) -* -* A := A*P', when SIDE = 'R' or 'r' ( Right-hand side ) -* -* where A is an m by n real matrix and P is an orthogonal matrix, -* consisting of a sequence of plane rotations determined by the -* parameters PIVOT and DIRECT as follows ( z = m when SIDE = 'L' or 'l' -* and z = n when SIDE = 'R' or 'r' ): -* -* When DIRECT = 'F' or 'f' ( Forward sequence ) then -* -* P = P( z - 1 )*...*P( 2 )*P( 1 ), -* -* and when DIRECT = 'B' or 'b' ( Backward sequence ) then -* -* P = P( 1 )*P( 2 )*...*P( z - 1 ), -* -* where P( k ) is a plane rotation matrix for the following planes: -* -* when PIVOT = 'V' or 'v' ( Variable pivot ), -* the plane ( k, k + 1 ) -* -* when PIVOT = 'T' or 't' ( Top pivot ), -* the plane ( 1, k + 1 ) -* -* when PIVOT = 'B' or 'b' ( Bottom pivot ), -* the plane ( k, z ) -* -* c( k ) and s( k ) must contain the cosine and sine that define the -* matrix P( k ). The two by two plane rotation part of the matrix -* P( k ), R( k ), is assumed to be of the form -* -* R( k ) = ( c( k ) s( k ) ). -* ( -s( k ) c( k ) ) -* -* This version vectorises across rows of the array A when SIDE = 'L'. -* -* Arguments -* ========= -* -* SIDE (input) CHARACTER*1 -* Specifies whether the plane rotation matrix P is applied to -* A on the left or the right. -* = 'L': Left, compute A := P*A -* = 'R': Right, compute A:= A*P' -* -* DIRECT (input) CHARACTER*1 -* Specifies whether P is a forward or backward sequence of -* plane rotations. -* = 'F': Forward, P = P( z - 1 )*...*P( 2 )*P( 1 ) -* = 'B': Backward, P = P( 1 )*P( 2 )*...*P( z - 1 ) -* -* PIVOT (input) CHARACTER*1 -* Specifies the plane for which P(k) is a plane rotation -* matrix. -* = 'V': Variable pivot, the plane (k,k+1) -* = 'T': Top pivot, the plane (1,k+1) -* = 'B': Bottom pivot, the plane (k,z) -* -* M (input) INTEGER -* The number of rows of the matrix A. If m <= 1, an immediate -* return is effected. -* -* N (input) INTEGER -* The number of columns of the matrix A. If n <= 1, an -* immediate return is effected. -* -* C, S (input) DOUBLE PRECISION arrays, dimension -* (M-1) if SIDE = 'L' -* (N-1) if SIDE = 'R' -* c(k) and s(k) contain the cosine and sine that define the -* matrix P(k). The two by two plane rotation part of the -* matrix P(k), R(k), is assumed to be of the form -* R( k ) = ( c( k ) s( k ) ). -* ( -s( k ) c( k ) ) -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* The m by n matrix A. On exit, A is overwritten by P*A if -* SIDE = 'R' or by A*P' if SIDE = 'L'. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,M). -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE, ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Local Scalars .. - INTEGER I, INFO, J - DOUBLE PRECISION CTEMP, STEMP, TEMP -* .. -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. -* .. External Subroutines .. - EXTERNAL XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. -* .. Executable Statements .. -* -* Test the input parameters -* - INFO = 0 - IF( .NOT.( LSAME( SIDE, 'L' ) .OR. LSAME( SIDE, 'R' ) ) ) THEN - INFO = 1 - ELSE IF( .NOT.( LSAME( PIVOT, 'V' ) .OR. LSAME( PIVOT, - $ 'T' ) .OR. LSAME( PIVOT, 'B' ) ) ) THEN - INFO = 2 - ELSE IF( .NOT.( LSAME( DIRECT, 'F' ) .OR. LSAME( DIRECT, 'B' ) ) ) - $ THEN - INFO = 3 - ELSE IF( M.LT.0 ) THEN - INFO = 4 - ELSE IF( N.LT.0 ) THEN - INFO = 5 - ELSE IF( LDA.LT.MAX( 1, M ) ) THEN - INFO = 9 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DLASR ', INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( ( M.EQ.0 ) .OR. ( N.EQ.0 ) ) - $ RETURN - IF( LSAME( SIDE, 'L' ) ) THEN -* -* Form P * A -* - IF( LSAME( PIVOT, 'V' ) ) THEN - IF( LSAME( DIRECT, 'F' ) ) THEN - DO 20 J = 1, M - 1 - CTEMP = C( J ) - STEMP = S( J ) - IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN - DO 10 I = 1, N - TEMP = A( J+1, I ) - A( J+1, I ) = CTEMP*TEMP - STEMP*A( J, I ) - A( J, I ) = STEMP*TEMP + CTEMP*A( J, I ) - 10 CONTINUE - END IF - 20 CONTINUE - ELSE IF( LSAME( DIRECT, 'B' ) ) THEN - DO 40 J = M - 1, 1, -1 - CTEMP = C( J ) - STEMP = S( J ) - IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN - DO 30 I = 1, N - TEMP = A( J+1, I ) - A( J+1, I ) = CTEMP*TEMP - STEMP*A( J, I ) - A( J, I ) = STEMP*TEMP + CTEMP*A( J, I ) - 30 CONTINUE - END IF - 40 CONTINUE - END IF - ELSE IF( LSAME( PIVOT, 'T' ) ) THEN - IF( LSAME( DIRECT, 'F' ) ) THEN - DO 60 J = 2, M - CTEMP = C( J-1 ) - STEMP = S( J-1 ) - IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN - DO 50 I = 1, N - TEMP = A( J, I ) - A( J, I ) = CTEMP*TEMP - STEMP*A( 1, I ) - A( 1, I ) = STEMP*TEMP + CTEMP*A( 1, I ) - 50 CONTINUE - END IF - 60 CONTINUE - ELSE IF( LSAME( DIRECT, 'B' ) ) THEN - DO 80 J = M, 2, -1 - CTEMP = C( J-1 ) - STEMP = S( J-1 ) - IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN - DO 70 I = 1, N - TEMP = A( J, I ) - A( J, I ) = CTEMP*TEMP - STEMP*A( 1, I ) - A( 1, I ) = STEMP*TEMP + CTEMP*A( 1, I ) - 70 CONTINUE - END IF - 80 CONTINUE - END IF - ELSE IF( LSAME( PIVOT, 'B' ) ) THEN - IF( LSAME( DIRECT, 'F' ) ) THEN - DO 100 J = 1, M - 1 - CTEMP = C( J ) - STEMP = S( J ) - IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN - DO 90 I = 1, N - TEMP = A( J, I ) - A( J, I ) = STEMP*A( M, I ) + CTEMP*TEMP - A( M, I ) = CTEMP*A( M, I ) - STEMP*TEMP - 90 CONTINUE - END IF - 100 CONTINUE - ELSE IF( LSAME( DIRECT, 'B' ) ) THEN - DO 120 J = M - 1, 1, -1 - CTEMP = C( J ) - STEMP = S( J ) - IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN - DO 110 I = 1, N - TEMP = A( J, I ) - A( J, I ) = STEMP*A( M, I ) + CTEMP*TEMP - A( M, I ) = CTEMP*A( M, I ) - STEMP*TEMP - 110 CONTINUE - END IF - 120 CONTINUE - END IF - END IF - ELSE IF( LSAME( SIDE, 'R' ) ) THEN -* -* Form A * P' -* - IF( LSAME( PIVOT, 'V' ) ) THEN - IF( LSAME( DIRECT, 'F' ) ) THEN - DO 140 J = 1, N - 1 - CTEMP = C( J ) - STEMP = S( J ) - IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN - DO 130 I = 1, M - TEMP = A( I, J+1 ) - A( I, J+1 ) = CTEMP*TEMP - STEMP*A( I, J ) - A( I, J ) = STEMP*TEMP + CTEMP*A( I, J ) - 130 CONTINUE - END IF - 140 CONTINUE - ELSE IF( LSAME( DIRECT, 'B' ) ) THEN - DO 160 J = N - 1, 1, -1 - CTEMP = C( J ) - STEMP = S( J ) - IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN - DO 150 I = 1, M - TEMP = A( I, J+1 ) - A( I, J+1 ) = CTEMP*TEMP - STEMP*A( I, J ) - A( I, J ) = STEMP*TEMP + CTEMP*A( I, J ) - 150 CONTINUE - END IF - 160 CONTINUE - END IF - ELSE IF( LSAME( PIVOT, 'T' ) ) THEN - IF( LSAME( DIRECT, 'F' ) ) THEN - DO 180 J = 2, N - CTEMP = C( J-1 ) - STEMP = S( J-1 ) - IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN - DO 170 I = 1, M - TEMP = A( I, J ) - A( I, J ) = CTEMP*TEMP - STEMP*A( I, 1 ) - A( I, 1 ) = STEMP*TEMP + CTEMP*A( I, 1 ) - 170 CONTINUE - END IF - 180 CONTINUE - ELSE IF( LSAME( DIRECT, 'B' ) ) THEN - DO 200 J = N, 2, -1 - CTEMP = C( J-1 ) - STEMP = S( J-1 ) - IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN - DO 190 I = 1, M - TEMP = A( I, J ) - A( I, J ) = CTEMP*TEMP - STEMP*A( I, 1 ) - A( I, 1 ) = STEMP*TEMP + CTEMP*A( I, 1 ) - 190 CONTINUE - END IF - 200 CONTINUE - END IF - ELSE IF( LSAME( PIVOT, 'B' ) ) THEN - IF( LSAME( DIRECT, 'F' ) ) THEN - DO 220 J = 1, N - 1 - CTEMP = C( J ) - STEMP = S( J ) - IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN - DO 210 I = 1, M - TEMP = A( I, J ) - A( I, J ) = STEMP*A( I, N ) + CTEMP*TEMP - A( I, N ) = CTEMP*A( I, N ) - STEMP*TEMP - 210 CONTINUE - END IF - 220 CONTINUE - ELSE IF( LSAME( DIRECT, 'B' ) ) THEN - DO 240 J = N - 1, 1, -1 - CTEMP = C( J ) - STEMP = S( J ) - IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN - DO 230 I = 1, M - TEMP = A( I, J ) - A( I, J ) = STEMP*A( I, N ) + CTEMP*TEMP - A( I, N ) = CTEMP*A( I, N ) - STEMP*TEMP - 230 CONTINUE - END IF - 240 CONTINUE - END IF - END IF - END IF -* - RETURN -* -* End of DLASR -* - END diff --git a/Cantera/ext/lapack/dlasrt.f b/Cantera/ext/lapack/dlasrt.f deleted file mode 100755 index 7b22eb3f1..000000000 --- a/Cantera/ext/lapack/dlasrt.f +++ /dev/null @@ -1,244 +0,0 @@ - SUBROUTINE DLASRT( ID, N, D, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - CHARACTER ID - INTEGER INFO, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION D( * ) -* .. -* -* Purpose -* ======= -* -* Sort the numbers in D in increasing order (if ID = 'I') or -* in decreasing order (if ID = 'D' ). -* -* Use Quick Sort, reverting to Insertion sort on arrays of -* size <= 20. Dimension of STACK limits N to about 2**32. -* -* Arguments -* ========= -* -* ID (input) CHARACTER*1 -* = 'I': sort D in increasing order; -* = 'D': sort D in decreasing order. -* -* N (input) INTEGER -* The length of the array D. -* -* D (input/output) DOUBLE PRECISION array, dimension (N) -* On entry, the array to be sorted. -* On exit, D has been sorted into increasing order -* (D(1) <= ... <= D(N) ) or into decreasing order -* (D(1) >= ... >= D(N) ), depending on ID. -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* -* ===================================================================== -* -* .. Parameters .. - INTEGER SELECT - PARAMETER ( SELECT = 20 ) -* .. -* .. Local Scalars .. - INTEGER DIR, ENDD, I, J, START, STKPNT - DOUBLE PRECISION D1, D2, D3, DMNMX, TMP -* .. -* .. Local Arrays .. - INTEGER STACK( 2, 32 ) -* .. -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. -* .. External Subroutines .. - EXTERNAL XERBLA -* .. -* .. Executable Statements .. -* -* Test the input paramters. -* - INFO = 0 - DIR = -1 - IF( LSAME( ID, 'D' ) ) THEN - DIR = 0 - ELSE IF( LSAME( ID, 'I' ) ) THEN - DIR = 1 - END IF - IF( DIR.EQ.-1 ) THEN - INFO = -1 - ELSE IF( N.LT.0 ) THEN - INFO = -2 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DLASRT', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( N.LE.1 ) - $ RETURN -* - STKPNT = 1 - STACK( 1, 1 ) = 1 - STACK( 2, 1 ) = N - 10 CONTINUE - START = STACK( 1, STKPNT ) - ENDD = STACK( 2, STKPNT ) - STKPNT = STKPNT - 1 - IF( ENDD-START.LE.SELECT .AND. ENDD-START.GT.0 ) THEN -* -* Do Insertion sort on D( START:ENDD ) -* - IF( DIR.EQ.0 ) THEN -* -* Sort into decreasing order -* - DO 30 I = START + 1, ENDD - DO 20 J = I, START + 1, -1 - IF( D( J ).GT.D( J-1 ) ) THEN - DMNMX = D( J ) - D( J ) = D( J-1 ) - D( J-1 ) = DMNMX - ELSE - GO TO 30 - END IF - 20 CONTINUE - 30 CONTINUE -* - ELSE -* -* Sort into increasing order -* - DO 50 I = START + 1, ENDD - DO 40 J = I, START + 1, -1 - IF( D( J ).LT.D( J-1 ) ) THEN - DMNMX = D( J ) - D( J ) = D( J-1 ) - D( J-1 ) = DMNMX - ELSE - GO TO 50 - END IF - 40 CONTINUE - 50 CONTINUE -* - END IF -* - ELSE IF( ENDD-START.GT.SELECT ) THEN -* -* Partition D( START:ENDD ) and stack parts, largest one first -* -* Choose partition entry as median of 3 -* - D1 = D( START ) - D2 = D( ENDD ) - I = ( START+ENDD ) / 2 - D3 = D( I ) - IF( D1.LT.D2 ) THEN - IF( D3.LT.D1 ) THEN - DMNMX = D1 - ELSE IF( D3.LT.D2 ) THEN - DMNMX = D3 - ELSE - DMNMX = D2 - END IF - ELSE - IF( D3.LT.D2 ) THEN - DMNMX = D2 - ELSE IF( D3.LT.D1 ) THEN - DMNMX = D3 - ELSE - DMNMX = D1 - END IF - END IF -* - IF( DIR.EQ.0 ) THEN -* -* Sort into decreasing order -* - I = START - 1 - J = ENDD + 1 - 60 CONTINUE - 70 CONTINUE - J = J - 1 - IF( D( J ).LT.DMNMX ) - $ GO TO 70 - 80 CONTINUE - I = I + 1 - IF( D( I ).GT.DMNMX ) - $ GO TO 80 - IF( I.LT.J ) THEN - TMP = D( I ) - D( I ) = D( J ) - D( J ) = TMP - GO TO 60 - END IF - IF( J-START.GT.ENDD-J-1 ) THEN - STKPNT = STKPNT + 1 - STACK( 1, STKPNT ) = START - STACK( 2, STKPNT ) = J - STKPNT = STKPNT + 1 - STACK( 1, STKPNT ) = J + 1 - STACK( 2, STKPNT ) = ENDD - ELSE - STKPNT = STKPNT + 1 - STACK( 1, STKPNT ) = J + 1 - STACK( 2, STKPNT ) = ENDD - STKPNT = STKPNT + 1 - STACK( 1, STKPNT ) = START - STACK( 2, STKPNT ) = J - END IF - ELSE -* -* Sort into increasing order -* - I = START - 1 - J = ENDD + 1 - 90 CONTINUE - 100 CONTINUE - J = J - 1 - IF( D( J ).GT.DMNMX ) - $ GO TO 100 - 110 CONTINUE - I = I + 1 - IF( D( I ).LT.DMNMX ) - $ GO TO 110 - IF( I.LT.J ) THEN - TMP = D( I ) - D( I ) = D( J ) - D( J ) = TMP - GO TO 90 - END IF - IF( J-START.GT.ENDD-J-1 ) THEN - STKPNT = STKPNT + 1 - STACK( 1, STKPNT ) = START - STACK( 2, STKPNT ) = J - STKPNT = STKPNT + 1 - STACK( 1, STKPNT ) = J + 1 - STACK( 2, STKPNT ) = ENDD - ELSE - STKPNT = STKPNT + 1 - STACK( 1, STKPNT ) = J + 1 - STACK( 2, STKPNT ) = ENDD - STKPNT = STKPNT + 1 - STACK( 1, STKPNT ) = START - STACK( 2, STKPNT ) = J - END IF - END IF - END IF - IF( STKPNT.GT.0 ) - $ GO TO 10 - RETURN -* -* End of DLASRT -* - END diff --git a/Cantera/ext/lapack/dlassq.f b/Cantera/ext/lapack/dlassq.f deleted file mode 100755 index 9518d06ab..000000000 --- a/Cantera/ext/lapack/dlassq.f +++ /dev/null @@ -1,89 +0,0 @@ - SUBROUTINE DLASSQ( N, X, INCX, SCALE, SUMSQ ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* October 31, 1992 -* -* .. Scalar Arguments .. - INTEGER INCX, N - DOUBLE PRECISION SCALE, SUMSQ -* .. -* .. Array Arguments .. - DOUBLE PRECISION X( * ) -* .. -* -* Purpose -* ======= -* -* DLASSQ returns the values scl and smsq such that -* -* ( scl**2 )*smsq = x( 1 )**2 +...+ x( n )**2 + ( scale**2 )*sumsq, -* -* where x( i ) = X( 1 + ( i - 1 )*INCX ). The value of sumsq is -* assumed to be non-negative and scl returns the value -* -* scl = max( scale, abs( x( i ) ) ). -* -* scale and sumsq must be supplied in SCALE and SUMSQ and -* scl and smsq are overwritten on SCALE and SUMSQ respectively. -* -* The routine makes only one pass through the vector x. -* -* Arguments -* ========= -* -* N (input) INTEGER -* The number of elements to be used from the vector X. -* -* X (input) DOUBLE PRECISION -* The vector for which a scaled sum of squares is computed. -* x( i ) = X( 1 + ( i - 1 )*INCX ), 1 <= i <= n. -* -* INCX (input) INTEGER -* The increment between successive values of the vector X. -* INCX > 0. -* -* SCALE (input/output) DOUBLE PRECISION -* On entry, the value scale in the equation above. -* On exit, SCALE is overwritten with scl , the scaling factor -* for the sum of squares. -* -* SUMSQ (input/output) DOUBLE PRECISION -* On entry, the value sumsq in the equation above. -* On exit, SUMSQ is overwritten with smsq , the basic sum of -* squares from which scl has been factored out. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D+0 ) -* .. -* .. Local Scalars .. - INTEGER IX - DOUBLE PRECISION ABSXI -* .. -* .. Intrinsic Functions .. - INTRINSIC ABS -* .. -* .. Executable Statements .. -* - IF( N.GT.0 ) THEN - DO 10 IX = 1, 1 + ( N-1 )*INCX, INCX - IF( X( IX ).NE.ZERO ) THEN - ABSXI = ABS( X( IX ) ) - IF( SCALE.LT.ABSXI ) THEN - SUMSQ = 1 + SUMSQ*( SCALE / ABSXI )**2 - SCALE = ABSXI - ELSE - SUMSQ = SUMSQ + ( ABSXI / SCALE )**2 - END IF - END IF - 10 CONTINUE - END IF - RETURN -* -* End of DLASSQ -* - END diff --git a/Cantera/ext/lapack/dlasv2.f b/Cantera/ext/lapack/dlasv2.f deleted file mode 100755 index 0fc7835dc..000000000 --- a/Cantera/ext/lapack/dlasv2.f +++ /dev/null @@ -1,250 +0,0 @@ - SUBROUTINE DLASV2( F, G, H, SSMIN, SSMAX, SNR, CSR, SNL, CSL ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* October 31, 1992 -* -* .. Scalar Arguments .. - DOUBLE PRECISION CSL, CSR, F, G, H, SNL, SNR, SSMAX, SSMIN -* .. -* -* Purpose -* ======= -* -* DLASV2 computes the singular value decomposition of a 2-by-2 -* triangular matrix -* [ F G ] -* [ 0 H ]. -* On return, abs(SSMAX) is the larger singular value, abs(SSMIN) is the -* smaller singular value, and (CSL,SNL) and (CSR,SNR) are the left and -* right singular vectors for abs(SSMAX), giving the decomposition -* -* [ CSL SNL ] [ F G ] [ CSR -SNR ] = [ SSMAX 0 ] -* [-SNL CSL ] [ 0 H ] [ SNR CSR ] [ 0 SSMIN ]. -* -* Arguments -* ========= -* -* F (input) DOUBLE PRECISION -* The (1,1) element of the 2-by-2 matrix. -* -* G (input) DOUBLE PRECISION -* The (1,2) element of the 2-by-2 matrix. -* -* H (input) DOUBLE PRECISION -* The (2,2) element of the 2-by-2 matrix. -* -* SSMIN (output) DOUBLE PRECISION -* abs(SSMIN) is the smaller singular value. -* -* SSMAX (output) DOUBLE PRECISION -* abs(SSMAX) is the larger singular value. -* -* SNL (output) DOUBLE PRECISION -* CSL (output) DOUBLE PRECISION -* The vector (CSL, SNL) is a unit left singular vector for the -* singular value abs(SSMAX). -* -* SNR (output) DOUBLE PRECISION -* CSR (output) DOUBLE PRECISION -* The vector (CSR, SNR) is a unit right singular vector for the -* singular value abs(SSMAX). -* -* Further Details -* =============== -* -* Any input parameter may be aliased with any output parameter. -* -* Barring over/underflow and assuming a guard digit in subtraction, all -* output quantities are correct to within a few units in the last -* place (ulps). -* -* In IEEE arithmetic, the code works correctly if one matrix element is -* infinite. -* -* Overflow will not occur unless the largest singular value itself -* overflows or is within a few ulps of overflow. (On machines with -* partial overflow, like the Cray, overflow may occur if the largest -* singular value is within a factor of 2 of overflow.) -* -* Underflow is harmless if underflow is gradual. Otherwise, results -* may correspond to a matrix modified by perturbations of size near -* the underflow threshold. -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D0 ) - DOUBLE PRECISION HALF - PARAMETER ( HALF = 0.5D0 ) - DOUBLE PRECISION ONE - PARAMETER ( ONE = 1.0D0 ) - DOUBLE PRECISION TWO - PARAMETER ( TWO = 2.0D0 ) - DOUBLE PRECISION FOUR - PARAMETER ( FOUR = 4.0D0 ) -* .. -* .. Local Scalars .. - LOGICAL GASMAL, SWAP - INTEGER PMAX - DOUBLE PRECISION A, CLT, CRT, D, FA, FT, GA, GT, HA, HT, L, M, - $ MM, R, S, SLT, SRT, T, TEMP, TSIGN, TT -* .. -* .. Intrinsic Functions .. - INTRINSIC ABS, SIGN, SQRT -* .. -* .. External Functions .. - DOUBLE PRECISION DLAMCH - EXTERNAL DLAMCH -* .. -* .. Executable Statements .. -* - FT = F - FA = ABS( FT ) - HT = H - HA = ABS( H ) -* -* PMAX points to the maximum absolute element of matrix -* PMAX = 1 if F largest in absolute values -* PMAX = 2 if G largest in absolute values -* PMAX = 3 if H largest in absolute values -* - PMAX = 1 - SWAP = ( HA.GT.FA ) - IF( SWAP ) THEN - PMAX = 3 - TEMP = FT - FT = HT - HT = TEMP - TEMP = FA - FA = HA - HA = TEMP -* -* Now FA .ge. HA -* - END IF - GT = G - GA = ABS( GT ) - IF( GA.EQ.ZERO ) THEN -* -* Diagonal matrix -* - SSMIN = HA - SSMAX = FA - CLT = ONE - CRT = ONE - SLT = ZERO - SRT = ZERO - ELSE - GASMAL = .TRUE. - IF( GA.GT.FA ) THEN - PMAX = 2 - IF( ( FA / GA ).LT.DLAMCH( 'EPS' ) ) THEN -* -* Case of very large GA -* - GASMAL = .FALSE. - SSMAX = GA - IF( HA.GT.ONE ) THEN - SSMIN = FA / ( GA / HA ) - ELSE - SSMIN = ( FA / GA )*HA - END IF - CLT = ONE - SLT = HT / GT - SRT = ONE - CRT = FT / GT - END IF - END IF - IF( GASMAL ) THEN -* -* Normal case -* - D = FA - HA - IF( D.EQ.FA ) THEN -* -* Copes with infinite F or H -* - L = ONE - ELSE - L = D / FA - END IF -* -* Note that 0 .le. L .le. 1 -* - M = GT / FT -* -* Note that abs(M) .le. 1/macheps -* - T = TWO - L -* -* Note that T .ge. 1 -* - MM = M*M - TT = T*T - S = SQRT( TT+MM ) -* -* Note that 1 .le. S .le. 1 + 1/macheps -* - IF( L.EQ.ZERO ) THEN - R = ABS( M ) - ELSE - R = SQRT( L*L+MM ) - END IF -* -* Note that 0 .le. R .le. 1 + 1/macheps -* - A = HALF*( S+R ) -* -* Note that 1 .le. A .le. 1 + abs(M) -* - SSMIN = HA / A - SSMAX = FA*A - IF( MM.EQ.ZERO ) THEN -* -* Note that M is very tiny -* - IF( L.EQ.ZERO ) THEN - T = SIGN( TWO, FT )*SIGN( ONE, GT ) - ELSE - T = GT / SIGN( D, FT ) + M / T - END IF - ELSE - T = ( M / ( S+T )+M / ( R+L ) )*( ONE+A ) - END IF - L = SQRT( T*T+FOUR ) - CRT = TWO / L - SRT = T / L - CLT = ( CRT+SRT*M ) / A - SLT = ( HT / FT )*SRT / A - END IF - END IF - IF( SWAP ) THEN - CSL = SRT - SNL = CRT - CSR = SLT - SNR = CLT - ELSE - CSL = CLT - SNL = SLT - CSR = CRT - SNR = SRT - END IF -* -* Correct signs of SSMAX and SSMIN -* - IF( PMAX.EQ.1 ) - $ TSIGN = SIGN( ONE, CSR )*SIGN( ONE, CSL )*SIGN( ONE, F ) - IF( PMAX.EQ.2 ) - $ TSIGN = SIGN( ONE, SNR )*SIGN( ONE, CSL )*SIGN( ONE, G ) - IF( PMAX.EQ.3 ) - $ TSIGN = SIGN( ONE, SNR )*SIGN( ONE, SNL )*SIGN( ONE, H ) - SSMAX = SIGN( SSMAX, TSIGN ) - SSMIN = SIGN( SSMIN, TSIGN*SIGN( ONE, F )*SIGN( ONE, H ) ) - RETURN -* -* End of DLASV2 -* - END diff --git a/Cantera/ext/lapack/dlaswp.f b/Cantera/ext/lapack/dlaswp.f deleted file mode 100755 index 99c0dda27..000000000 --- a/Cantera/ext/lapack/dlaswp.f +++ /dev/null @@ -1,120 +0,0 @@ - SUBROUTINE DLASWP( N, A, LDA, K1, K2, IPIV, INCX ) -* -* -- LAPACK auxiliary routine (version 3.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* June 30, 1999 -* -* .. Scalar Arguments .. - INTEGER INCX, K1, K2, LDA, N -* .. -* .. Array Arguments .. - INTEGER IPIV( * ) - DOUBLE PRECISION A( LDA, * ) -* .. -* -* Purpose -* ======= -* -* DLASWP performs a series of row interchanges on the matrix A. -* One row interchange is initiated for each of rows K1 through K2 of A. -* -* Arguments -* ========= -* -* N (input) INTEGER -* The number of columns of the matrix A. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the matrix of column dimension N to which the row -* interchanges will be applied. -* On exit, the permuted matrix. -* -* LDA (input) INTEGER -* The leading dimension of the array A. -* -* K1 (input) INTEGER -* The first element of IPIV for which a row interchange will -* be done. -* -* K2 (input) INTEGER -* The last element of IPIV for which a row interchange will -* be done. -* -* IPIV (input) INTEGER array, dimension (M*abs(INCX)) -* The vector of pivot indices. Only the elements in positions -* K1 through K2 of IPIV are accessed. -* IPIV(K) = L implies rows K and L are to be interchanged. -* -* INCX (input) INTEGER -* The increment between successive values of IPIV. If IPIV -* is negative, the pivots are applied in reverse order. -* -* Further Details -* =============== -* -* Modified by -* R. C. Whaley, Computer Science Dept., Univ. of Tenn., Knoxville, USA -* -* ===================================================================== -* -* .. Local Scalars .. - INTEGER I, I1, I2, INC, IP, IX, IX0, J, K, N32 - DOUBLE PRECISION TEMP -* .. -* .. Executable Statements .. -* -* Interchange row I with row IPIV(I) for each of rows K1 through K2. -* - IF( INCX.GT.0 ) THEN - IX0 = K1 - I1 = K1 - I2 = K2 - INC = 1 - ELSE IF( INCX.LT.0 ) THEN - IX0 = 1 + ( 1-K2 )*INCX - I1 = K2 - I2 = K1 - INC = -1 - ELSE - RETURN - END IF -* - N32 = ( N / 32 )*32 - IF( N32.NE.0 ) THEN - DO 30 J = 1, N32, 32 - IX = IX0 - DO 20 I = I1, I2, INC - IP = IPIV( IX ) - IF( IP.NE.I ) THEN - DO 10 K = J, J + 31 - TEMP = A( I, K ) - A( I, K ) = A( IP, K ) - A( IP, K ) = TEMP - 10 CONTINUE - END IF - IX = IX + INCX - 20 CONTINUE - 30 CONTINUE - END IF - IF( N32.NE.N ) THEN - N32 = N32 + 1 - IX = IX0 - DO 50 I = I1, I2, INC - IP = IPIV( IX ) - IF( IP.NE.I ) THEN - DO 40 K = N32, N - TEMP = A( I, K ) - A( I, K ) = A( IP, K ) - A( IP, K ) = TEMP - 40 CONTINUE - END IF - IX = IX + INCX - 50 CONTINUE - END IF -* - RETURN -* -* End of DLASWP -* - END diff --git a/Cantera/ext/lapack/dorg2r.f b/Cantera/ext/lapack/dorg2r.f deleted file mode 100755 index 8ecd83de6..000000000 --- a/Cantera/ext/lapack/dorg2r.f +++ /dev/null @@ -1,130 +0,0 @@ - SUBROUTINE DORG2R( M, N, K, A, LDA, TAU, WORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - INTEGER INFO, K, LDA, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * ) -* .. -* -* Purpose -* ======= -* -* DORG2R generates an m by n real matrix Q with orthonormal columns, -* which is defined as the first n columns of a product of k elementary -* reflectors of order m -* -* Q = H(1) H(2) . . . H(k) -* -* as returned by DGEQRF. -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows of the matrix Q. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix Q. M >= N >= 0. -* -* K (input) INTEGER -* The number of elementary reflectors whose product defines the -* matrix Q. N >= K >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the i-th column must contain the vector which -* defines the elementary reflector H(i), for i = 1,2,...,k, as -* returned by DGEQRF in the first k columns of its array -* argument A. -* On exit, the m-by-n matrix Q. -* -* LDA (input) INTEGER -* The first dimension of the array A. LDA >= max(1,M). -* -* TAU (input) DOUBLE PRECISION array, dimension (K) -* TAU(i) must contain the scalar factor of the elementary -* reflector H(i), as returned by DGEQRF. -* -* WORK (workspace) DOUBLE PRECISION array, dimension (N) -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument has an illegal value -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE, ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Local Scalars .. - INTEGER I, J, L -* .. -* .. External Subroutines .. - EXTERNAL DLARF, DSCAL, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. -* .. Executable Statements .. -* -* Test the input arguments -* - INFO = 0 - IF( M.LT.0 ) THEN - INFO = -1 - ELSE IF( N.LT.0 .OR. N.GT.M ) THEN - INFO = -2 - ELSE IF( K.LT.0 .OR. K.GT.N ) THEN - INFO = -3 - ELSE IF( LDA.LT.MAX( 1, M ) ) THEN - INFO = -5 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DORG2R', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( N.LE.0 ) - $ RETURN -* -* Initialise columns k+1:n to columns of the unit matrix -* - DO 20 J = K + 1, N - DO 10 L = 1, M - A( L, J ) = ZERO - 10 CONTINUE - A( J, J ) = ONE - 20 CONTINUE -* - DO 40 I = K, 1, -1 -* -* Apply H(i) to A(i:m,i:n) from the left -* - IF( I.LT.N ) THEN - A( I, I ) = ONE - CALL DLARF( 'Left', M-I+1, N-I, A( I, I ), 1, TAU( I ), - $ A( I, I+1 ), LDA, WORK ) - END IF - IF( I.LT.M ) - $ CALL DSCAL( M-I, -TAU( I ), A( I+1, I ), 1 ) - A( I, I ) = ONE - TAU( I ) -* -* Set A(1:i-1,i) to zero -* - DO 30 L = 1, I - 1 - A( L, I ) = ZERO - 30 CONTINUE - 40 CONTINUE - RETURN -* -* End of DORG2R -* - END diff --git a/Cantera/ext/lapack/dorgbr.f b/Cantera/ext/lapack/dorgbr.f deleted file mode 100755 index ed8aa80ac..000000000 --- a/Cantera/ext/lapack/dorgbr.f +++ /dev/null @@ -1,223 +0,0 @@ - SUBROUTINE DORGBR( VECT, M, N, K, A, LDA, TAU, WORK, LWORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - CHARACTER VECT - INTEGER INFO, K, LDA, LWORK, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( LWORK ) -* .. -* -* Purpose -* ======= -* -* DORGBR generates one of the real orthogonal matrices Q or P**T -* determined by DGEBRD when reducing a real matrix A to bidiagonal -* form: A = Q * B * P**T. Q and P**T are defined as products of -* elementary reflectors H(i) or G(i) respectively. -* -* If VECT = 'Q', A is assumed to have been an M-by-K matrix, and Q -* is of order M: -* if m >= k, Q = H(1) H(2) . . . H(k) and DORGBR returns the first n -* columns of Q, where m >= n >= k; -* if m < k, Q = H(1) H(2) . . . H(m-1) and DORGBR returns Q as an -* M-by-M matrix. -* -* If VECT = 'P', A is assumed to have been a K-by-N matrix, and P**T -* is of order N: -* if k < n, P**T = G(k) . . . G(2) G(1) and DORGBR returns the first m -* rows of P**T, where n >= m >= k; -* if k >= n, P**T = G(n-1) . . . G(2) G(1) and DORGBR returns P**T as -* an N-by-N matrix. -* -* Arguments -* ========= -* -* VECT (input) CHARACTER*1 -* Specifies whether the matrix Q or the matrix P**T is -* required, as defined in the transformation applied by DGEBRD: -* = 'Q': generate Q; -* = 'P': generate P**T. -* -* M (input) INTEGER -* The number of rows of the matrix Q or P**T to be returned. -* M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix Q or P**T to be returned. -* N >= 0. -* If VECT = 'Q', M >= N >= min(M,K); -* if VECT = 'P', N >= M >= min(N,K). -* -* K (input) INTEGER -* If VECT = 'Q', the number of columns in the original M-by-K -* matrix reduced by DGEBRD. -* If VECT = 'P', the number of rows in the original K-by-N -* matrix reduced by DGEBRD. -* K >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the vectors which define the elementary reflectors, -* as returned by DGEBRD. -* On exit, the M-by-N matrix Q or P**T. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,M). -* -* TAU (input) DOUBLE PRECISION array, dimension -* (min(M,K)) if VECT = 'Q' -* (min(N,K)) if VECT = 'P' -* TAU(i) must contain the scalar factor of the elementary -* reflector H(i) or G(i), which determines Q or P**T, as -* returned by DGEBRD in its array argument TAUQ or TAUP. -* -* WORK (workspace/output) DOUBLE PRECISION array, dimension (LWORK) -* On exit, if INFO = 0, WORK(1) returns the optimal LWORK. -* -* LWORK (input) INTEGER -* The dimension of the array WORK. LWORK >= max(1,min(M,N)). -* For optimum performance LWORK >= min(M,N)*NB, where NB -* is the optimal blocksize. -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO, ONE - PARAMETER ( ZERO = 0.0D+0, ONE = 1.0D+0 ) -* .. -* .. Local Scalars .. - LOGICAL WANTQ - INTEGER I, IINFO, J -* .. -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. -* .. External Subroutines .. - EXTERNAL DORGLQ, DORGQR, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input arguments -* - INFO = 0 - WANTQ = LSAME( VECT, 'Q' ) - IF( .NOT.WANTQ .AND. .NOT.LSAME( VECT, 'P' ) ) THEN - INFO = -1 - ELSE IF( M.LT.0 ) THEN - INFO = -2 - ELSE IF( N.LT.0 .OR. ( WANTQ .AND. ( N.GT.M .OR. N.LT.MIN( M, - $ K ) ) ) .OR. ( .NOT.WANTQ .AND. ( M.GT.N .OR. M.LT. - $ MIN( N, K ) ) ) ) THEN - INFO = -3 - ELSE IF( K.LT.0 ) THEN - INFO = -4 - ELSE IF( LDA.LT.MAX( 1, M ) ) THEN - INFO = -6 - ELSE IF( LWORK.LT.MAX( 1, MIN( M, N ) ) ) THEN - INFO = -9 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DORGBR', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( M.EQ.0 .OR. N.EQ.0 ) THEN - WORK( 1 ) = 1 - RETURN - END IF -* - IF( WANTQ ) THEN -* -* Form Q, determined by a call to DGEBRD to reduce an m-by-k -* matrix -* - IF( M.GE.K ) THEN -* -* If m >= k, assume m >= n >= k -* - CALL DORGQR( M, N, K, A, LDA, TAU, WORK, LWORK, IINFO ) -* - ELSE -* -* If m < k, assume m = n -* -* Shift the vectors which define the elementary reflectors one -* column to the right, and set the first row and column of Q -* to those of the unit matrix -* - DO 20 J = M, 2, -1 - A( 1, J ) = ZERO - DO 10 I = J + 1, M - A( I, J ) = A( I, J-1 ) - 10 CONTINUE - 20 CONTINUE - A( 1, 1 ) = ONE - DO 30 I = 2, M - A( I, 1 ) = ZERO - 30 CONTINUE - IF( M.GT.1 ) THEN -* -* Form Q(2:m,2:m) -* - CALL DORGQR( M-1, M-1, M-1, A( 2, 2 ), LDA, TAU, WORK, - $ LWORK, IINFO ) - END IF - END IF - ELSE -* -* Form P', determined by a call to DGEBRD to reduce a k-by-n -* matrix -* - IF( K.LT.N ) THEN -* -* If k < n, assume k <= m <= n -* - CALL DORGLQ( M, N, K, A, LDA, TAU, WORK, LWORK, IINFO ) -* - ELSE -* -* If k >= n, assume m = n -* -* Shift the vectors which define the elementary reflectors one -* row downward, and set the first row and column of P' to -* those of the unit matrix -* - A( 1, 1 ) = ONE - DO 40 I = 2, N - A( I, 1 ) = ZERO - 40 CONTINUE - DO 60 J = 2, N - DO 50 I = J - 1, 2, -1 - A( I, J ) = A( I-1, J ) - 50 CONTINUE - A( 1, J ) = ZERO - 60 CONTINUE - IF( N.GT.1 ) THEN -* -* Form P'(2:n,2:n) -* - CALL DORGLQ( N-1, N-1, N-1, A( 2, 2 ), LDA, TAU, WORK, - $ LWORK, IINFO ) - END IF - END IF - END IF - RETURN -* -* End of DORGBR -* - END diff --git a/Cantera/ext/lapack/dorgl2.f b/Cantera/ext/lapack/dorgl2.f deleted file mode 100755 index 76274955d..000000000 --- a/Cantera/ext/lapack/dorgl2.f +++ /dev/null @@ -1,134 +0,0 @@ - SUBROUTINE DORGL2( M, N, K, A, LDA, TAU, WORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - INTEGER INFO, K, LDA, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * ) -* .. -* -* Purpose -* ======= -* -* DORGL2 generates an m by n real matrix Q with orthonormal rows, -* which is defined as the first m rows of a product of k elementary -* reflectors of order n -* -* Q = H(k) . . . H(2) H(1) -* -* as returned by DGELQF. -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows of the matrix Q. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix Q. N >= M. -* -* K (input) INTEGER -* The number of elementary reflectors whose product defines the -* matrix Q. M >= K >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the i-th row must contain the vector which defines -* the elementary reflector H(i), for i = 1,2,...,k, as returned -* by DGELQF in the first k rows of its array argument A. -* On exit, the m-by-n matrix Q. -* -* LDA (input) INTEGER -* The first dimension of the array A. LDA >= max(1,M). -* -* TAU (input) DOUBLE PRECISION array, dimension (K) -* TAU(i) must contain the scalar factor of the elementary -* reflector H(i), as returned by DGELQF. -* -* WORK (workspace) DOUBLE PRECISION array, dimension (M) -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument has an illegal value -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE, ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Local Scalars .. - INTEGER I, J, L -* .. -* .. External Subroutines .. - EXTERNAL DLARF, DSCAL, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. -* .. Executable Statements .. -* -* Test the input arguments -* - INFO = 0 - IF( M.LT.0 ) THEN - INFO = -1 - ELSE IF( N.LT.M ) THEN - INFO = -2 - ELSE IF( K.LT.0 .OR. K.GT.M ) THEN - INFO = -3 - ELSE IF( LDA.LT.MAX( 1, M ) ) THEN - INFO = -5 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DORGL2', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( M.LE.0 ) - $ RETURN -* - IF( K.LT.M ) THEN -* -* Initialise rows k+1:m to rows of the unit matrix -* - DO 20 J = 1, N - DO 10 L = K + 1, M - A( L, J ) = ZERO - 10 CONTINUE - IF( J.GT.K .AND. J.LE.M ) - $ A( J, J ) = ONE - 20 CONTINUE - END IF -* - DO 40 I = K, 1, -1 -* -* Apply H(i) to A(i:m,i:n) from the right -* - IF( I.LT.N ) THEN - IF( I.LT.M ) THEN - A( I, I ) = ONE - CALL DLARF( 'Right', M-I, N-I+1, A( I, I ), LDA, - $ TAU( I ), A( I+1, I ), LDA, WORK ) - END IF - CALL DSCAL( N-I, -TAU( I ), A( I, I+1 ), LDA ) - END IF - A( I, I ) = ONE - TAU( I ) -* -* Set A(1:i-1,i) to zero -* - DO 30 L = 1, I - 1 - A( I, L ) = ZERO - 30 CONTINUE - 40 CONTINUE - RETURN -* -* End of DORGL2 -* - END diff --git a/Cantera/ext/lapack/dorglq.f b/Cantera/ext/lapack/dorglq.f deleted file mode 100755 index a266be514..000000000 --- a/Cantera/ext/lapack/dorglq.f +++ /dev/null @@ -1,207 +0,0 @@ - SUBROUTINE DORGLQ( M, N, K, A, LDA, TAU, WORK, LWORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - INTEGER INFO, K, LDA, LWORK, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( LWORK ) -* .. -* -* Purpose -* ======= -* -* DORGLQ generates an M-by-N real matrix Q with orthonormal rows, -* which is defined as the first M rows of a product of K elementary -* reflectors of order N -* -* Q = H(k) . . . H(2) H(1) -* -* as returned by DGELQF. -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows of the matrix Q. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix Q. N >= M. -* -* K (input) INTEGER -* The number of elementary reflectors whose product defines the -* matrix Q. M >= K >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the i-th row must contain the vector which defines -* the elementary reflector H(i), for i = 1,2,...,k, as returned -* by DGELQF in the first k rows of its array argument A. -* On exit, the M-by-N matrix Q. -* -* LDA (input) INTEGER -* The first dimension of the array A. LDA >= max(1,M). -* -* TAU (input) DOUBLE PRECISION array, dimension (K) -* TAU(i) must contain the scalar factor of the elementary -* reflector H(i), as returned by DGELQF. -* -* WORK (workspace/output) DOUBLE PRECISION array, dimension (LWORK) -* On exit, if INFO = 0, WORK(1) returns the optimal LWORK. -* -* LWORK (input) INTEGER -* The dimension of the array WORK. LWORK >= max(1,M). -* For optimum performance LWORK >= M*NB, where NB is -* the optimal blocksize. -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument has an illegal value -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D+0 ) -* .. -* .. Local Scalars .. - INTEGER I, IB, IINFO, IWS, J, KI, KK, L, LDWORK, NB, - $ NBMIN, NX -* .. -* .. External Subroutines .. - EXTERNAL DLARFB, DLARFT, DORGL2, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. External Functions .. - INTEGER ILAENV - EXTERNAL ILAENV -* .. -* .. Executable Statements .. -* -* Test the input arguments -* - INFO = 0 - IF( M.LT.0 ) THEN - INFO = -1 - ELSE IF( N.LT.M ) THEN - INFO = -2 - ELSE IF( K.LT.0 .OR. K.GT.M ) THEN - INFO = -3 - ELSE IF( LDA.LT.MAX( 1, M ) ) THEN - INFO = -5 - ELSE IF( LWORK.LT.MAX( 1, M ) ) THEN - INFO = -8 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DORGLQ', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( M.LE.0 ) THEN - WORK( 1 ) = 1 - RETURN - END IF -* -* Determine the block size. -* - NB = ILAENV( 1, 'DORGLQ', ' ', M, N, K, -1 ) - NBMIN = 2 - NX = 0 - IWS = M - IF( NB.GT.1 .AND. NB.LT.K ) THEN -* -* Determine when to cross over from blocked to unblocked code. -* - NX = MAX( 0, ILAENV( 3, 'DORGLQ', ' ', M, N, K, -1 ) ) - IF( NX.LT.K ) THEN -* -* Determine if workspace is large enough for blocked code. -* - LDWORK = M - IWS = LDWORK*NB - IF( LWORK.LT.IWS ) THEN -* -* Not enough workspace to use optimal NB: reduce NB and -* determine the minimum value of NB. -* - NB = LWORK / LDWORK - NBMIN = MAX( 2, ILAENV( 2, 'DORGLQ', ' ', M, N, K, -1 ) ) - END IF - END IF - END IF -* - IF( NB.GE.NBMIN .AND. NB.LT.K .AND. NX.LT.K ) THEN -* -* Use blocked code after the last block. -* The first kk rows are handled by the block method. -* - KI = ( ( K-NX-1 ) / NB )*NB - KK = MIN( K, KI+NB ) -* -* Set A(kk+1:m,1:kk) to zero. -* - DO 20 J = 1, KK - DO 10 I = KK + 1, M - A( I, J ) = ZERO - 10 CONTINUE - 20 CONTINUE - ELSE - KK = 0 - END IF -* -* Use unblocked code for the last or only block. -* - IF( KK.LT.M ) - $ CALL DORGL2( M-KK, N-KK, K-KK, A( KK+1, KK+1 ), LDA, - $ TAU( KK+1 ), WORK, IINFO ) -* - IF( KK.GT.0 ) THEN -* -* Use blocked code -* - DO 50 I = KI + 1, 1, -NB - IB = MIN( NB, K-I+1 ) - IF( I+IB.LE.M ) THEN -* -* Form the triangular factor of the block reflector -* H = H(i) H(i+1) . . . H(i+ib-1) -* - CALL DLARFT( 'Forward', 'Rowwise', N-I+1, IB, A( I, I ), - $ LDA, TAU( I ), WORK, LDWORK ) -* -* Apply H' to A(i+ib:m,i:n) from the right -* - CALL DLARFB( 'Right', 'Transpose', 'Forward', 'Rowwise', - $ M-I-IB+1, N-I+1, IB, A( I, I ), LDA, WORK, - $ LDWORK, A( I+IB, I ), LDA, WORK( IB+1 ), - $ LDWORK ) - END IF -* -* Apply H' to columns i:n of current block -* - CALL DORGL2( IB, N-I+1, IB, A( I, I ), LDA, TAU( I ), WORK, - $ IINFO ) -* -* Set columns 1:i-1 of current block to zero -* - DO 40 J = 1, I - 1 - DO 30 L = I, I + IB - 1 - A( L, J ) = ZERO - 30 CONTINUE - 40 CONTINUE - 50 CONTINUE - END IF -* - WORK( 1 ) = IWS - RETURN -* -* End of DORGLQ -* - END diff --git a/Cantera/ext/lapack/dorgqr.f b/Cantera/ext/lapack/dorgqr.f deleted file mode 100755 index c16ac6d83..000000000 --- a/Cantera/ext/lapack/dorgqr.f +++ /dev/null @@ -1,208 +0,0 @@ - SUBROUTINE DORGQR( M, N, K, A, LDA, TAU, WORK, LWORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - INTEGER INFO, K, LDA, LWORK, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( LWORK ) -* .. -* -* Purpose -* ======= -* -* DORGQR generates an M-by-N real matrix Q with orthonormal columns, -* which is defined as the first N columns of a product of K elementary -* reflectors of order M -* -* Q = H(1) H(2) . . . H(k) -* -* as returned by DGEQRF. -* -* Arguments -* ========= -* -* M (input) INTEGER -* The number of rows of the matrix Q. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix Q. M >= N >= 0. -* -* K (input) INTEGER -* The number of elementary reflectors whose product defines the -* matrix Q. N >= K >= 0. -* -* A (input/output) DOUBLE PRECISION array, dimension (LDA,N) -* On entry, the i-th column must contain the vector which -* defines the elementary reflector H(i), for i = 1,2,...,k, as -* returned by DGEQRF in the first k columns of its array -* argument A. -* On exit, the M-by-N matrix Q. -* -* LDA (input) INTEGER -* The first dimension of the array A. LDA >= max(1,M). -* -* TAU (input) DOUBLE PRECISION array, dimension (K) -* TAU(i) must contain the scalar factor of the elementary -* reflector H(i), as returned by DGEQRF. -* -* WORK (workspace/output) DOUBLE PRECISION array, dimension (LWORK) -* On exit, if INFO = 0, WORK(1) returns the optimal LWORK. -* -* LWORK (input) INTEGER -* The dimension of the array WORK. LWORK >= max(1,N). -* For optimum performance LWORK >= N*NB, where NB is the -* optimal blocksize. -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument has an illegal value -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ZERO - PARAMETER ( ZERO = 0.0D+0 ) -* .. -* .. Local Scalars .. - INTEGER I, IB, IINFO, IWS, J, KI, KK, L, LDWORK, NB, - $ NBMIN, NX -* .. -* .. External Subroutines .. - EXTERNAL DLARFB, DLARFT, DORG2R, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. External Functions .. - INTEGER ILAENV - EXTERNAL ILAENV -* .. -* .. Executable Statements .. -* -* Test the input arguments -* - INFO = 0 - IF( M.LT.0 ) THEN - INFO = -1 - ELSE IF( N.LT.0 .OR. N.GT.M ) THEN - INFO = -2 - ELSE IF( K.LT.0 .OR. K.GT.N ) THEN - INFO = -3 - ELSE IF( LDA.LT.MAX( 1, M ) ) THEN - INFO = -5 - ELSE IF( LWORK.LT.MAX( 1, N ) ) THEN - INFO = -8 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DORGQR', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( N.LE.0 ) THEN - WORK( 1 ) = 1 - RETURN - END IF -* -* Determine the block size. -* - NB = ILAENV( 1, 'DORGQR', ' ', M, N, K, -1 ) - NBMIN = 2 - NX = 0 - IWS = N - IF( NB.GT.1 .AND. NB.LT.K ) THEN -* -* Determine when to cross over from blocked to unblocked code. -* - NX = MAX( 0, ILAENV( 3, 'DORGQR', ' ', M, N, K, -1 ) ) - IF( NX.LT.K ) THEN -* -* Determine if workspace is large enough for blocked code. -* - LDWORK = N - IWS = LDWORK*NB - IF( LWORK.LT.IWS ) THEN -* -* Not enough workspace to use optimal NB: reduce NB and -* determine the minimum value of NB. -* - NB = LWORK / LDWORK - NBMIN = MAX( 2, ILAENV( 2, 'DORGQR', ' ', M, N, K, -1 ) ) - END IF - END IF - END IF -* - IF( NB.GE.NBMIN .AND. NB.LT.K .AND. NX.LT.K ) THEN -* -* Use blocked code after the last block. -* The first kk columns are handled by the block method. -* - KI = ( ( K-NX-1 ) / NB )*NB - KK = MIN( K, KI+NB ) -* -* Set A(1:kk,kk+1:n) to zero. -* - DO 20 J = KK + 1, N - DO 10 I = 1, KK - A( I, J ) = ZERO - 10 CONTINUE - 20 CONTINUE - ELSE - KK = 0 - END IF -* -* Use unblocked code for the last or only block. -* - IF( KK.LT.N ) - $ CALL DORG2R( M-KK, N-KK, K-KK, A( KK+1, KK+1 ), LDA, - $ TAU( KK+1 ), WORK, IINFO ) -* - IF( KK.GT.0 ) THEN -* -* Use blocked code -* - DO 50 I = KI + 1, 1, -NB - IB = MIN( NB, K-I+1 ) - IF( I+IB.LE.N ) THEN -* -* Form the triangular factor of the block reflector -* H = H(i) H(i+1) . . . H(i+ib-1) -* - CALL DLARFT( 'Forward', 'Columnwise', M-I+1, IB, - $ A( I, I ), LDA, TAU( I ), WORK, LDWORK ) -* -* Apply H to A(i:m,i+ib:n) from the left -* - CALL DLARFB( 'Left', 'No transpose', 'Forward', - $ 'Columnwise', M-I+1, N-I-IB+1, IB, - $ A( I, I ), LDA, WORK, LDWORK, A( I, I+IB ), - $ LDA, WORK( IB+1 ), LDWORK ) - END IF -* -* Apply H to rows i:m of current block -* - CALL DORG2R( M-I+1, IB, IB, A( I, I ), LDA, TAU( I ), WORK, - $ IINFO ) -* -* Set rows 1:i-1 of current block to zero -* - DO 40 J = I, I + IB - 1 - DO 30 L = 1, I - 1 - A( L, J ) = ZERO - 30 CONTINUE - 40 CONTINUE - 50 CONTINUE - END IF -* - WORK( 1 ) = IWS - RETURN -* -* End of DORGQR -* - END diff --git a/Cantera/ext/lapack/dorm2r.f b/Cantera/ext/lapack/dorm2r.f deleted file mode 100755 index 74dd845ef..000000000 --- a/Cantera/ext/lapack/dorm2r.f +++ /dev/null @@ -1,198 +0,0 @@ - SUBROUTINE DORM2R( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, - $ WORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - CHARACTER SIDE, TRANS - INTEGER INFO, K, LDA, LDC, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) -* .. -* -* Purpose -* ======= -* -* DORM2R overwrites the general real m by n matrix C with -* -* Q * C if SIDE = 'L' and TRANS = 'N', or -* -* Q'* C if SIDE = 'L' and TRANS = 'T', or -* -* C * Q if SIDE = 'R' and TRANS = 'N', or -* -* C * Q' if SIDE = 'R' and TRANS = 'T', -* -* where Q is a real orthogonal matrix defined as the product of k -* elementary reflectors -* -* Q = H(1) H(2) . . . H(k) -* -* as returned by DGEQRF. Q is of order m if SIDE = 'L' and of order n -* if SIDE = 'R'. -* -* Arguments -* ========= -* -* SIDE (input) CHARACTER*1 -* = 'L': apply Q or Q' from the Left -* = 'R': apply Q or Q' from the Right -* -* TRANS (input) CHARACTER*1 -* = 'N': apply Q (No transpose) -* = 'T': apply Q' (Transpose) -* -* M (input) INTEGER -* The number of rows of the matrix C. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix C. N >= 0. -* -* K (input) INTEGER -* The number of elementary reflectors whose product defines -* the matrix Q. -* If SIDE = 'L', M >= K >= 0; -* if SIDE = 'R', N >= K >= 0. -* -* A (input) DOUBLE PRECISION array, dimension (LDA,K) -* The i-th column must contain the vector which defines the -* elementary reflector H(i), for i = 1,2,...,k, as returned by -* DGEQRF in the first k columns of its array argument A. -* A is modified by the routine but restored on exit. -* -* LDA (input) INTEGER -* The leading dimension of the array A. -* If SIDE = 'L', LDA >= max(1,M); -* if SIDE = 'R', LDA >= max(1,N). -* -* TAU (input) DOUBLE PRECISION array, dimension (K) -* TAU(i) must contain the scalar factor of the elementary -* reflector H(i), as returned by DGEQRF. -* -* C (input/output) DOUBLE PRECISION array, dimension (LDC,N) -* On entry, the m by n matrix C. -* On exit, C is overwritten by Q*C or Q'*C or C*Q' or C*Q. -* -* LDC (input) INTEGER -* The leading dimension of the array C. LDC >= max(1,M). -* -* WORK (workspace) DOUBLE PRECISION array, dimension -* (N) if SIDE = 'L', -* (M) if SIDE = 'R' -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE - PARAMETER ( ONE = 1.0D+0 ) -* .. -* .. Local Scalars .. - LOGICAL LEFT, NOTRAN - INTEGER I, I1, I2, I3, IC, JC, MI, NI, NQ - DOUBLE PRECISION AII -* .. -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. -* .. External Subroutines .. - EXTERNAL DLARF, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. -* .. Executable Statements .. -* -* Test the input arguments -* - INFO = 0 - LEFT = LSAME( SIDE, 'L' ) - NOTRAN = LSAME( TRANS, 'N' ) -* -* NQ is the order of Q -* - IF( LEFT ) THEN - NQ = M - ELSE - NQ = N - END IF - IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN - INFO = -1 - ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'T' ) ) THEN - INFO = -2 - ELSE IF( M.LT.0 ) THEN - INFO = -3 - ELSE IF( N.LT.0 ) THEN - INFO = -4 - ELSE IF( K.LT.0 .OR. K.GT.NQ ) THEN - INFO = -5 - ELSE IF( LDA.LT.MAX( 1, NQ ) ) THEN - INFO = -7 - ELSE IF( LDC.LT.MAX( 1, M ) ) THEN - INFO = -10 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DORM2R', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( M.EQ.0 .OR. N.EQ.0 .OR. K.EQ.0 ) - $ RETURN -* - IF( ( LEFT .AND. .NOT.NOTRAN ) .OR. ( .NOT.LEFT .AND. NOTRAN ) ) - $ THEN - I1 = 1 - I2 = K - I3 = 1 - ELSE - I1 = K - I2 = 1 - I3 = -1 - END IF -* - IF( LEFT ) THEN - NI = N - JC = 1 - ELSE - MI = M - IC = 1 - END IF -* - DO 10 I = I1, I2, I3 - IF( LEFT ) THEN -* -* H(i) is applied to C(i:m,1:n) -* - MI = M - I + 1 - IC = I - ELSE -* -* H(i) is applied to C(1:m,i:n) -* - NI = N - I + 1 - JC = I - END IF -* -* Apply H(i) -* - AII = A( I, I ) - A( I, I ) = ONE - CALL DLARF( SIDE, MI, NI, A( I, I ), 1, TAU( I ), C( IC, JC ), - $ LDC, WORK ) - A( I, I ) = AII - 10 CONTINUE - RETURN -* -* End of DORM2R -* - END diff --git a/Cantera/ext/lapack/dormbr.f b/Cantera/ext/lapack/dormbr.f deleted file mode 100755 index 5002fb511..000000000 --- a/Cantera/ext/lapack/dormbr.f +++ /dev/null @@ -1,250 +0,0 @@ - SUBROUTINE DORMBR( VECT, SIDE, TRANS, M, N, K, A, LDA, TAU, C, - $ LDC, WORK, LWORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - CHARACTER SIDE, TRANS, VECT - INTEGER INFO, K, LDA, LDC, LWORK, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), - $ WORK( LWORK ) -* .. -* -* Purpose -* ======= -* -* If VECT = 'Q', DORMBR overwrites the general real M-by-N matrix C -* with -* SIDE = 'L' SIDE = 'R' -* TRANS = 'N': Q * C C * Q -* TRANS = 'T': Q**T * C C * Q**T -* -* If VECT = 'P', DORMBR overwrites the general real M-by-N matrix C -* with -* SIDE = 'L' SIDE = 'R' -* TRANS = 'N': P * C C * P -* TRANS = 'T': P**T * C C * P**T -* -* Here Q and P**T are the orthogonal matrices determined by DGEBRD when -* reducing a real matrix A to bidiagonal form: A = Q * B * P**T. Q and -* P**T are defined as products of elementary reflectors H(i) and G(i) -* respectively. -* -* Let nq = m if SIDE = 'L' and nq = n if SIDE = 'R'. Thus nq is the -* order of the orthogonal matrix Q or P**T that is applied. -* -* If VECT = 'Q', A is assumed to have been an NQ-by-K matrix: -* if nq >= k, Q = H(1) H(2) . . . H(k); -* if nq < k, Q = H(1) H(2) . . . H(nq-1). -* -* If VECT = 'P', A is assumed to have been a K-by-NQ matrix: -* if k < nq, P = G(1) G(2) . . . G(k); -* if k >= nq, P = G(1) G(2) . . . G(nq-1). -* -* Arguments -* ========= -* -* VECT (input) CHARACTER*1 -* = 'Q': apply Q or Q**T; -* = 'P': apply P or P**T. -* -* SIDE (input) CHARACTER*1 -* = 'L': apply Q, Q**T, P or P**T from the Left; -* = 'R': apply Q, Q**T, P or P**T from the Right. -* -* TRANS (input) CHARACTER*1 -* = 'N': No transpose, apply Q or P; -* = 'T': Transpose, apply Q**T or P**T. -* -* M (input) INTEGER -* The number of rows of the matrix C. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix C. N >= 0. -* -* K (input) INTEGER -* If VECT = 'Q', the number of columns in the original -* matrix reduced by DGEBRD. -* If VECT = 'P', the number of rows in the original -* matrix reduced by DGEBRD. -* K >= 0. -* -* A (input) DOUBLE PRECISION array, dimension -* (LDA,min(nq,K)) if VECT = 'Q' -* (LDA,nq) if VECT = 'P' -* The vectors which define the elementary reflectors H(i) and -* G(i), whose products determine the matrices Q and P, as -* returned by DGEBRD. -* -* LDA (input) INTEGER -* The leading dimension of the array A. -* If VECT = 'Q', LDA >= max(1,nq); -* if VECT = 'P', LDA >= max(1,min(nq,K)). -* -* TAU (input) DOUBLE PRECISION array, dimension (min(nq,K)) -* TAU(i) must contain the scalar factor of the elementary -* reflector H(i) or G(i) which determines Q or P, as returned -* by DGEBRD in the array argument TAUQ or TAUP. -* -* C (input/output) DOUBLE PRECISION array, dimension (LDC,N) -* On entry, the M-by-N matrix C. -* On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q -* or P*C or P**T*C or C*P or C*P**T. -* -* LDC (input) INTEGER -* The leading dimension of the array C. LDC >= max(1,M). -* -* WORK (workspace/output) DOUBLE PRECISION array, dimension (LWORK) -* On exit, if INFO = 0, WORK(1) returns the optimal LWORK. -* -* LWORK (input) INTEGER -* The dimension of the array WORK. -* If SIDE = 'L', LWORK >= max(1,N); -* if SIDE = 'R', LWORK >= max(1,M). -* For optimum performance LWORK >= N*NB if SIDE = 'L', and -* LWORK >= M*NB if SIDE = 'R', where NB is the optimal -* blocksize. -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* -* ===================================================================== -* -* .. Local Scalars .. - LOGICAL APPLYQ, LEFT, NOTRAN - CHARACTER TRANST - INTEGER I1, I2, IINFO, MI, NI, NQ, NW -* .. -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. -* .. External Subroutines .. - EXTERNAL DORMLQ, DORMQR, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input arguments -* - INFO = 0 - APPLYQ = LSAME( VECT, 'Q' ) - LEFT = LSAME( SIDE, 'L' ) - NOTRAN = LSAME( TRANS, 'N' ) -* -* NQ is the order of Q or P and NW is the minimum dimension of WORK -* - IF( LEFT ) THEN - NQ = M - NW = N - ELSE - NQ = N - NW = M - END IF - IF( .NOT.APPLYQ .AND. .NOT.LSAME( VECT, 'P' ) ) THEN - INFO = -1 - ELSE IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN - INFO = -2 - ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'T' ) ) THEN - INFO = -3 - ELSE IF( M.LT.0 ) THEN - INFO = -4 - ELSE IF( N.LT.0 ) THEN - INFO = -5 - ELSE IF( K.LT.0 ) THEN - INFO = -6 - ELSE IF( ( APPLYQ .AND. LDA.LT.MAX( 1, NQ ) ) .OR. - $ ( .NOT.APPLYQ .AND. LDA.LT.MAX( 1, MIN( NQ, K ) ) ) ) - $ THEN - INFO = -8 - ELSE IF( LDC.LT.MAX( 1, M ) ) THEN - INFO = -11 - ELSE IF( LWORK.LT.MAX( 1, NW ) ) THEN - INFO = -13 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DORMBR', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - WORK( 1 ) = 1 - IF( M.EQ.0 .OR. N.EQ.0 ) - $ RETURN -* - IF( APPLYQ ) THEN -* -* Apply Q -* - IF( NQ.GE.K ) THEN -* -* Q was determined by a call to DGEBRD with nq >= k -* - CALL DORMQR( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, - $ WORK, LWORK, IINFO ) - ELSE IF( NQ.GT.1 ) THEN -* -* Q was determined by a call to DGEBRD with nq < k -* - IF( LEFT ) THEN - MI = M - 1 - NI = N - I1 = 2 - I2 = 1 - ELSE - MI = M - NI = N - 1 - I1 = 1 - I2 = 2 - END IF - CALL DORMQR( SIDE, TRANS, MI, NI, NQ-1, A( 2, 1 ), LDA, TAU, - $ C( I1, I2 ), LDC, WORK, LWORK, IINFO ) - END IF - ELSE -* -* Apply P -* - IF( NOTRAN ) THEN - TRANST = 'T' - ELSE - TRANST = 'N' - END IF - IF( NQ.GT.K ) THEN -* -* P was determined by a call to DGEBRD with nq > k -* - CALL DORMLQ( SIDE, TRANST, M, N, K, A, LDA, TAU, C, LDC, - $ WORK, LWORK, IINFO ) - ELSE IF( NQ.GT.1 ) THEN -* -* P was determined by a call to DGEBRD with nq <= k -* - IF( LEFT ) THEN - MI = M - 1 - NI = N - I1 = 2 - I2 = 1 - ELSE - MI = M - NI = N - 1 - I1 = 1 - I2 = 2 - END IF - CALL DORMLQ( SIDE, TRANST, MI, NI, NQ-1, A( 1, 2 ), LDA, - $ TAU, C( I1, I2 ), LDC, WORK, LWORK, IINFO ) - END IF - END IF - RETURN -* -* End of DORMBR -* - END diff --git a/Cantera/ext/lapack/dorml2.f b/Cantera/ext/lapack/dorml2.f deleted file mode 100755 index bb789d864..000000000 --- a/Cantera/ext/lapack/dorml2.f +++ /dev/null @@ -1,198 +0,0 @@ - SUBROUTINE DORML2( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, - $ WORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* February 29, 1992 -* -* .. Scalar Arguments .. - CHARACTER SIDE, TRANS - INTEGER INFO, K, LDA, LDC, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) -* .. -* -* Purpose -* ======= -* -* DORML2 overwrites the general real m by n matrix C with -* -* Q * C if SIDE = 'L' and TRANS = 'N', or -* -* Q'* C if SIDE = 'L' and TRANS = 'T', or -* -* C * Q if SIDE = 'R' and TRANS = 'N', or -* -* C * Q' if SIDE = 'R' and TRANS = 'T', -* -* where Q is a real orthogonal matrix defined as the product of k -* elementary reflectors -* -* Q = H(k) . . . H(2) H(1) -* -* as returned by DGELQF. Q is of order m if SIDE = 'L' and of order n -* if SIDE = 'R'. -* -* Arguments -* ========= -* -* SIDE (input) CHARACTER*1 -* = 'L': apply Q or Q' from the Left -* = 'R': apply Q or Q' from the Right -* -* TRANS (input) CHARACTER*1 -* = 'N': apply Q (No transpose) -* = 'T': apply Q' (Transpose) -* -* M (input) INTEGER -* The number of rows of the matrix C. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix C. N >= 0. -* -* K (input) INTEGER -* The number of elementary reflectors whose product defines -* the matrix Q. -* If SIDE = 'L', M >= K >= 0; -* if SIDE = 'R', N >= K >= 0. -* -* A (input) DOUBLE PRECISION array, dimension -* (LDA,M) if SIDE = 'L', -* (LDA,N) if SIDE = 'R' -* The i-th row must contain the vector which defines the -* elementary reflector H(i), for i = 1,2,...,k, as returned by -* DGELQF in the first k rows of its array argument A. -* A is modified by the routine but restored on exit. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,K). -* -* TAU (input) DOUBLE PRECISION array, dimension (K) -* TAU(i) must contain the scalar factor of the elementary -* reflector H(i), as returned by DGELQF. -* -* C (input/output) DOUBLE PRECISION array, dimension (LDC,N) -* On entry, the m by n matrix C. -* On exit, C is overwritten by Q*C or Q'*C or C*Q' or C*Q. -* -* LDC (input) INTEGER -* The leading dimension of the array C. LDC >= max(1,M). -* -* WORK (workspace) DOUBLE PRECISION array, dimension -* (N) if SIDE = 'L', -* (M) if SIDE = 'R' -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE - PARAMETER ( ONE = 1.0D+0 ) -* .. -* .. Local Scalars .. - LOGICAL LEFT, NOTRAN - INTEGER I, I1, I2, I3, IC, JC, MI, NI, NQ - DOUBLE PRECISION AII -* .. -* .. External Functions .. - LOGICAL LSAME - EXTERNAL LSAME -* .. -* .. External Subroutines .. - EXTERNAL DLARF, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX -* .. -* .. Executable Statements .. -* -* Test the input arguments -* - INFO = 0 - LEFT = LSAME( SIDE, 'L' ) - NOTRAN = LSAME( TRANS, 'N' ) -* -* NQ is the order of Q -* - IF( LEFT ) THEN - NQ = M - ELSE - NQ = N - END IF - IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN - INFO = -1 - ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'T' ) ) THEN - INFO = -2 - ELSE IF( M.LT.0 ) THEN - INFO = -3 - ELSE IF( N.LT.0 ) THEN - INFO = -4 - ELSE IF( K.LT.0 .OR. K.GT.NQ ) THEN - INFO = -5 - ELSE IF( LDA.LT.MAX( 1, K ) ) THEN - INFO = -7 - ELSE IF( LDC.LT.MAX( 1, M ) ) THEN - INFO = -10 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DORML2', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( M.EQ.0 .OR. N.EQ.0 .OR. K.EQ.0 ) - $ RETURN -* - IF( ( LEFT .AND. NOTRAN ) .OR. ( .NOT.LEFT .AND. .NOT.NOTRAN ) ) - $ THEN - I1 = 1 - I2 = K - I3 = 1 - ELSE - I1 = K - I2 = 1 - I3 = -1 - END IF -* - IF( LEFT ) THEN - NI = N - JC = 1 - ELSE - MI = M - IC = 1 - END IF -* - DO 10 I = I1, I2, I3 - IF( LEFT ) THEN -* -* H(i) is applied to C(i:m,1:n) -* - MI = M - I + 1 - IC = I - ELSE -* -* H(i) is applied to C(1:m,i:n) -* - NI = N - I + 1 - JC = I - END IF -* -* Apply H(i) -* - AII = A( I, I ) - A( I, I ) = ONE - CALL DLARF( SIDE, MI, NI, A( I, I ), LDA, TAU( I ), - $ C( IC, JC ), LDC, WORK ) - A( I, I ) = AII - 10 CONTINUE - RETURN -* -* End of DORML2 -* - END diff --git a/Cantera/ext/lapack/dormlq.f b/Cantera/ext/lapack/dormlq.f deleted file mode 100755 index cb5c9fae3..000000000 --- a/Cantera/ext/lapack/dormlq.f +++ /dev/null @@ -1,254 +0,0 @@ - SUBROUTINE DORMLQ( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, - $ WORK, LWORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - CHARACTER SIDE, TRANS - INTEGER INFO, K, LDA, LDC, LWORK, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), - $ WORK( LWORK ) -* .. -* -* Purpose -* ======= -* -* DORMLQ overwrites the general real M-by-N matrix C with -* -* SIDE = 'L' SIDE = 'R' -* TRANS = 'N': Q * C C * Q -* TRANS = 'T': Q**T * C C * Q**T -* -* where Q is a real orthogonal matrix defined as the product of k -* elementary reflectors -* -* Q = H(k) . . . H(2) H(1) -* -* as returned by DGELQF. Q is of order M if SIDE = 'L' and of order N -* if SIDE = 'R'. -* -* Arguments -* ========= -* -* SIDE (input) CHARACTER*1 -* = 'L': apply Q or Q**T from the Left; -* = 'R': apply Q or Q**T from the Right. -* -* TRANS (input) CHARACTER*1 -* = 'N': No transpose, apply Q; -* = 'T': Transpose, apply Q**T. -* -* M (input) INTEGER -* The number of rows of the matrix C. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix C. N >= 0. -* -* K (input) INTEGER -* The number of elementary reflectors whose product defines -* the matrix Q. -* If SIDE = 'L', M >= K >= 0; -* if SIDE = 'R', N >= K >= 0. -* -* A (input) DOUBLE PRECISION array, dimension -* (LDA,M) if SIDE = 'L', -* (LDA,N) if SIDE = 'R' -* The i-th row must contain the vector which defines the -* elementary reflector H(i), for i = 1,2,...,k, as returned by -* DGELQF in the first k rows of its array argument A. -* A is modified by the routine but restored on exit. -* -* LDA (input) INTEGER -* The leading dimension of the array A. LDA >= max(1,K). -* -* TAU (input) DOUBLE PRECISION array, dimension (K) -* TAU(i) must contain the scalar factor of the elementary -* reflector H(i), as returned by DGELQF. -* -* C (input/output) DOUBLE PRECISION array, dimension (LDC,N) -* On entry, the M-by-N matrix C. -* On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q. -* -* LDC (input) INTEGER -* The leading dimension of the array C. LDC >= max(1,M). -* -* WORK (workspace/output) DOUBLE PRECISION array, dimension (LWORK) -* On exit, if INFO = 0, WORK(1) returns the optimal LWORK. -* -* LWORK (input) INTEGER -* The dimension of the array WORK. -* If SIDE = 'L', LWORK >= max(1,N); -* if SIDE = 'R', LWORK >= max(1,M). -* For optimum performance LWORK >= N*NB if SIDE = 'L', and -* LWORK >= M*NB if SIDE = 'R', where NB is the optimal -* blocksize. -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* -* ===================================================================== -* -* .. Parameters .. - INTEGER NBMAX, LDT - PARAMETER ( NBMAX = 64, LDT = NBMAX+1 ) -* .. -* .. Local Scalars .. - LOGICAL LEFT, NOTRAN - CHARACTER TRANST - INTEGER I, I1, I2, I3, IB, IC, IINFO, IWS, JC, LDWORK, - $ MI, NB, NBMIN, NI, NQ, NW -* .. -* .. Local Arrays .. - DOUBLE PRECISION T( LDT, NBMAX ) -* .. -* .. External Functions .. - LOGICAL LSAME - INTEGER ILAENV - EXTERNAL LSAME, ILAENV -* .. -* .. External Subroutines .. - EXTERNAL DLARFB, DLARFT, DORML2, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input arguments -* - INFO = 0 - LEFT = LSAME( SIDE, 'L' ) - NOTRAN = LSAME( TRANS, 'N' ) -* -* NQ is the order of Q and NW is the minimum dimension of WORK -* - IF( LEFT ) THEN - NQ = M - NW = N - ELSE - NQ = N - NW = M - END IF - IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN - INFO = -1 - ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'T' ) ) THEN - INFO = -2 - ELSE IF( M.LT.0 ) THEN - INFO = -3 - ELSE IF( N.LT.0 ) THEN - INFO = -4 - ELSE IF( K.LT.0 .OR. K.GT.NQ ) THEN - INFO = -5 - ELSE IF( LDA.LT.MAX( 1, K ) ) THEN - INFO = -7 - ELSE IF( LDC.LT.MAX( 1, M ) ) THEN - INFO = -10 - ELSE IF( LWORK.LT.MAX( 1, NW ) ) THEN - INFO = -12 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DORMLQ', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( M.EQ.0 .OR. N.EQ.0 .OR. K.EQ.0 ) THEN - WORK( 1 ) = 1 - RETURN - END IF -* -* Determine the block size. NB may be at most NBMAX, where NBMAX -* is used to define the local array T. -* - NB = MIN( NBMAX, ILAENV( 1, 'DORMLQ', SIDE // TRANS, M, N, K, - $ -1 ) ) - NBMIN = 2 - LDWORK = NW - IF( NB.GT.1 .AND. NB.LT.K ) THEN - IWS = NW*NB - IF( LWORK.LT.IWS ) THEN - NB = LWORK / LDWORK - NBMIN = MAX( 2, ILAENV( 2, 'DORMLQ', SIDE // TRANS, M, N, K, - $ -1 ) ) - END IF - ELSE - IWS = NW - END IF -* - IF( NB.LT.NBMIN .OR. NB.GE.K ) THEN -* -* Use unblocked code -* - CALL DORML2( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, WORK, - $ IINFO ) - ELSE -* -* Use blocked code -* - IF( ( LEFT .AND. NOTRAN ) .OR. - $ ( .NOT.LEFT .AND. .NOT.NOTRAN ) ) THEN - I1 = 1 - I2 = K - I3 = NB - ELSE - I1 = ( ( K-1 ) / NB )*NB + 1 - I2 = 1 - I3 = -NB - END IF -* - IF( LEFT ) THEN - NI = N - JC = 1 - ELSE - MI = M - IC = 1 - END IF -* - IF( NOTRAN ) THEN - TRANST = 'T' - ELSE - TRANST = 'N' - END IF -* - DO 10 I = I1, I2, I3 - IB = MIN( NB, K-I+1 ) -* -* Form the triangular factor of the block reflector -* H = H(i) H(i+1) . . . H(i+ib-1) -* - CALL DLARFT( 'Forward', 'Rowwise', NQ-I+1, IB, A( I, I ), - $ LDA, TAU( I ), T, LDT ) - IF( LEFT ) THEN -* -* H or H' is applied to C(i:m,1:n) -* - MI = M - I + 1 - IC = I - ELSE -* -* H or H' is applied to C(1:m,i:n) -* - NI = N - I + 1 - JC = I - END IF -* -* Apply H or H' -* - CALL DLARFB( SIDE, TRANST, 'Forward', 'Rowwise', MI, NI, IB, - $ A( I, I ), LDA, T, LDT, C( IC, JC ), LDC, WORK, - $ LDWORK ) - 10 CONTINUE - END IF - WORK( 1 ) = IWS - RETURN -* -* End of DORMLQ -* - END diff --git a/Cantera/ext/lapack/dormqr.f b/Cantera/ext/lapack/dormqr.f deleted file mode 100755 index 0700bcdbf..000000000 --- a/Cantera/ext/lapack/dormqr.f +++ /dev/null @@ -1,247 +0,0 @@ - SUBROUTINE DORMQR( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, - $ WORK, LWORK, INFO ) -* -* -- LAPACK routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - CHARACTER SIDE, TRANS - INTEGER INFO, K, LDA, LDC, LWORK, M, N -* .. -* .. Array Arguments .. - DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), - $ WORK( LWORK ) -* .. -* -* Purpose -* ======= -* -* DORMQR overwrites the general real M-by-N matrix C with -* -* SIDE = 'L' SIDE = 'R' -* TRANS = 'N': Q * C C * Q -* TRANS = 'T': Q**T * C C * Q**T -* -* where Q is a real orthogonal matrix defined as the product of k -* elementary reflectors -* -* Q = H(1) H(2) . . . H(k) -* -* as returned by DGEQRF. Q is of order M if SIDE = 'L' and of order N -* if SIDE = 'R'. -* -* Arguments -* ========= -* -* SIDE (input) CHARACTER*1 -* = 'L': apply Q or Q**T from the Left; -* = 'R': apply Q or Q**T from the Right. -* -* TRANS (input) CHARACTER*1 -* = 'N': No transpose, apply Q; -* = 'T': Transpose, apply Q**T. -* -* M (input) INTEGER -* The number of rows of the matrix C. M >= 0. -* -* N (input) INTEGER -* The number of columns of the matrix C. N >= 0. -* -* K (input) INTEGER -* The number of elementary reflectors whose product defines -* the matrix Q. -* If SIDE = 'L', M >= K >= 0; -* if SIDE = 'R', N >= K >= 0. -* -* A (input) DOUBLE PRECISION array, dimension (LDA,K) -* The i-th column must contain the vector which defines the -* elementary reflector H(i), for i = 1,2,...,k, as returned by -* DGEQRF in the first k columns of its array argument A. -* A is modified by the routine but restored on exit. -* -* LDA (input) INTEGER -* The leading dimension of the array A. -* If SIDE = 'L', LDA >= max(1,M); -* if SIDE = 'R', LDA >= max(1,N). -* -* TAU (input) DOUBLE PRECISION array, dimension (K) -* TAU(i) must contain the scalar factor of the elementary -* reflector H(i), as returned by DGEQRF. -* -* C (input/output) DOUBLE PRECISION array, dimension (LDC,N) -* On entry, the M-by-N matrix C. -* On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q. -* -* LDC (input) INTEGER -* The leading dimension of the array C. LDC >= max(1,M). -* -* WORK (workspace/output) DOUBLE PRECISION array, dimension (LWORK) -* On exit, if INFO = 0, WORK(1) returns the optimal LWORK. -* -* LWORK (input) INTEGER -* The dimension of the array WORK. -* If SIDE = 'L', LWORK >= max(1,N); -* if SIDE = 'R', LWORK >= max(1,M). -* For optimum performance LWORK >= N*NB if SIDE = 'L', and -* LWORK >= M*NB if SIDE = 'R', where NB is the optimal -* blocksize. -* -* INFO (output) INTEGER -* = 0: successful exit -* < 0: if INFO = -i, the i-th argument had an illegal value -* -* ===================================================================== -* -* .. Parameters .. - INTEGER NBMAX, LDT - PARAMETER ( NBMAX = 64, LDT = NBMAX+1 ) -* .. -* .. Local Scalars .. - LOGICAL LEFT, NOTRAN - INTEGER I, I1, I2, I3, IB, IC, IINFO, IWS, JC, LDWORK, - $ MI, NB, NBMIN, NI, NQ, NW -* .. -* .. Local Arrays .. - DOUBLE PRECISION T( LDT, NBMAX ) -* .. -* .. External Functions .. - LOGICAL LSAME - INTEGER ILAENV - EXTERNAL LSAME, ILAENV -* .. -* .. External Subroutines .. - EXTERNAL DLARFB, DLARFT, DORM2R, XERBLA -* .. -* .. Intrinsic Functions .. - INTRINSIC MAX, MIN -* .. -* .. Executable Statements .. -* -* Test the input arguments -* - INFO = 0 - LEFT = LSAME( SIDE, 'L' ) - NOTRAN = LSAME( TRANS, 'N' ) -* -* NQ is the order of Q and NW is the minimum dimension of WORK -* - IF( LEFT ) THEN - NQ = M - NW = N - ELSE - NQ = N - NW = M - END IF - IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN - INFO = -1 - ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'T' ) ) THEN - INFO = -2 - ELSE IF( M.LT.0 ) THEN - INFO = -3 - ELSE IF( N.LT.0 ) THEN - INFO = -4 - ELSE IF( K.LT.0 .OR. K.GT.NQ ) THEN - INFO = -5 - ELSE IF( LDA.LT.MAX( 1, NQ ) ) THEN - INFO = -7 - ELSE IF( LDC.LT.MAX( 1, M ) ) THEN - INFO = -10 - ELSE IF( LWORK.LT.MAX( 1, NW ) ) THEN - INFO = -12 - END IF - IF( INFO.NE.0 ) THEN - CALL XERBLA( 'DORMQR', -INFO ) - RETURN - END IF -* -* Quick return if possible -* - IF( M.EQ.0 .OR. N.EQ.0 .OR. K.EQ.0 ) THEN - WORK( 1 ) = 1 - RETURN - END IF -* -* Determine the block size. NB may be at most NBMAX, where NBMAX -* is used to define the local array T. -* - NB = MIN( NBMAX, ILAENV( 1, 'DORMQR', SIDE // TRANS, M, N, K, - $ -1 ) ) - NBMIN = 2 - LDWORK = NW - IF( NB.GT.1 .AND. NB.LT.K ) THEN - IWS = NW*NB - IF( LWORK.LT.IWS ) THEN - NB = LWORK / LDWORK - NBMIN = MAX( 2, ILAENV( 2, 'DORMQR', SIDE // TRANS, M, N, K, - $ -1 ) ) - END IF - ELSE - IWS = NW - END IF -* - IF( NB.LT.NBMIN .OR. NB.GE.K ) THEN -* -* Use unblocked code -* - CALL DORM2R( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, WORK, - $ IINFO ) - ELSE -* -* Use blocked code -* - IF( ( LEFT .AND. .NOT.NOTRAN ) .OR. - $ ( .NOT.LEFT .AND. NOTRAN ) ) THEN - I1 = 1 - I2 = K - I3 = NB - ELSE - I1 = ( ( K-1 ) / NB )*NB + 1 - I2 = 1 - I3 = -NB - END IF -* - IF( LEFT ) THEN - NI = N - JC = 1 - ELSE - MI = M - IC = 1 - END IF -* - DO 10 I = I1, I2, I3 - IB = MIN( NB, K-I+1 ) -* -* Form the triangular factor of the block reflector -* H = H(i) H(i+1) . . . H(i+ib-1) -* - CALL DLARFT( 'Forward', 'Columnwise', NQ-I+1, IB, A( I, I ), - $ LDA, TAU( I ), T, LDT ) - IF( LEFT ) THEN -* -* H or H' is applied to C(i:m,1:n) -* - MI = M - I + 1 - IC = I - ELSE -* -* H or H' is applied to C(1:m,i:n) -* - NI = N - I + 1 - JC = I - END IF -* -* Apply H or H' -* - CALL DLARFB( SIDE, TRANS, 'Forward', 'Columnwise', MI, NI, - $ IB, A( I, I ), LDA, T, LDT, C( IC, JC ), LDC, - $ WORK, LDWORK ) - 10 CONTINUE - END IF - WORK( 1 ) = IWS - RETURN -* -* End of DORMQR -* - END diff --git a/Cantera/ext/lapack/drscl.f b/Cantera/ext/lapack/drscl.f deleted file mode 100755 index 00628b300..000000000 --- a/Cantera/ext/lapack/drscl.f +++ /dev/null @@ -1,115 +0,0 @@ - SUBROUTINE DRSCL( N, SA, SX, INCX ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - INTEGER INCX, N - DOUBLE PRECISION SA -* .. -* .. Array Arguments .. - DOUBLE PRECISION SX( * ) -* .. -* -* Purpose -* ======= -* -* DRSCL multiplies an n-element real vector x by the real scalar 1/a. -* This is done without overflow or underflow as long as -* the final result x/a does not overflow or underflow. -* -* Arguments -* ========= -* -* N (input) INTEGER -* The number of components of the vector x. -* -* SA (input) DOUBLE PRECISION -* The scalar a which is used to divide each component of x. -* SA must be >= 0, or the subroutine will divide by zero. -* -* SX (input/output) DOUBLE PRECISION array, dimension -* (1+(N-1)*abs(INCX)) -* The n-element vector x. -* -* INCX (input) INTEGER -* The increment between successive values of the vector SX. -* > 0: SX(1) = X(1) and SX(1+(i-1)*INCX) = x(i), 1< i<= n -* -* ===================================================================== -* -* .. Parameters .. - DOUBLE PRECISION ONE, ZERO - PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) -* .. -* .. Local Scalars .. - LOGICAL DONE - DOUBLE PRECISION BIGNUM, CDEN, CDEN1, CNUM, CNUM1, MUL, SMLNUM -* .. -* .. External Functions .. - DOUBLE PRECISION DLAMCH - EXTERNAL DLAMCH -* .. -* .. External Subroutines .. - EXTERNAL DLABAD, DSCAL -* .. -* .. Intrinsic Functions .. - INTRINSIC ABS -* .. -* .. Executable Statements .. -* -* Quick return if possible -* - IF( N.LE.0 ) - $ RETURN -* -* Get machine parameters -* - SMLNUM = DLAMCH( 'S' ) - BIGNUM = ONE / SMLNUM - CALL DLABAD( SMLNUM, BIGNUM ) -* -* Initialize the denominator to SA and the numerator to 1. -* - CDEN = SA - CNUM = ONE -* - 10 CONTINUE - CDEN1 = CDEN*SMLNUM - CNUM1 = CNUM / BIGNUM - IF( ABS( CDEN1 ).GT.ABS( CNUM ) .AND. CNUM.NE.ZERO ) THEN -* -* Pre-multiply X by SMLNUM if CDEN is large compared to CNUM. -* - MUL = SMLNUM - DONE = .FALSE. - CDEN = CDEN1 - ELSE IF( ABS( CNUM1 ).GT.ABS( CDEN ) ) THEN -* -* Pre-multiply X by BIGNUM if CDEN is small compared to CNUM. -* - MUL = BIGNUM - DONE = .FALSE. - CNUM = CNUM1 - ELSE -* -* Multiply X by CNUM / CDEN and return. -* - MUL = CNUM / CDEN - DONE = .TRUE. - END IF -* -* Scale the vector X by MUL -* - CALL DSCAL( N, MUL, SX, INCX ) -* - IF( .NOT.DONE ) - $ GO TO 10 -* - RETURN -* -* End of DRSCL -* - END diff --git a/Cantera/ext/lapack/ilaenv.f b/Cantera/ext/lapack/ilaenv.f deleted file mode 100755 index e3d296a88..000000000 --- a/Cantera/ext/lapack/ilaenv.f +++ /dev/null @@ -1,506 +0,0 @@ - INTEGER FUNCTION ILAENV( ISPEC, NAME, OPTS, N1, N2, N3, - $ N4 ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - CHARACTER*( * ) NAME, OPTS - INTEGER ISPEC, N1, N2, N3, N4 -* .. -* -* Purpose -* ======= -* -* ILAENV is called from the LAPACK routines to choose problem-dependent -* parameters for the local environment. See ISPEC for a description of -* the parameters. -* -* This version provides a set of parameters which should give good, -* but not optimal, performance on many of the currently available -* computers. Users are encouraged to modify this subroutine to set -* the tuning parameters for their particular machine using the option -* and problem size information in the arguments. -* -* This routine will not function correctly if it is converted to all -* lower case. Converting it to all upper case is allowed. -* -* Arguments -* ========= -* -* ISPEC (input) INTEGER -* Specifies the parameter to be returned as the value of -* ILAENV. -* = 1: the optimal blocksize; if this value is 1, an unblocked -* algorithm will give the best performance. -* = 2: the minimum block size for which the block routine -* should be used; if the usable block size is less than -* this value, an unblocked routine should be used. -* = 3: the crossover point (in a block routine, for N less -* than this value, an unblocked routine should be used) -* = 4: the number of shifts, used in the nonsymmetric -* eigenvalue routines -* = 5: the minimum column dimension for blocking to be used; -* rectangular blocks must have dimension at least k by m, -* where k is given by ILAENV(2,...) and m by ILAENV(5,...) -* = 6: the crossover point for the SVD (when reducing an m by n -* matrix to bidiagonal form, if max(m,n)/min(m,n) exceeds -* this value, a QR factorization is used first to reduce -* the matrix to a triangular form.) -* = 7: the number of processors -* = 8: the crossover point for the multishift QR and QZ methods -* for nonsymmetric eigenvalue problems. -* -* NAME (input) CHARACTER*(*) -* The name of the calling subroutine, in either upper case or -* lower case. -* -* OPTS (input) CHARACTER*(*) -* The character options to the subroutine NAME, concatenated -* into a single character string. For example, UPLO = 'U', -* TRANS = 'T', and DIAG = 'N' for a triangular routine would -* be specified as OPTS = 'UTN'. -* -* N1 (input) INTEGER -* N2 (input) INTEGER -* N3 (input) INTEGER -* N4 (input) INTEGER -* Problem dimensions for the subroutine NAME; these may not all -* be required. -* -* (ILAENV) (output) INTEGER -* >= 0: the value of the parameter specified by ISPEC -* < 0: if ILAENV = -k, the k-th argument had an illegal value. -* -* Further Details -* =============== -* -* The following conventions have been used when calling ILAENV from the -* LAPACK routines: -* 1) OPTS is a concatenation of all of the character options to -* subroutine NAME, in the same order that they appear in the -* argument list for NAME, even if they are not used in determining -* the value of the parameter specified by ISPEC. -* 2) The problem dimensions N1, N2, N3, N4 are specified in the order -* that they appear in the argument list for NAME. N1 is used -* first, N2 second, and so on, and unused problem dimensions are -* passed a value of -1. -* 3) The parameter value returned by ILAENV is checked for validity in -* the calling subroutine. For example, ILAENV is used to retrieve -* the optimal blocksize for STRTRI as follows: -* -* NB = ILAENV( 1, 'STRTRI', UPLO // DIAG, N, -1, -1, -1 ) -* IF( NB.LE.1 ) NB = MAX( 1, N ) -* -* ===================================================================== -* -* .. Local Scalars .. - LOGICAL CNAME, SNAME - CHARACTER*1 C1 - CHARACTER*2 C2, C4 - CHARACTER*3 C3 - CHARACTER*6 SUBNAM - INTEGER I, IC, IZ, NB, NBMIN, NX -* .. -* .. Intrinsic Functions .. - INTRINSIC CHAR, ICHAR, INT, MIN, REAL -* .. -* .. Executable Statements .. -* - GO TO ( 100, 100, 100, 400, 500, 600, 700, 800 ) ISPEC -* -* Invalid value for ISPEC -* - ILAENV = -1 - RETURN -* - 100 CONTINUE -* -* Convert NAME to upper case if the first character is lower case. -* - ILAENV = 1 - SUBNAM = NAME - IC = ICHAR( SUBNAM( 1:1 ) ) - IZ = ICHAR( 'Z' ) - IF( IZ.EQ.90 .OR. IZ.EQ.122 ) THEN -* -* ASCII character set -* - IF( IC.GE.97 .AND. IC.LE.122 ) THEN - SUBNAM( 1:1 ) = CHAR( IC-32 ) - DO 10 I = 2, 6 - IC = ICHAR( SUBNAM( I:I ) ) - IF( IC.GE.97 .AND. IC.LE.122 ) - $ SUBNAM( I:I ) = CHAR( IC-32 ) - 10 CONTINUE - END IF -* - ELSE IF( IZ.EQ.233 .OR. IZ.EQ.169 ) THEN -* -* EBCDIC character set -* - IF( ( IC.GE.129 .AND. IC.LE.137 ) .OR. - $ ( IC.GE.145 .AND. IC.LE.153 ) .OR. - $ ( IC.GE.162 .AND. IC.LE.169 ) ) THEN - SUBNAM( 1:1 ) = CHAR( IC+64 ) - DO 20 I = 2, 6 - IC = ICHAR( SUBNAM( I:I ) ) - IF( ( IC.GE.129 .AND. IC.LE.137 ) .OR. - $ ( IC.GE.145 .AND. IC.LE.153 ) .OR. - $ ( IC.GE.162 .AND. IC.LE.169 ) ) - $ SUBNAM( I:I ) = CHAR( IC+64 ) - 20 CONTINUE - END IF -* - ELSE IF( IZ.EQ.218 .OR. IZ.EQ.250 ) THEN -* -* Prime machines: ASCII+128 -* - IF( IC.GE.225 .AND. IC.LE.250 ) THEN - SUBNAM( 1:1 ) = CHAR( IC-32 ) - DO 30 I = 2, 6 - IC = ICHAR( SUBNAM( I:I ) ) - IF( IC.GE.225 .AND. IC.LE.250 ) - $ SUBNAM( I:I ) = CHAR( IC-32 ) - 30 CONTINUE - END IF - END IF -* - C1 = SUBNAM( 1:1 ) - SNAME = C1.EQ.'S' .OR. C1.EQ.'D' - CNAME = C1.EQ.'C' .OR. C1.EQ.'Z' - IF( .NOT.( CNAME .OR. SNAME ) ) - $ RETURN - C2 = SUBNAM( 2:3 ) - C3 = SUBNAM( 4:6 ) - C4 = C3( 2:3 ) -* - GO TO ( 110, 200, 300 ) ISPEC -* - 110 CONTINUE -* -* ISPEC = 1: block size -* -* In these examples, separate code is provided for setting NB for -* real and complex. We assume that NB will take the same value in -* single or double precision. -* - NB = 1 -* - IF( C2.EQ.'GE' ) THEN - IF( C3.EQ.'TRF' ) THEN - IF( SNAME ) THEN - NB = 64 - ELSE - NB = 64 - END IF - ELSE IF( C3.EQ.'QRF' .OR. C3.EQ.'RQF' .OR. C3.EQ.'LQF' .OR. - $ C3.EQ.'QLF' ) THEN - IF( SNAME ) THEN - NB = 32 - ELSE - NB = 32 - END IF - ELSE IF( C3.EQ.'HRD' ) THEN - IF( SNAME ) THEN - NB = 32 - ELSE - NB = 32 - END IF - ELSE IF( C3.EQ.'BRD' ) THEN - IF( SNAME ) THEN - NB = 32 - ELSE - NB = 32 - END IF - ELSE IF( C3.EQ.'TRI' ) THEN - IF( SNAME ) THEN - NB = 64 - ELSE - NB = 64 - END IF - END IF - ELSE IF( C2.EQ.'PO' ) THEN - IF( C3.EQ.'TRF' ) THEN - IF( SNAME ) THEN - NB = 64 - ELSE - NB = 64 - END IF - END IF - ELSE IF( C2.EQ.'SY' ) THEN - IF( C3.EQ.'TRF' ) THEN - IF( SNAME ) THEN - NB = 64 - ELSE - NB = 64 - END IF - ELSE IF( SNAME .AND. C3.EQ.'TRD' ) THEN - NB = 1 - ELSE IF( SNAME .AND. C3.EQ.'GST' ) THEN - NB = 64 - END IF - ELSE IF( CNAME .AND. C2.EQ.'HE' ) THEN - IF( C3.EQ.'TRF' ) THEN - NB = 64 - ELSE IF( C3.EQ.'TRD' ) THEN - NB = 1 - ELSE IF( C3.EQ.'GST' ) THEN - NB = 64 - END IF - ELSE IF( SNAME .AND. C2.EQ.'OR' ) THEN - IF( C3( 1:1 ).EQ.'G' ) THEN - IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. - $ C4.EQ.'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. - $ C4.EQ.'BR' ) THEN - NB = 32 - END IF - ELSE IF( C3( 1:1 ).EQ.'M' ) THEN - IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. - $ C4.EQ.'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. - $ C4.EQ.'BR' ) THEN - NB = 32 - END IF - END IF - ELSE IF( CNAME .AND. C2.EQ.'UN' ) THEN - IF( C3( 1:1 ).EQ.'G' ) THEN - IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. - $ C4.EQ.'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. - $ C4.EQ.'BR' ) THEN - NB = 32 - END IF - ELSE IF( C3( 1:1 ).EQ.'M' ) THEN - IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. - $ C4.EQ.'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. - $ C4.EQ.'BR' ) THEN - NB = 32 - END IF - END IF - ELSE IF( C2.EQ.'GB' ) THEN - IF( C3.EQ.'TRF' ) THEN - IF( SNAME ) THEN - IF( N4.LE.64 ) THEN - NB = 1 - ELSE - NB = 32 - END IF - ELSE - IF( N4.LE.64 ) THEN - NB = 1 - ELSE - NB = 32 - END IF - END IF - END IF - ELSE IF( C2.EQ.'PB' ) THEN - IF( C3.EQ.'TRF' ) THEN - IF( SNAME ) THEN - IF( N2.LE.64 ) THEN - NB = 1 - ELSE - NB = 32 - END IF - ELSE - IF( N2.LE.64 ) THEN - NB = 1 - ELSE - NB = 32 - END IF - END IF - END IF - ELSE IF( C2.EQ.'TR' ) THEN - IF( C3.EQ.'TRI' ) THEN - IF( SNAME ) THEN - NB = 64 - ELSE - NB = 64 - END IF - END IF - ELSE IF( C2.EQ.'LA' ) THEN - IF( C3.EQ.'UUM' ) THEN - IF( SNAME ) THEN - NB = 64 - ELSE - NB = 64 - END IF - END IF - ELSE IF( SNAME .AND. C2.EQ.'ST' ) THEN - IF( C3.EQ.'EBZ' ) THEN - NB = 1 - END IF - END IF - ILAENV = NB - RETURN -* - 200 CONTINUE -* -* ISPEC = 2: minimum block size -* - NBMIN = 2 - IF( C2.EQ.'GE' ) THEN - IF( C3.EQ.'QRF' .OR. C3.EQ.'RQF' .OR. C3.EQ.'LQF' .OR. - $ C3.EQ.'QLF' ) THEN - IF( SNAME ) THEN - NBMIN = 2 - ELSE - NBMIN = 2 - END IF - ELSE IF( C3.EQ.'HRD' ) THEN - IF( SNAME ) THEN - NBMIN = 2 - ELSE - NBMIN = 2 - END IF - ELSE IF( C3.EQ.'BRD' ) THEN - IF( SNAME ) THEN - NBMIN = 2 - ELSE - NBMIN = 2 - END IF - ELSE IF( C3.EQ.'TRI' ) THEN - IF( SNAME ) THEN - NBMIN = 2 - ELSE - NBMIN = 2 - END IF - END IF - ELSE IF( C2.EQ.'SY' ) THEN - IF( C3.EQ.'TRF' ) THEN - IF( SNAME ) THEN - NBMIN = 8 - ELSE - NBMIN = 8 - END IF - ELSE IF( SNAME .AND. C3.EQ.'TRD' ) THEN - NBMIN = 2 - END IF - ELSE IF( CNAME .AND. C2.EQ.'HE' ) THEN - IF( C3.EQ.'TRD' ) THEN - NBMIN = 2 - END IF - ELSE IF( SNAME .AND. C2.EQ.'OR' ) THEN - IF( C3( 1:1 ).EQ.'G' ) THEN - IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. - $ C4.EQ.'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. - $ C4.EQ.'BR' ) THEN - NBMIN = 2 - END IF - ELSE IF( C3( 1:1 ).EQ.'M' ) THEN - IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. - $ C4.EQ.'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. - $ C4.EQ.'BR' ) THEN - NBMIN = 2 - END IF - END IF - ELSE IF( CNAME .AND. C2.EQ.'UN' ) THEN - IF( C3( 1:1 ).EQ.'G' ) THEN - IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. - $ C4.EQ.'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. - $ C4.EQ.'BR' ) THEN - NBMIN = 2 - END IF - ELSE IF( C3( 1:1 ).EQ.'M' ) THEN - IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. - $ C4.EQ.'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. - $ C4.EQ.'BR' ) THEN - NBMIN = 2 - END IF - END IF - END IF - ILAENV = NBMIN - RETURN -* - 300 CONTINUE -* -* ISPEC = 3: crossover point -* - NX = 0 - IF( C2.EQ.'GE' ) THEN - IF( C3.EQ.'QRF' .OR. C3.EQ.'RQF' .OR. C3.EQ.'LQF' .OR. - $ C3.EQ.'QLF' ) THEN - IF( SNAME ) THEN - NX = 128 - ELSE - NX = 128 - END IF - ELSE IF( C3.EQ.'HRD' ) THEN - IF( SNAME ) THEN - NX = 128 - ELSE - NX = 128 - END IF - ELSE IF( C3.EQ.'BRD' ) THEN - IF( SNAME ) THEN - NX = 128 - ELSE - NX = 128 - END IF - END IF - ELSE IF( C2.EQ.'SY' ) THEN - IF( SNAME .AND. C3.EQ.'TRD' ) THEN - NX = 1 - END IF - ELSE IF( CNAME .AND. C2.EQ.'HE' ) THEN - IF( C3.EQ.'TRD' ) THEN - NX = 1 - END IF - ELSE IF( SNAME .AND. C2.EQ.'OR' ) THEN - IF( C3( 1:1 ).EQ.'G' ) THEN - IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. - $ C4.EQ.'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. - $ C4.EQ.'BR' ) THEN - NX = 128 - END IF - END IF - ELSE IF( CNAME .AND. C2.EQ.'UN' ) THEN - IF( C3( 1:1 ).EQ.'G' ) THEN - IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. - $ C4.EQ.'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. - $ C4.EQ.'BR' ) THEN - NX = 128 - END IF - END IF - END IF - ILAENV = NX - RETURN -* - 400 CONTINUE -* -* ISPEC = 4: number of shifts (used by xHSEQR) -* - ILAENV = 6 - RETURN -* - 500 CONTINUE -* -* ISPEC = 5: minimum column dimension (not used) -* - ILAENV = 2 - RETURN -* - 600 CONTINUE -* -* ISPEC = 6: crossover point for SVD (used by xGELSS and xGESVD) -* - ILAENV = INT( REAL( MIN( N1, N2 ) )*1.6E0 ) - RETURN -* - 700 CONTINUE -* -* ISPEC = 7: number of processors (not used) -* - ILAENV = 1 - RETURN -* - 800 CONTINUE -* -* ISPEC = 8: crossover point for multishift (used by xHSEQR) -* - ILAENV = 50 - RETURN -* -* End of ILAENV -* - END diff --git a/Cantera/ext/lapack/lsame.f b/Cantera/ext/lapack/lsame.f deleted file mode 100755 index db133b544..000000000 --- a/Cantera/ext/lapack/lsame.f +++ /dev/null @@ -1,87 +0,0 @@ - LOGICAL FUNCTION LSAME( CA, CB ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - CHARACTER CA, CB -* .. -* -* Purpose -* ======= -* -* LSAME returns .TRUE. if CA is the same letter as CB regardless of -* case. -* -* Arguments -* ========= -* -* CA (input) CHARACTER*1 -* CB (input) CHARACTER*1 -* CA and CB specify the single characters to be compared. -* -* ===================================================================== -* -* .. Intrinsic Functions .. - INTRINSIC ICHAR -* .. -* .. Local Scalars .. - INTEGER INTA, INTB, ZCODE -* .. -* .. Executable Statements .. -* -* Test if the characters are equal -* - LSAME = CA.EQ.CB - IF( LSAME ) - $ RETURN -* -* Now test for equivalence if both characters are alphabetic. -* - ZCODE = ICHAR( 'Z' ) -* -* Use 'Z' rather than 'A' so that ASCII can be detected on Prime -* machines, on which ICHAR returns a value with bit 8 set. -* ICHAR('A') on Prime machines returns 193 which is the same as -* ICHAR('A') on an EBCDIC machine. -* - INTA = ICHAR( CA ) - INTB = ICHAR( CB ) -* - IF( ZCODE.EQ.90 .OR. ZCODE.EQ.122 ) THEN -* -* ASCII is assumed - ZCODE is the ASCII code of either lower or -* upper case 'Z'. -* - IF( INTA.GE.97 .AND. INTA.LE.122 ) INTA = INTA - 32 - IF( INTB.GE.97 .AND. INTB.LE.122 ) INTB = INTB - 32 -* - ELSE IF( ZCODE.EQ.233 .OR. ZCODE.EQ.169 ) THEN -* -* EBCDIC is assumed - ZCODE is the EBCDIC code of either lower or -* upper case 'Z'. -* - IF( INTA.GE.129 .AND. INTA.LE.137 .OR. - $ INTA.GE.145 .AND. INTA.LE.153 .OR. - $ INTA.GE.162 .AND. INTA.LE.169 ) INTA = INTA + 64 - IF( INTB.GE.129 .AND. INTB.LE.137 .OR. - $ INTB.GE.145 .AND. INTB.LE.153 .OR. - $ INTB.GE.162 .AND. INTB.LE.169 ) INTB = INTB + 64 -* - ELSE IF( ZCODE.EQ.218 .OR. ZCODE.EQ.250 ) THEN -* -* ASCII is assumed, on Prime machines - ZCODE is the ASCII code -* plus 128 of either lower or upper case 'Z'. -* - IF( INTA.GE.225 .AND. INTA.LE.250 ) INTA = INTA - 32 - IF( INTB.GE.225 .AND. INTB.LE.250 ) INTB = INTB - 32 - END IF - LSAME = INTA.EQ.INTB -* -* RETURN -* -* End of LSAME -* - END diff --git a/Cantera/ext/lapack/xerbla.f b/Cantera/ext/lapack/xerbla.f deleted file mode 100755 index 618dfcf97..000000000 --- a/Cantera/ext/lapack/xerbla.f +++ /dev/null @@ -1,46 +0,0 @@ - SUBROUTINE XERBLA( SRNAME, INFO ) -* -* -- LAPACK auxiliary routine (version 2.0) -- -* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., -* Courant Institute, Argonne National Lab, and Rice University -* September 30, 1994 -* -* .. Scalar Arguments .. - CHARACTER*6 SRNAME - INTEGER INFO -* .. -* -* Purpose -* ======= -* -* XERBLA is an error handler for the LAPACK routines. -* It is called by an LAPACK routine if an input parameter has an -* invalid value. A message is printed and execution stops. -* -* Installers may consider modifying the STOP statement in order to -* call system-specific exception-handling facilities. -* -* Arguments -* ========= -* -* SRNAME (input) CHARACTER*6 -* The name of the routine which called XERBLA. -* -* INFO (input) INTEGER -* The position of the invalid parameter in the parameter list -* of the calling routine. -* -* ===================================================================== -* -* .. Executable Statements .. -* - WRITE( *, FMT = 9999 )SRNAME, INFO -* - STOP -* - 9999 FORMAT( ' ** On entry to ', A6, ' parameter number ', I2, ' had ', - $ 'an illegal value' ) -* -* End of XERBLA -* - END From 704336024cb941295e577af5927aee2197c25997 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Sat, 4 Feb 2012 00:37:06 +0000 Subject: [PATCH 076/124] [cantera]: removing math dir --- Cantera/ext/math/Makefile.am | 24 - Cantera/ext/math/cblas.h | 646 ---- Cantera/ext/math/daux.f | 257 -- Cantera/ext/math/ddaspk.f | 6612 -------------------------------- Cantera/ext/math/dgbefa.f | 174 - Cantera/ext/math/dgbfa.f | 174 - Cantera/ext/math/dgbsl.f | 135 - Cantera/ext/math/dgefa.f | 104 - Cantera/ext/math/dgesl.f | 117 - Cantera/ext/math/dp1vlu.f | 151 - Cantera/ext/math/dpcoef.f | 78 - Cantera/ext/math/dpolft.f | 364 -- Cantera/ext/math/fdump.f | 72 - Cantera/ext/math/gmres.h | 144 - Cantera/ext/math/idamax.f | 39 - Cantera/ext/math/j4save.f | 65 - Cantera/ext/math/mach.cpp | 60 - Cantera/ext/math/mkl_cblas.h | 644 ---- Cantera/ext/math/pcoef.f | 712 ---- Cantera/ext/math/polfit.f | 289 -- Cantera/ext/math/printstring.c | 15 - Cantera/ext/math/pvalue.f | 150 - Cantera/ext/math/xercnt.f | 60 - Cantera/ext/math/xerhlt.f | 40 - Cantera/ext/math/xermsg.f | 364 -- Cantera/ext/math/xerprn.f | 230 -- Cantera/ext/math/xersve.f | 155 - Cantera/ext/math/xgetua.f | 51 - 28 files changed, 11926 deletions(-) delete mode 100644 Cantera/ext/math/Makefile.am delete mode 100755 Cantera/ext/math/cblas.h delete mode 100755 Cantera/ext/math/daux.f delete mode 100755 Cantera/ext/math/ddaspk.f delete mode 100644 Cantera/ext/math/dgbefa.f delete mode 100644 Cantera/ext/math/dgbfa.f delete mode 100644 Cantera/ext/math/dgbsl.f delete mode 100644 Cantera/ext/math/dgefa.f delete mode 100644 Cantera/ext/math/dgesl.f delete mode 100644 Cantera/ext/math/dp1vlu.f delete mode 100644 Cantera/ext/math/dpcoef.f delete mode 100644 Cantera/ext/math/dpolft.f delete mode 100644 Cantera/ext/math/fdump.f delete mode 100755 Cantera/ext/math/gmres.h delete mode 100755 Cantera/ext/math/idamax.f delete mode 100644 Cantera/ext/math/j4save.f delete mode 100755 Cantera/ext/math/mach.cpp delete mode 100755 Cantera/ext/math/mkl_cblas.h delete mode 100644 Cantera/ext/math/pcoef.f delete mode 100644 Cantera/ext/math/polfit.f delete mode 100644 Cantera/ext/math/printstring.c delete mode 100644 Cantera/ext/math/pvalue.f delete mode 100644 Cantera/ext/math/xercnt.f delete mode 100644 Cantera/ext/math/xerhlt.f delete mode 100755 Cantera/ext/math/xermsg.f delete mode 100644 Cantera/ext/math/xerprn.f delete mode 100644 Cantera/ext/math/xersve.f delete mode 100644 Cantera/ext/math/xgetua.f diff --git a/Cantera/ext/math/Makefile.am b/Cantera/ext/math/Makefile.am deleted file mode 100644 index 1139d010c..000000000 --- a/Cantera/ext/math/Makefile.am +++ /dev/null @@ -1,24 +0,0 @@ -cc_sources = mach.cpp printstring.c - -fc_sources = ddaspk.f dgbfa.f dgbsl.f \ - dgefa.f dgesl.f dp1vlu.f dpcoef.f \ - dpolft.f fdump.f j4save.f pcoef.f \ - polfit.f pvalue.f xercnt.f xerhlt.f \ - xermsg.f xerprn.f xersve.f xgetua.f - -AM_CPPFLAGS = -AM_CXXFLAGS = $(AM_CPPFLAGS) -AM_FCFLAGS = $(AM_CPPFLAGS) - -lib_LTLIBRARIES = $(top_builddir)/build/lib/libctmath.la -library_includedir = $(top_builddir)/build/include -library_include_HEADERS = $(h_sources) - -#----------------------- -# Cantera Converters C/C++ library -#----------------------- - -__top_builddir__build_lib_libctmath_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) -__top_builddir__build_lib_libctmath_la_SOURCES = $(fc_sources) $(cc_sources) - -CLEANFILES = *.o diff --git a/Cantera/ext/math/cblas.h b/Cantera/ext/math/cblas.h deleted file mode 100755 index 204698e97..000000000 --- a/Cantera/ext/math/cblas.h +++ /dev/null @@ -1,646 +0,0 @@ -// -*- C++ -*- - -// ============================================= // -// die double-Versionen der BLAS Level 1 und 2 // -// ============================================= // - -#ifndef CBLAS1_H -// ============================================================================ - -// generate a plane rotation -void drotg( double *a, double *b, double *c, double *s ); - - -#if 0 -// generate a modified plane rotation -void drotmg( double *d1, double *d2, double *a, double b, double *param ); -#endif - -// apply a plane rotation -void drot( int n, double *x, int incx, double *y, int incy, double c, - double s ); - - -#if 0 -// apply a modified plane rotation -void drotm( int n, double *x, int incx, double *y, int incy, double *param ); -#endif - - -// x <=> y -void dswap( int n, double *x, int incx, double *y, int incy ); - - -// x <= a*x -void dscal( int n, double alpha, double *x, int incx ); - - -// y <= x -void dcopy( int n, const double *x, int incx, double *y, int incy ); - - -// y <= a*x+y -void daxpy( int n, double alpha, const double *x, int incx, double *y, - int incy ); - - -// dot <= x^T*y -double ddot( int n, const double *x, int incx, const double *y, int incy ); - - -// dnrm2 <= |x|_2 -double dnrm2( int n, const double *x, int incx ); - - -// asum <= |x|_1 -double dasum( int n, const double *x, int incx ); - - -// idamax <= first k such that |x_k| = max|x_i| -int idamax( int n, const double *x, int incx ); - -// ============================================================================ -#endif // CBLAS1_H - - -#ifndef CBLAS2_H -// ============================================================================ - - -enum MatrixTranspose { NoTranspose=0, Transpose=1, ConjugateTranspose=2 }; -enum MatrixTriangle { UpperTriangle=0, LowerTriangle=1 }; -enum MatrixUnitTriangular { UnitTriangular=0, NotUnitTriangular=1 }; - - -// ============================================================================ - - -// y <= alpha*A*x + beta*y, y <= alpha*A^T*x + beta*y, A-(m,n) -void dgemv( MatrixTranspose trans, int m, int n, double alpha, - const double *A, int ldA, const double *x, int incx, - double beta, double *y, int incy ); - - -// y <= alpha*A*x + beta*y, y <= alpha*A^T*x + beta*y, A-(m,n) -void dgbmv( MatrixTranspose trans, int m, int n, int kl, int ku, double alpha, - const double *A, int ldA, const double *x, int incx, double *beta, - double *y, int incy ); - - -// y <= alpha*A*x + beta*y -void dsymv( MatrixTriangle uplo, int n, double alpha, const double *A, int ldA, - const double *x, int incx, double beta, double *y, int incy ); - - -// y <= alpha*A*x + beta*y -void dsbmv( MatrixTriangle uplo, int n, int k, double alpha, double *A, - int ldA, const double *x, int incx, double beta, double *y, - int *incy ); - - -// y <= alpha*A*x + beta*y -void dspmv( MatrixTriangle uplo, int n, double alpha, const double *AP, - const double *x, int incx, double beta, double *y, int incy ); - - -// x <= A*x, x <= A^T*x -void dtrmv( MatrixTriangle uplo, MatrixTranspose trans, - MatrixUnitTriangular diag, int n, const double *A, int ldA, - double *x, int incx ); - - -// x <= A*x, x <= A^T*x -void dtbmv( MatrixTriangle uplo, MatrixTranspose trans, - MatrixUnitTriangular diag, int n, int k, const double *A, int ldA, - double *x, int incx ); - - -// x <= A*x, x <= A^T*x -void dtpmv( MatrixTriangle uplo, MatrixTranspose trans, - MatrixUnitTriangular diag, int n, int k, const double *AP, - double *x, int incx ); - - -// x <= A^{-1}*x, x <= A^{-T}*x -void dtrsv( MatrixTriangle uplo, MatrixTranspose trans, - MatrixUnitTriangular diag, int n, const double *A, int ldA, - double *x, int incx ); - - -// x <= A^{-1}*x, x <= A^{-T}*x -void dtbsv( MatrixTriangle uplo, MatrixTranspose trans, - MatrixUnitTriangular diag, int n, int k, const double *A, int ldA, - double *x, int incx ); - - -// x <= A^{-1}*x, x <= A^{-T}*x -void dtpsv( MatrixTriangle uplo, MatrixTranspose trans, - MatrixUnitTriangular diag, int n, int k, const double *AP, - double *x, int incx ); - - -// A <= alpha*x*y^T + A, A-(m,n) -void dger( int m, int n, double alpha, const double *x, int incx, - const double *y, int incy, double *A, int ldA ); - - -// A <= alpha*x*x^T + A -void dsyr( MatrixTriangle uplo, int n, double alpha, const double *x, - int incx, double *A, int ldA ); - - -// A <= alpha*x*x^T + A -void dspr( MatrixTriangle uplo, int n, double alpha, const double *x, - int incx, double *AP ); - - -// A <= alpha*x*y^T + alpha*y*x^T + A -void dsyr2( MatrixTriangle uplo, int n, double alpha, const double *x, - int incx, const double *y, int incy, double *A, int ldA ); - - -// A <= alpha*x*y^T + alpha*y*x^T + A -void dspr2( MatrixTriangle uplo, int n, double alpha, const double *x, - int incx, const double *y, int incy, double *AP ); - -// ============================================================================ -#endif // CBLAS2_H - - -#ifndef BLAS1_H -#define BLAS1_H -// ============================================================================ - -// generate a plane rotation -extern "C" -void drotg_( double *a, double *b, double *c, double *s ); - - -#if 0 -// generate a modified plane rotation -extern "C" -void drotmg_( double *d1, double *d2, double *a, double *b, double *param ); -#endif - - -// apply a plane rotation -extern "C" -void drot_( int *n, double *x, int *incx, double *y, int *incy, - double *c, double *s ); - - -#if 0 -// apply a modified plane rotation -extern "C" -void drotm_( int *n, double *x, int *incx, double *y, int *incy, - double *param ); -#endif - - -// x <=> y -extern "C" -void dswap_( const int *n, double *x, const int *incx, double *y, - const int *incy ); - -// x <= a*x -//extern "C" -//void dscal_( const int *n, const double *alpha, double *x, const int *incx ); - - -// y <= x -extern "C" -void dcopy_( const int *n, const double *x, const int *incx, double *y, - const int *incy ); - - -// y <= a*x+y -extern "C" -void daxpy_( const int *n, const double *alpha, const double *x, - const int *incx, double *y, const int *incy ); - - -// dot <= x^T*y -extern "C" -double ddot_( const int *n, const double *x, const int *incx, const double *y, - const int *incy ); - - -// dnrm2 <= |x|_2 -extern "C" -double dnrm2_( const int *n, const double *x, const int *incx ); - - -// asum <= |x|_1 -extern "C" -double dasum_( const int *n, const double *x, const int *incx ); - - -// idamax <= first k such that |x_k| = max|x_i| -extern "C" -int idamax_( const int *n, const double *x, const int *incx ); - - -// ============================================================================ -#endif // BLAS1_H - - - -#ifndef CBLAS1_H -#define CBLAS1_H -// ============================================================================ - - -#ifdef __linux__ // muss dnorm2 f"ur linux neu implementieren -# include -#endif - -inline -void drotg( double *a, double *b, double *c, double *s ) { - drotg_(a,b,c,s); -} - -#if 0 -inline -void drotmg( double *d1, double *d2, double *a, double b, double *param ) { - drotmg_(d1,d2,a,&b,param); -} -#endif - -inline -void drot( int n, double *x, int incx, double *y, int incy, double c, - double s ) { - drot_(&n,x,&incx,y,&incy,&c,&s); -} - -#if 0 -inline -void drotm( int n, double *x, int incx, double *y, int incy, double *param ) { - drotm_(&n,x,&incx,y,&incy,param); -} -#endif - -inline -void dswap( int n, double *x, int incx, double *y, int incy ) { - dswap_(&n,x,&incx,y,&incy); -} - -inline -void dscal( int n, double alpha, double *x, int incx ) { - int nn = n; - int incxx = incx; - double aa = alpha; - dscal_(&nn,&aa,x,&incxx); -} - -inline -void dcopy( int n, const double *x, int incx, double *y, int incy ) { - int nn = n; - int incxx = incx; - int incyy = incy; - dcopy_(&nn,x,&incxx,y,&incyy); -} - -inline -void daxpy( int n, double alpha, const double *x, int incx, double *y, - int incy ) { - double aa = alpha; - int incxx = incx; - int incyy = incy; - daxpy_(&n,&aa,x,&incxx,y,&incyy); -} - -inline -double ddot( int n, const double *x, int incx, const double *y, int incy ) { - int nn = n; - int incxx = incx; - int incyy = incy; - return ddot_(&nn,x,&incxx,y,&incyy); -} - -inline -double dnrm2( int n, const double *x, int incx ) { - int nn = n; - int incxx = incx; -#ifdef __linux__ // fehlerhafte Berechnung - double d=0.; - while ( nn-- ) - d+=(*x)*(*x), x+=incxx; - return sqrt(d); -#else // unter nicht-Linux korrekt - return dnrm2_(&nn,x,&incxx); -#endif -} - -inline -double dasum( int n, const double *x, int incx ) { - return dasum_(&n,x,&incx); -} - -inline -int idamax( int n, const double *x, int incx ) { - return idamax_(&n,x,&incx); -} - - -// ============================================================================ -#endif // CBLAS1_H - - -#ifndef BLAS2_H -#define BLAS2_H -// ============================================================================ - -// y <= alpha*A*x + beta*y, y <= alpha*A^T*x + beta*y, A-(m,n) -//extern "C" -//void dgemv_( const char *trans, const int *m, const int *n, -// const double *alpha, const double *A, const int *ldA, -// const double *x, const int *incx, -// const double *beta, double *y, const int *incy ); - - -// y <= alpha*A*x + beta*y, y <= alpha*A^T*x + beta*y, A-(m,n) -extern "C" -void dgbmv_( const char *trans, const int *m, const int *n, const int *kl, - const int *ku, const double *alpha, const double *A, - const int *ldA, const double *x, const int *incx, - const double *beta, double *y, const int *incy ); - - -// y <= alpha*A*x + beta*y -extern "C" -void dsymv_( const char *uplo, const int *n, const double *alpha, - const double *A, const int *ldA, const double *x, const int *incx, - const double *beta, double *y, const int *incy ); - - -// y <= alpha*A*x + beta*y -extern "C" -void dsbmv_( const char *uplo, const int *n, const int *k, const double *alpha, - const double *A, const int *ldA, const double *x, const int *incx, - const double *beta, double *y, const int *incy ); - - -// y <= alpha*A*x + beta*y -extern "C" -void dspmv_( const char *uplo, const int *n, const double *alpha, - const double *AP, const double *x, const int *incx, - const double *beta, double *y, const int *incy ); - - -// x <= A*x, x <= A^T*x -extern "C" -void dtrmv_( const char *uplo, const char *trans, const char *diag, - const int *n, const double *A, const int *ldA, - double *x, const int *incx ); - - -// x <= A*x, x <= A^T*x -extern "C" -void dtbmv_( const char *uplo, const char *trans, const char *diag, - const int *n, const int *k, const double *A, const int *ldA, - double *x, const int *incx ); - - -// x <= A*x, x <= A^T*x -extern "C" -void dtpmv_( const char *uplo, const char *trans, const char *diag, - const int *n, const double *AP, double *x, const int *incx ); - - -// x <= A^{-1}*x, x <= A^{-T}*x -extern "C" -void dtrsv_( const char *uplo, const char *trans, const char *diag, - const int *n, const double *A, const int *ldA, - double *x, const int *incx ); - - -// x <= A^{-1}*x, x <= A^{-T}*x -extern "C" -void dtbsv_( const char *uplo, const char *trans, const char *diag, - const int *n, const int *k, const double *A, const int *ldA, - double *x, const int *incx ); - - -// x <= A^{-1}*x, x <= A^{-T}*x -extern "C" -void dtpsv_( const char *uplo, const char *trans, const char *diag, - const int *n, const double *AP, double *x, const int *incx ); - - -// A <= alpha*x*y^T + A, A-(m,n) -extern "C" -void dger_( const int *m, const int *n, const double *alpha, const double *x, - const int *incx, const double *y, const int *incy, double *A, - const int *ldA ); - - -// A <= alpha*x*x^T + A -extern "C" -void dsyr_( const char *uplo, const int *n, const double *alpha, - const double *x, const int *incx, double *A, const int *ldA ); - - -// A <= alpha*x*x^T + A -extern "C" -void dspr_( const char *uplo, const int *n, const double *alpha, - const double *x, const int *incx, double *AP ); - - -// A <= alpha*x*y^T + alpha*y*x^T + A -extern "C" -void dsyr2_( const char *uplo, const int *n, const double *alpha, - const double *x, const int *incx, const double *y, - const int *incy, double *A, const int *ldA ); - - -// A <= alpha*x*y^T + alpha*y*x^T + A -extern "C" -void dspr2_( const char *uplo, const int *n, const double *alpha, - const double *x, const int *incx, const double *y, - const int *incy, double *AP ); - -// ============================================================================ -#endif // BLAS2_H - - -#ifndef CBLAS2_H -#define CBLAS2_H -// ============================================================================ - - -// y <= alpha*A*x + beta*y, y <= alpha*A^T*x + beta*y, A-(m,n) -inline -void dgemv( MatrixTranspose trans, int m, int n, double alpha, - const double *A, int ldA, const double *x, int incx, - double beta, double *y, int incy ) { - const char *T[3] = { "N", "T", 0 }; - int mm = m; - int nn = n; - double aa = alpha; - double bb = beta; - int ldaa = ldA; - int incxx = incx; - int incyy = incy; - dgemv_(T[(int)trans],&mm,&nn,&aa,A,&ldaa,x,&incxx,&bb,y,&incyy,1); -} - - -// y <= alpha*A*x + beta*y, y <= alpha*A^T*x + beta*y, A-(m,n) -inline -void dgbmv( MatrixTranspose trans, int m, int n, int kl, int ku, double alpha, - const double *A, int ldA, const double *x, int incx, double beta, - double *y, int incy ) { - const char *T[3] = { "N", "T" }; - dgbmv_(T[(int)trans],&m,&n,&kl,&ku,&alpha,A,&ldA,x,&incx,&beta,y,&incy); -} - -// y <= alpha*A*x + beta*y -inline -void dsymv( MatrixTriangle uplo, int n, double alpha, const double *A, int ldA, - const double *x, int incx, double beta, double *y, int incy ) { - const char *UL[2] = { "U", "L" }; - dsymv_(UL[(int)uplo],&n,&alpha,A,&ldA,x,&incx,&beta,y,&incy); -} - - -// y <= alpha*A*x + beta*y -inline -void dsbmv( MatrixTriangle uplo, int n, int k, double alpha, double *A, - int ldA, const double *x, int incx, double beta, double *y, - int incy ) { - const char *UL[2] = { "U", "L" }; - dsbmv_(UL[(int)uplo],&n,&k,&alpha,A,&ldA,x,&incx,&beta,y,&incy); -} - - -// y <= alpha*A*x + beta*y -inline -void dspmv( MatrixTriangle uplo, int n, double alpha, const double *AP, - const double *x, int incx, double beta, double *y, int incy ) { - const char *UL[2] = { "U", "L" }; - dspmv_(UL[(int)uplo],&n,&alpha,AP,x,&incx,&beta,y,&incy); -} - - -// x <= A*x, x <= A^T*x -inline -void dtrmv( MatrixTriangle uplo, MatrixTranspose trans, - MatrixUnitTriangular diag, int n, const double *A, int ldA, - double *x, int incx ) { - const char *UL[2] = { "U", "L" }; - const char *T[3] = { "N", "T", 0 }; - const char *D[2] = { "U", "N" }; - dtrmv_(UL[(int)uplo],T[(int)trans],D[(int)diag],&n,A,&ldA,x,&incx); -} - - -// x <= A*x, x <= A^T*x -inline -void dtbmv( MatrixTriangle uplo, MatrixTranspose trans, - MatrixUnitTriangular diag, int n, int k, const double *A, int ldA, - double *x, int incx ) { - const char *UL[2] = { "U", "L" }; - const char *T[3] = { "N", "T", 0 }; - const char *D[2] = { "U", "N" }; - dtbmv_(UL[(int)uplo],T[(int)trans],D[(int)diag],&n,&k,A,&ldA,x,&incx); -} - - -// x <= A*x, x <= A^T*x -inline -void dtpmv( MatrixTriangle uplo, MatrixTranspose trans, - MatrixUnitTriangular diag, int n, const double *AP, - double *x, int incx ) { - const char *UL[2] = { "U", "L" }; - const char *T[3] = { "N", "T", 0 }; - const char *D[2] = { "U", "N" }; - dtpmv_(UL[(int)uplo],T[(int)trans],D[(int)diag],&n,AP,x,&incx); -} - - -// x <= A^{-1}*x, x <= A^{-T}*x -inline -void dtrsv( MatrixTriangle uplo, MatrixTranspose trans, - MatrixUnitTriangular diag, int n, const double *A, int ldA, - double *x, int incx ) { - const char *UL[2] = { "U", "L" }; - const char *T[3] = { "N", "T", 0 }; - const char *D[2] = { "U", "N" }; - dtrsv_(UL[(int)uplo],T[(int)trans],D[(int)diag],&n,A,&ldA,x,&incx); -} - - -// x <= A^{-1}*x, x <= A^{-T}*x -inline -void dtbsv( MatrixTriangle uplo, MatrixTranspose trans, - MatrixUnitTriangular diag, int n, int k, const double *A, int ldA, - double *x, int incx ) { - const char *UL[2] = { "U", "L" }; - const char *T[3] = { "N", "T", 0 }; - const char *D[2] = { "U", "N" }; - dtbsv_(UL[(int)uplo],T[(int)trans],D[(int)diag],&n,&k,A,&ldA,x,&incx); -} - - -// x <= A^{-1}*x, x <= A^{-T}*x -inline -void dtpsv( MatrixTriangle uplo, MatrixTranspose trans, - MatrixUnitTriangular diag, int n, const double *AP, - double *x, int incx ) { - const char *UL[2] = { "U", "L" }; - const char *T[3] = { "N", "T", 0 }; - const char *D[2] = { "U", "N" }; - int nn = n; - int incxx = incx; - dtpsv_(UL[(int)uplo],T[(int)trans],D[(int)diag],&nn,AP,x,&incxx); -} - - -// A <= alpha*x*y^T + A, A-(m,n) -inline -void dger( int m, int n, double alpha, const double *x, int incx, - const double *y, int incy, double *A, int ldA ) { - dger_(&m,&n,&alpha,x,&incx,y,&incy,A,&ldA); -} - - -// A <= alpha*x*x^T + A -inline -void dsyr( MatrixTriangle uplo, int n, double alpha, const double *x, - int incx, double *A, int ldA ) { - const char *UL[2] = { "U", "L" }; - dsyr_(UL[(int)uplo],&n,&alpha,x,&incx,A,&ldA); -} - - -// A <= alpha*x*x^T + A -inline -void dspr( MatrixTriangle uplo, int n, double alpha, const double *x, - int incx, double *AP ) { - const char *UL[2] = { "U", "L" }; - dspr_(UL[(int)uplo],&n,&alpha,x,&incx,AP); -} - - -// A <= alpha*x*y^T + alpha*y*x^T + A -inline -void dsyr2( MatrixTriangle uplo, int n, double alpha, const double *x, - int incx, const double *y, int incy, double *A, int ldA ) { - const char *UL[2] = { "U", "L" }; - dsyr2_(UL[(int)uplo],&n,&alpha,x,&incx,y,&incy,A,&ldA); -} - - -// A <= alpha*x*y^T + alpha*y*x^T + A -inline -void dspr2( MatrixTriangle uplo, int n, double alpha, const double *x, - int incx, const double *y, int incy, double *AP ) { - const char *UL[2] = { "U", "L" }; - dspr2_(UL[(int)uplo],&n,&alpha,x,&incx,y,&incy,AP); -} - - -// ============================================================================ - - -#endif // CBLAS2_H diff --git a/Cantera/ext/math/daux.f b/Cantera/ext/math/daux.f deleted file mode 100755 index f7bf84927..000000000 --- a/Cantera/ext/math/daux.f +++ /dev/null @@ -1,257 +0,0 @@ -c DOUBLE PRECISION FUNCTION D1MACH (IDUM) -c INTEGER IDUM -cC----------------------------------------------------------------------- -cC THIS ROUTINE COMPUTES THE UNIT ROUNDOFF OF THE MACHINE IN DOUBLE -cC PRECISION. THIS IS DEFINED AS THE SMALLEST POSITIVE MACHINE NUMBER -cC U SUCH THAT 1.0D0 + U .NE. 1.0D0 (IN DOUBLE PRECISION). -cC----------------------------------------------------------------------- -c DOUBLE PRECISION U, COMP -c U = 1.0D0 -c 10 U = U*0.5D0 -c COMP = 1.0D0 + U -c IF (COMP .NE. 1.0D0) GO TO 10 -c D1MACH = U*2.0D0 -c RETURN -cC----------------------- END OF FUNCTION D1MACH ------------------------ -c END - -*DECK XERRWD - SUBROUTINE XERRWD (MSG, NMES, NERR, LEVEL, NI, I1, I2, NR, R1, R2) -C***BEGIN PROLOGUE XERRWD -C***SUBSIDIARY -C***PURPOSE Write error message with values. -C***LIBRARY MATHLIB -C***CATEGORY R3C -C***TYPE DOUBLE PRECISION (XERRWV-S, XERRWD-D) -C***AUTHOR Hindmarsh, Alan C., (LLNL) -C***DESCRIPTION -C -C Subroutines XERRWD, XSETF, XSETUN, and the function routine IXSAV, -C as given here, constitute a simplified version of the SLATEC error -C handling package. -C -C All arguments are input arguments. -C -C MSG = The message (character array). -C NMES = The length of MSG (number of characters). -C NERR = The error number (not used). -C LEVEL = The error level.. -C 0 or 1 means recoverable (control returns to caller). -C 2 means fatal (run is aborted--see note below). -C NI = Number of integers (0, 1, or 2) to be printed with message. -C I1,I2 = Integers to be printed, depending on NI. -C NR = Number of reals (0, 1, or 2) to be printed with message. -C R1,R2 = Reals to be printed, depending on NR. -C -C Note.. this routine is machine-dependent and specialized for use -C in limited context, in the following ways.. -C 1. The argument MSG is assumed to be of type CHARACTER, and -C the message is printed with a format of (1X,A). -C 2. The message is assumed to take only one line. -C Multi-line messages are generated by repeated calls. -C 3. If LEVEL = 2, control passes to the statement STOP -C to abort the run. This statement may be machine-dependent. -C 4. R1 and R2 are assumed to be in double precision and are printed -C in D21.13 format. -C -C***ROUTINES CALLED IXSAV -C***REVISION HISTORY (YYMMDD) -C 920831 DATE WRITTEN -C 921118 Replaced MFLGSV/LUNSAV by IXSAV. (ACH) -C 930329 Modified prologue to SLATEC format. (FNF) -C 930407 Changed MSG from CHARACTER*1 array to variable. (FNF) -C 930922 Minor cosmetic change. (FNF) -C***END PROLOGUE XERRWD -C -C*Internal Notes: -C -C For a different default logical unit number, IXSAV (or a subsidiary -C routine that it calls) will need to be modified. -C For a different run-abort command, change the statement following -C statement 100 at the end. -C----------------------------------------------------------------------- -C Subroutines called by XERRWD.. None -C Function routine called by XERRWD.. IXSAV -C----------------------------------------------------------------------- -C**End -C -C Declare arguments. -C - DOUBLE PRECISION R1, R2 - INTEGER NMES, NERR, LEVEL, NI, I1, I2, NR - CHARACTER*(*) MSG -C -C Declare local variables. -C - INTEGER LUNIT, IXSAV, MESFLG -C -C Get logical unit number and message print flag. -C -C***FIRST EXECUTABLE STATEMENT XERRWD - LUNIT = IXSAV (1, 0, .FALSE.) - MESFLG = IXSAV (2, 0, .FALSE.) - IF (MESFLG .EQ. 0) GO TO 100 -C -C Write the message. -C - WRITE (LUNIT,10) MSG - 10 FORMAT(1X,A) - IF (NI .EQ. 1) WRITE (LUNIT, 20) I1 - 20 FORMAT(6X,'In above message, I1 =',I10) - IF (NI .EQ. 2) WRITE (LUNIT, 30) I1,I2 - 30 FORMAT(6X,'In above message, I1 =',I10,3X,'I2 =',I10) - IF (NR .EQ. 1) WRITE (LUNIT, 40) R1 - 40 FORMAT(6X,'In above message, R1 =',D21.13) - IF (NR .EQ. 2) WRITE (LUNIT, 50) R1,R2 - 50 FORMAT(6X,'In above, R1 =',D21.13,3X,'R2 =',D21.13) -C -C Abort the run if LEVEL = 2. -C - 100 IF (LEVEL .NE. 2) RETURN - STOP -C----------------------- End of Subroutine XERRWD ---------------------- - END -*DECK XSETF - SUBROUTINE XSETF (MFLAG) -C***BEGIN PROLOGUE XSETF -C***PURPOSE Reset the error print control flag. -C***LIBRARY MATHLIB -C***CATEGORY R3A -C***TYPE ALL (XSETF-A) -C***KEYWORDS ERROR CONTROL -C***AUTHOR Hindmarsh, Alan C., (LLNL) -C***DESCRIPTION -C -C XSETF sets the error print control flag to MFLAG: -C MFLAG=1 means print all messages (the default). -C MFLAG=0 means no printing. -C -C***SEE ALSO XERMSG, XERRWD, XERRWV -C***REFERENCES (NONE) -C***ROUTINES CALLED IXSAV -C***REVISION HISTORY (YYMMDD) -C 921118 DATE WRITTEN -C 930329 Added SLATEC format prologue. (FNF) -C 930407 Corrected SEE ALSO section. (FNF) -C 930922 Made user-callable, and other cosmetic changes. (FNF) -C***END PROLOGUE XSETF -C -C Subroutines called by XSETF.. None -C Function routine called by XSETF.. IXSAV -C----------------------------------------------------------------------- -C**End - INTEGER MFLAG, JUNK, IXSAV -C -C***FIRST EXECUTABLE STATEMENT XSETF - IF (MFLAG .EQ. 0 .OR. MFLAG .EQ. 1) JUNK = IXSAV (2,MFLAG,.TRUE.) - RETURN -C----------------------- End of Subroutine XSETF ----------------------- - END -*DECK XSETUN - SUBROUTINE XSETUN (LUN) -C***BEGIN PROLOGUE XSETUN -C***PURPOSE Reset the logical unit number for error messages. -C***LIBRARY MATHLIB -C***CATEGORY R3B -C***TYPE ALL (XSETUN-A) -C***KEYWORDS ERROR CONTROL -C***DESCRIPTION -C -C XSETUN sets the logical unit number for error messages to LUN. -C -C***AUTHOR Hindmarsh, Alan C., (LLNL) -C***SEE ALSO XERMSG, XERRWD, XERRWV -C***REFERENCES (NONE) -C***ROUTINES CALLED IXSAV -C***REVISION HISTORY (YYMMDD) -C 921118 DATE WRITTEN -C 930329 Added SLATEC format prologue. (FNF) -C 930407 Corrected SEE ALSO section. (FNF) -C 930922 Made user-callable, and other cosmetic changes. (FNF) -C***END PROLOGUE XSETUN -C -C Subroutines called by XSETUN.. None -C Function routine called by XSETUN.. IXSAV -C----------------------------------------------------------------------- -C**End - INTEGER LUN, JUNK, IXSAV -C -C***FIRST EXECUTABLE STATEMENT XSETUN - IF (LUN .GT. 0) JUNK = IXSAV (1,LUN,.TRUE.) - RETURN -C----------------------- End of Subroutine XSETUN ---------------------- - END -*DECK IXSAV - INTEGER FUNCTION IXSAV (IPAR, IVALUE, ISET) -C***BEGIN PROLOGUE IXSAV -C***SUBSIDIARY -C***PURPOSE Save and recall error message control parameters. -C***LIBRARY MATHLIB -C***CATEGORY R3C -C***TYPE ALL (IXSAV-A) -C***AUTHOR Hindmarsh, Alan C., (LLNL) -C***DESCRIPTION -C -C IXSAV saves and recalls one of two error message parameters: -C LUNIT, the logical unit number to which messages are printed, and -C MESFLG, the message print flag. -C This is a modification of the SLATEC library routine J4SAVE. -C -C Saved local variables.. -C LUNIT = Logical unit number for messages. -C LUNDEF = Default logical unit number, data-loaded to 6 below -C (may be machine-dependent). -C MESFLG = Print control flag.. -C 1 means print all messages (the default). -C 0 means no printing. -C -C On input.. -C IPAR = Parameter indicator (1 for LUNIT, 2 for MESFLG). -C IVALUE = The value to be set for the parameter, if ISET = .TRUE. -C ISET = Logical flag to indicate whether to read or write. -C If ISET = .TRUE., the parameter will be given -C the value IVALUE. If ISET = .FALSE., the parameter -C will be unchanged, and IVALUE is a dummy argument. -C -C On return.. -C IXSAV = The (old) value of the parameter. -C -C***SEE ALSO XERMSG, XERRWD, XERRWV -C***ROUTINES CALLED NONE -C***REVISION HISTORY (YYMMDD) -C 921118 DATE WRITTEN -C 930329 Modified prologue to SLATEC format. (FNF) -C 941025 Minor modification re default unit number. (ACH) -C***END PROLOGUE IXSAV -C -C**End - LOGICAL ISET - INTEGER IPAR, IVALUE -C----------------------------------------------------------------------- - INTEGER LUNIT, LUNDEF, MESFLG -C----------------------------------------------------------------------- -C The following Fortran-77 declaration is to cause the values of the -C listed (local) variables to be saved between calls to this routine. -C----------------------------------------------------------------------- -c SAVE LUNIT, LUNDEF, MESFLG -c dgg mod 2/2007 - lunit = -1 - lundef = 6 - mesflg = 1 -c DATA LUNIT/-1/, LUNDEF/6/, MESFLG/1/ -C -C***FIRST EXECUTABLE STATEMENT IXSAV - IF (IPAR .EQ. 1) THEN - IF (LUNIT .EQ. -1) LUNIT = LUNDEF - IXSAV = LUNIT - IF (ISET) LUNIT = IVALUE - ENDIF -C - IF (IPAR .EQ. 2) THEN - IXSAV = MESFLG - IF (ISET) MESFLG = IVALUE - ENDIF -C - RETURN -C----------------------- End of Function IXSAV ------------------------- - END diff --git a/Cantera/ext/math/ddaspk.f b/Cantera/ext/math/ddaspk.f deleted file mode 100755 index d7bd0be2f..000000000 --- a/Cantera/ext/math/ddaspk.f +++ /dev/null @@ -1,6612 +0,0 @@ - SUBROUTINE DDASPK (RES, NEQ, T, Y, YPRIME, TOUT, INFO, RTOL, ATOL, - * IDID, RWORK, LRW, IWORK, LIW, RPAR, IPAR, JAC, PSOL) -C -C***BEGIN PROLOGUE DDASPK -C***DATE WRITTEN 890101 (YYMMDD) -C***REVISION DATE 910624 (Added HMAX test at 525 in main driver.) -C***REVISION DATE 920929 (CJ in RES call, RES counter fix.) -C***REVISION DATE 921215 (Warnings on poor iteration performance) -C***REVISION DATE 921216 (NRMAX as optional input) -C***REVISION DATE 930315 (Name change: DDINI to DDINIT) -C***REVISION DATE 940822 (Replaced initial condition calculation) -C***REVISION DATE 941101 (Added linesearch in I.C. calculations) -C***REVISION DATE 941220 (Misc. corrections throughout) -C***REVISION DATE 950125 (Added DINVWT routine) -C***REVISION DATE 950714 (Misc. corrections throughout) -C***REVISION DATE 950802 (Default NRMAX = 5, based on tests.) -C***REVISION DATE 950808 (Optional error test added.) -C***REVISION DATE 950814 (Added I.C. constraints and INFO(14)) -C***REVISION DATE 950828 (Various minor corrections.) -C***REVISION DATE 951006 (Corrected WT scaling in DFNRMK.) -C***REVISION DATE 951030 (Corrected history update at end of DDASTP.) -C***REVISION DATE 960129 (Corrected RL bug in DLINSD, DLINSK.) -C***REVISION DATE 960301 (Added NONNEG to SAVE statement.) -C***REVISION DATE 000512 (Removed copyright notices.) -C***REVISION DATE 000622 (Corrected LWM value using NCPHI.) -C***REVISION DATE 000628 (Corrected I.C. stopping tests when index = 0.) -C***REVISION DATE 000628 (Fixed alpha test in I.C. calc., Krylov case.) -C***REVISION DATE 000628 (Improved restart in I.C. calc., Krylov case.) -C***REVISION DATE 000628 (Minor corrections throughout.) -C***REVISION DATE 000711 (Fixed Newton convergence test in DNSD, DNSK.) -C***REVISION DATE 000712 (Fixed tests on TN - TOUT below 420 and 440.) -C***CATEGORY NO. I1A2 -C***KEYWORDS DIFFERENTIAL/ALGEBRAIC, BACKWARD DIFFERENTIATION FORMULAS, -C IMPLICIT DIFFERENTIAL SYSTEMS, KRYLOV ITERATION -C***AUTHORS Linda R. Petzold, Peter N. Brown, Alan C. Hindmarsh, and -C Clement W. Ulrich -C Center for Computational Sciences & Engineering, L-316 -C Lawrence Livermore National Laboratory -C P.O. Box 808, -C Livermore, CA 94551 -C***PURPOSE This code solves a system of differential/algebraic -C equations of the form -C G(t,y,y') = 0 , -C using a combination of Backward Differentiation Formula -C (BDF) methods and a choice of two linear system solution -C methods: direct (dense or band) or Krylov (iterative). -C This version is in double precision. -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C *Usage: -C -C IMPLICIT DOUBLE PRECISION(A-H,O-Z) -C INTEGER NEQ, INFO(N), IDID, LRW, LIW, IWORK(LIW), IPAR(*) -C DOUBLE PRECISION T, Y(*), YPRIME(*), TOUT, RTOL(*), ATOL(*), -C RWORK(LRW), RPAR(*) -C EXTERNAL RES, JAC, PSOL -C -C CALL DDASPK (RES, NEQ, T, Y, YPRIME, TOUT, INFO, RTOL, ATOL, -C * IDID, RWORK, LRW, IWORK, LIW, RPAR, IPAR, JAC, PSOL) -C -C Quantities which may be altered by the code are: -C T, Y(*), YPRIME(*), INFO(1), RTOL, ATOL, IDID, RWORK(*), IWORK(*) -C -C -C *Arguments: -C -C RES:EXT This is the name of a subroutine which you -C provide to define the residual function G(t,y,y') -C of the differential/algebraic system. -C -C NEQ:IN This is the number of equations in the system. -C -C T:INOUT This is the current value of the independent -C variable. -C -C Y(*):INOUT This array contains the solution components at T. -C -C YPRIME(*):INOUT This array contains the derivatives of the solution -C components at T. -C -C TOUT:IN This is a point at which a solution is desired. -C -C INFO(N):IN This is an integer array used to communicate details -C of how the solution is to be carried out, such as -C tolerance type, matrix structure, step size and -C order limits, and choice of nonlinear system method. -C N must be at least 20. -C -C RTOL,ATOL:INOUT These quantities represent absolute and relative -C error tolerances (on local error) which you provide -C to indicate how accurately you wish the solution to -C be computed. You may choose them to be both scalars -C or else both arrays of length NEQ. -C -C IDID:OUT This integer scalar is an indicator reporting what -C the code did. You must monitor this variable to -C decide what action to take next. -C -C RWORK:WORK A real work array of length LRW which provides the -C code with needed storage space. -C -C LRW:IN The length of RWORK. -C -C IWORK:WORK An integer work array of length LIW which provides -C the code with needed storage space. -C -C LIW:IN The length of IWORK. -C -C RPAR,IPAR:IN These are real and integer parameter arrays which -C you can use for communication between your calling -C program and the RES, JAC, and PSOL subroutines. -C -C JAC:EXT This is the name of a subroutine which you may -C provide (optionally) for calculating Jacobian -C (partial derivative) data involved in solving linear -C systems within DDASPK. -C -C PSOL:EXT This is the name of a subroutine which you must -C provide for solving linear systems if you selected -C a Krylov method. The purpose of PSOL is to solve -C linear systems involving a left preconditioner P. -C -C *Overview -C -C The DDASPK solver uses the backward differentiation formulas of -C orders one through five to solve a system of the form G(t,y,y') = 0 -C for y = Y and y' = YPRIME. Values for Y and YPRIME at the initial -C time must be given as input. These values should be consistent, -C that is, if T, Y, YPRIME are the given initial values, they should -C satisfy G(T,Y,YPRIME) = 0. However, if consistent values are not -C known, in many cases you can have DDASPK solve for them -- see INFO(11). -C (This and other options are described in more detail below.) -C -C Normally, DDASPK solves the system from T to TOUT. It is easy to -C continue the solution to get results at additional TOUT. This is -C the interval mode of operation. Intermediate results can also be -C obtained easily by specifying INFO(3). -C -C On each step taken by DDASPK, a sequence of nonlinear algebraic -C systems arises. These are solved by one of two types of -C methods: -C * a Newton iteration with a direct method for the linear -C systems involved (INFO(12) = 0), or -C * a Newton iteration with a preconditioned Krylov iterative -C method for the linear systems involved (INFO(12) = 1). -C -C The direct method choices are dense and band matrix solvers, -C with either a user-supplied or an internal difference quotient -C Jacobian matrix, as specified by INFO(5) and INFO(6). -C In the band case, INFO(6) = 1, you must supply half-bandwidths -C in IWORK(1) and IWORK(2). -C -C The Krylov method is the Generalized Minimum Residual (GMRES) -C method, in either complete or incomplete form, and with -C scaling and preconditioning. The method is implemented -C in an algorithm called SPIGMR. Certain options in the Krylov -C method case are specified by INFO(13) and INFO(15). -C -C If the Krylov method is chosen, you may supply a pair of routines, -C JAC and PSOL, to apply preconditioning to the linear system. -C If the system is A*x = b, the matrix is A = dG/dY + CJ*dG/dYPRIME -C (of order NEQ). This system can then be preconditioned in the form -C (P-inverse)*A*x = (P-inverse)*b, with left preconditioner P. -C (DDASPK does not allow right preconditioning.) -C Then the Krylov method is applied to this altered, but equivalent, -C linear system, hopefully with much better performance than without -C preconditioning. (In addition, a diagonal scaling matrix based on -C the tolerances is also introduced into the altered system.) -C -C The JAC routine evaluates any data needed for solving systems -C with coefficient matrix P, and PSOL carries out that solution. -C In any case, in order to improve convergence, you should try to -C make P approximate the matrix A as much as possible, while keeping -C the system P*x = b reasonably easy and inexpensive to solve for x, -C given a vector b. -C -C -C *Description -C -C------INPUT - WHAT TO DO ON THE FIRST CALL TO DDASPK------------------- -C -C -C The first call of the code is defined to be the start of each new -C problem. Read through the descriptions of all the following items, -C provide sufficient storage space for designated arrays, set -C appropriate variables for the initialization of the problem, and -C give information about how you want the problem to be solved. -C -C -C RES -- Provide a subroutine of the form -C -C SUBROUTINE RES (T, Y, YPRIME, CJ, DELTA, IRES, RPAR, IPAR) -C -C to define the system of differential/algebraic -C equations which is to be solved. For the given values -C of T, Y and YPRIME, the subroutine should return -C the residual of the differential/algebraic system -C DELTA = G(T,Y,YPRIME) -C DELTA is a vector of length NEQ which is output from RES. -C -C Subroutine RES must not alter T, Y, YPRIME, or CJ. -C You must declare the name RES in an EXTERNAL -C statement in your program that calls DDASPK. -C You must dimension Y, YPRIME, and DELTA in RES. -C -C The input argument CJ can be ignored, or used to rescale -C constraint equations in the system (see Ref. 2, p. 145). -C Note: In this respect, DDASPK is not downward-compatible -C with DDASSL, which does not have the RES argument CJ. -C -C IRES is an integer flag which is always equal to zero -C on input. Subroutine RES should alter IRES only if it -C encounters an illegal value of Y or a stop condition. -C Set IRES = -1 if an input value is illegal, and DDASPK -C will try to solve the problem without getting IRES = -1. -C If IRES = -2, DDASPK will return control to the calling -C program with IDID = -11. -C -C RPAR and IPAR are real and integer parameter arrays which -C you can use for communication between your calling program -C and subroutine RES. They are not altered by DDASPK. If you -C do not need RPAR or IPAR, ignore these parameters by treat- -C ing them as dummy arguments. If you do choose to use them, -C dimension them in your calling program and in RES as arrays -C of appropriate length. -C -C NEQ -- Set it to the number of equations in the system (NEQ .GE. 1). -C -C T -- Set it to the initial point of the integration. (T must be -C a variable.) -C -C Y(*) -- Set this array to the initial values of the NEQ solution -C components at the initial point. You must dimension Y of -C length at least NEQ in your calling program. -C -C YPRIME(*) -- Set this array to the initial values of the NEQ first -C derivatives of the solution components at the initial -C point. You must dimension YPRIME at least NEQ in your -C calling program. -C -C TOUT - Set it to the first point at which a solution is desired. -C You cannot take TOUT = T. Integration either forward in T -C (TOUT .GT. T) or backward in T (TOUT .LT. T) is permitted. -C -C The code advances the solution from T to TOUT using step -C sizes which are automatically selected so as to achieve the -C desired accuracy. If you wish, the code will return with the -C solution and its derivative at intermediate steps (the -C intermediate-output mode) so that you can monitor them, -C but you still must provide TOUT in accord with the basic -C aim of the code. -C -C The first step taken by the code is a critical one because -C it must reflect how fast the solution changes near the -C initial point. The code automatically selects an initial -C step size which is practically always suitable for the -C problem. By using the fact that the code will not step past -C TOUT in the first step, you could, if necessary, restrict the -C length of the initial step. -C -C For some problems it may not be permissible to integrate -C past a point TSTOP, because a discontinuity occurs there -C or the solution or its derivative is not defined beyond -C TSTOP. When you have declared a TSTOP point (see INFO(4) -C and RWORK(1)), you have told the code not to integrate past -C TSTOP. In this case any tout beyond TSTOP is invalid input. -C -C INFO(*) - Use the INFO array to give the code more details about -C how you want your problem solved. This array should be -C dimensioned of length 20, though DDASPK uses only the -C first 15 entries. You must respond to all of the following -C items, which are arranged as questions. The simplest use -C of DDASPK corresponds to setting all entries of INFO to 0. -C -C INFO(1) - This parameter enables the code to initialize itself. -C You must set it to indicate the start of every new -C problem. -C -C **** Is this the first call for this problem ... -C yes - set INFO(1) = 0 -C no - not applicable here. -C See below for continuation calls. **** -C -C INFO(2) - How much accuracy you want of your solution -C is specified by the error tolerances RTOL and ATOL. -C The simplest use is to take them both to be scalars. -C To obtain more flexibility, they can both be arrays. -C The code must be told your choice. -C -C **** Are both error tolerances RTOL, ATOL scalars ... -C yes - set INFO(2) = 0 -C and input scalars for both RTOL and ATOL -C no - set INFO(2) = 1 -C and input arrays for both RTOL and ATOL **** -C -C INFO(3) - The code integrates from T in the direction of TOUT -C by steps. If you wish, it will return the computed -C solution and derivative at the next intermediate step -C (the intermediate-output mode) or TOUT, whichever comes -C first. This is a good way to proceed if you want to -C see the behavior of the solution. If you must have -C solutions at a great many specific TOUT points, this -C code will compute them efficiently. -C -C **** Do you want the solution only at -C TOUT (and not at the next intermediate step) ... -C yes - set INFO(3) = 0 -C no - set INFO(3) = 1 **** -C -C INFO(4) - To handle solutions at a great many specific -C values TOUT efficiently, this code may integrate past -C TOUT and interpolate to obtain the result at TOUT. -C Sometimes it is not possible to integrate beyond some -C point TSTOP because the equation changes there or it is -C not defined past TSTOP. Then you must tell the code -C this stop condition. -C -C **** Can the integration be carried out without any -C restrictions on the independent variable T ... -C yes - set INFO(4) = 0 -C no - set INFO(4) = 1 -C and define the stopping point TSTOP by -C setting RWORK(1) = TSTOP **** -C -C INFO(5) - used only when INFO(12) = 0 (direct methods). -C To solve differential/algebraic systems you may wish -C to use a matrix of partial derivatives of the -C system of differential equations. If you do not -C provide a subroutine to evaluate it analytically (see -C description of the item JAC in the call list), it will -C be approximated by numerical differencing in this code. -C Although it is less trouble for you to have the code -C compute partial derivatives by numerical differencing, -C the solution will be more reliable if you provide the -C derivatives via JAC. Usually numerical differencing is -C more costly than evaluating derivatives in JAC, but -C sometimes it is not - this depends on your problem. -C -C **** Do you want the code to evaluate the partial deriv- -C atives automatically by numerical differences ... -C yes - set INFO(5) = 0 -C no - set INFO(5) = 1 -C and provide subroutine JAC for evaluating the -C matrix of partial derivatives **** -C -C INFO(6) - used only when INFO(12) = 0 (direct methods). -C DDASPK will perform much better if the matrix of -C partial derivatives, dG/dY + CJ*dG/dYPRIME (here CJ is -C a scalar determined by DDASPK), is banded and the code -C is told this. In this case, the storage needed will be -C greatly reduced, numerical differencing will be performed -C much cheaper, and a number of important algorithms will -C execute much faster. The differential equation is said -C to have half-bandwidths ML (lower) and MU (upper) if -C equation i involves only unknowns Y(j) with -C i-ML .le. j .le. i+MU . -C For all i=1,2,...,NEQ. Thus, ML and MU are the widths -C of the lower and upper parts of the band, respectively, -C with the main diagonal being excluded. If you do not -C indicate that the equation has a banded matrix of partial -C derivatives the code works with a full matrix of NEQ**2 -C elements (stored in the conventional way). Computations -C with banded matrices cost less time and storage than with -C full matrices if 2*ML+MU .lt. NEQ. If you tell the -C code that the matrix of partial derivatives has a banded -C structure and you want to provide subroutine JAC to -C compute the partial derivatives, then you must be careful -C to store the elements of the matrix in the special form -C indicated in the description of JAC. -C -C **** Do you want to solve the problem using a full (dense) -C matrix (and not a special banded structure) ... -C yes - set INFO(6) = 0 -C no - set INFO(6) = 1 -C and provide the lower (ML) and upper (MU) -C bandwidths by setting -C IWORK(1)=ML -C IWORK(2)=MU **** -C -C INFO(7) - You can specify a maximum (absolute value of) -C stepsize, so that the code will avoid passing over very -C large regions. -C -C **** Do you want the code to decide on its own the maximum -C stepsize ... -C yes - set INFO(7) = 0 -C no - set INFO(7) = 1 -C and define HMAX by setting -C RWORK(2) = HMAX **** -C -C INFO(8) - Differential/algebraic problems may occasionally -C suffer from severe scaling difficulties on the first -C step. If you know a great deal about the scaling of -C your problem, you can help to alleviate this problem -C by specifying an initial stepsize H0. -C -C **** Do you want the code to define its own initial -C stepsize ... -C yes - set INFO(8) = 0 -C no - set INFO(8) = 1 -C and define H0 by setting -C RWORK(3) = H0 **** -C -C INFO(9) - If storage is a severe problem, you can save some -C storage by restricting the maximum method order MAXORD. -C The default value is 5. For each order decrease below 5, -C the code requires NEQ fewer locations, but it is likely -C to be slower. In any case, you must have -C 1 .le. MAXORD .le. 5. -C **** Do you want the maximum order to default to 5 ... -C yes - set INFO(9) = 0 -C no - set INFO(9) = 1 -C and define MAXORD by setting -C IWORK(3) = MAXORD **** -C -C INFO(10) - If you know that certain components of the -C solutions to your equations are always nonnegative -C (or nonpositive), it may help to set this -C parameter. There are three options that are -C available: -C 1. To have constraint checking only in the initial -C condition calculation. -C 2. To enforce nonnegativity in Y during the integration. -C 3. To enforce both options 1 and 2. -C -C When selecting option 2 or 3, it is probably best to try the -C code without using this option first, and only use -C this option if that does not work very well. -C -C **** Do you want the code to solve the problem without -C invoking any special inequality constraints ... -C yes - set INFO(10) = 0 -C no - set INFO(10) = 1 to have option 1 enforced -C no - set INFO(10) = 2 to have option 2 enforced -C no - set INFO(10) = 3 to have option 3 enforced **** -C -C If you have specified INFO(10) = 1 or 3, then you -C will also need to identify how each component of Y -C in the initial condition calculation is constrained. -C You must set: -C IWORK(40+I) = +1 if Y(I) must be .GE. 0, -C IWORK(40+I) = +2 if Y(I) must be .GT. 0, -C IWORK(40+I) = -1 if Y(I) must be .LE. 0, while -C IWORK(40+I) = -2 if Y(I) must be .LT. 0, while -C IWORK(40+I) = 0 if Y(I) is not constrained. -C -C INFO(11) - DDASPK normally requires the initial T, Y, and -C YPRIME to be consistent. That is, you must have -C G(T,Y,YPRIME) = 0 at the initial T. If you do not know -C the initial conditions precisely, in some cases -C DDASPK may be able to compute it. -C -C Denoting the differential variables in Y by Y_d -C and the algebraic variables by Y_a, DDASPK can solve -C one of two initialization problems: -C 1. Given Y_d, calculate Y_a and Y'_d, or -C 2. Given Y', calculate Y. -C In either case, initial values for the given -C components are input, and initial guesses for -C the unknown components must also be provided as input. -C -C **** Are the initial T, Y, YPRIME consistent ... -C -C yes - set INFO(11) = 0 -C no - set INFO(11) = 1 to calculate option 1 above, -C or set INFO(11) = 2 to calculate option 2 **** -C -C If you have specified INFO(11) = 1, then you -C will also need to identify which are the -C differential and which are the algebraic -C components (algebraic components are components -C whose derivatives do not appear explicitly -C in the function G(T,Y,YPRIME)). You must set: -C IWORK(LID+I) = +1 if Y(I) is a differential variable -C IWORK(LID+I) = -1 if Y(I) is an algebraic variable, -C where LID = 40 if INFO(10) = 0 or 2 and LID = 40+NEQ -C if INFO(10) = 1 or 3. -C -C INFO(12) - Except for the addition of the RES argument CJ, -C DDASPK by default is downward-compatible with DDASSL, -C which uses only direct (dense or band) methods to solve -C the linear systems involved. You must set INFO(12) to -C indicate whether you want the direct methods or the -C Krylov iterative method. -C **** Do you want DDASPK to use standard direct methods -C (dense or band) or the Krylov (iterative) method ... -C direct methods - set INFO(12) = 0. -C Krylov method - set INFO(12) = 1, -C and check the settings of INFO(13) and INFO(15). -C -C INFO(13) - used when INFO(12) = 1 (Krylov methods). -C DDASPK uses scalars MAXL, KMP, NRMAX, and EPLI for the -C iterative solution of linear systems. INFO(13) allows -C you to override the default values of these parameters. -C These parameters and their defaults are as follows: -C MAXL = maximum number of iterations in the SPIGMR -C algorithm (MAXL .le. NEQ). The default is -C MAXL = MIN(5,NEQ). -C KMP = number of vectors on which orthogonalization is -C done in the SPIGMR algorithm. The default is -C KMP = MAXL, which corresponds to complete GMRES -C iteration, as opposed to the incomplete form. -C NRMAX = maximum number of restarts of the SPIGMR -C algorithm per nonlinear iteration. The default is -C NRMAX = 5. -C EPLI = convergence test constant in SPIGMR algorithm. -C The default is EPLI = 0.05. -C Note that the length of RWORK depends on both MAXL -C and KMP. See the definition of LRW below. -C **** Are MAXL, KMP, and EPLI to be given their -C default values ... -C yes - set INFO(13) = 0 -C no - set INFO(13) = 1, -C and set all of the following: -C IWORK(24) = MAXL (1 .le. MAXL .le. NEQ) -C IWORK(25) = KMP (1 .le. KMP .le. MAXL) -C IWORK(26) = NRMAX (NRMAX .ge. 0) -C RWORK(10) = EPLI (0 .lt. EPLI .lt. 1.0) **** -C -C INFO(14) - used with INFO(11) > 0 (initial condition -C calculation is requested). In this case, you may -C request control to be returned to the calling program -C immediately after the initial condition calculation, -C before proceeding to the integration of the system -C (e.g. to examine the computed Y and YPRIME). -C If this is done, and if the initialization succeeded -C (IDID = 4), you should reset INFO(11) to 0 for the -C next call, to prevent the solver from repeating the -C initialization (and to avoid an infinite loop). -C **** Do you want to proceed to the integration after -C the initial condition calculation is done ... -C yes - set INFO(14) = 0 -C no - set INFO(14) = 1 **** -C -C INFO(15) - used when INFO(12) = 1 (Krylov methods). -C When using preconditioning in the Krylov method, -C you must supply a subroutine, PSOL, which solves the -C associated linear systems using P. -C The usage of DDASPK is simpler if PSOL can carry out -C the solution without any prior calculation of data. -C However, if some partial derivative data is to be -C calculated in advance and used repeatedly in PSOL, -C then you must supply a JAC routine to do this, -C and set INFO(15) to indicate that JAC is to be called -C for this purpose. For example, P might be an -C approximation to a part of the matrix A which can be -C calculated and LU-factored for repeated solutions of -C the preconditioner system. The arrays WP and IWP -C (described under JAC and PSOL) can be used to -C communicate data between JAC and PSOL. -C **** Does PSOL operate with no prior preparation ... -C yes - set INFO(15) = 0 (no JAC routine) -C no - set INFO(15) = 1 -C and supply a JAC routine to evaluate and -C preprocess any required Jacobian data. **** -C -C INFO(16) - option to exclude algebraic variables from -C the error test. -C **** Do you wish to control errors locally on -C all the variables... -C yes - set INFO(16) = 0 -C no - set INFO(16) = 1 -C If you have specified INFO(16) = 1, then you -C will also need to identify which are the -C differential and which are the algebraic -C components (algebraic components are components -C whose derivatives do not appear explicitly -C in the function G(T,Y,YPRIME)). You must set: -C IWORK(LID+I) = +1 if Y(I) is a differential -C variable, and -C IWORK(LID+I) = -1 if Y(I) is an algebraic -C variable, -C where LID = 40 if INFO(10) = 0 or 2 and -C LID = 40 + NEQ if INFO(10) = 1 or 3. -C -C INFO(17) - used when INFO(11) > 0 (DDASPK is to do an -C initial condition calculation). -C DDASPK uses several heuristic control quantities in the -C initial condition calculation. They have default values, -C but can also be set by the user using INFO(17). -C These parameters and their defaults are as follows: -C MXNIT = maximum number of Newton iterations -C per Jacobian or preconditioner evaluation. -C The default is: -C MXNIT = 5 in the direct case (INFO(12) = 0), and -C MXNIT = 15 in the Krylov case (INFO(12) = 1). -C MXNJ = maximum number of Jacobian or preconditioner -C evaluations. The default is: -C MXNJ = 6 in the direct case (INFO(12) = 0), and -C MXNJ = 2 in the Krylov case (INFO(12) = 1). -C MXNH = maximum number of values of the artificial -C stepsize parameter H to be tried if INFO(11) = 1. -C The default is MXNH = 5. -C NOTE: the maximum number of Newton iterations -C allowed in all is MXNIT*MXNJ*MXNH if INFO(11) = 1, -C and MXNIT*MXNJ if INFO(11) = 2. -C LSOFF = flag to turn off the linesearch algorithm -C (LSOFF = 0 means linesearch is on, LSOFF = 1 means -C it is turned off). The default is LSOFF = 0. -C STPTOL = minimum scaled step in linesearch algorithm. -C The default is STPTOL = (unit roundoff)**(2/3). -C EPINIT = swing factor in the Newton iteration convergence -C test. The test is applied to the residual vector, -C premultiplied by the approximate Jacobian (in the -C direct case) or the preconditioner (in the Krylov -C case). For convergence, the weighted RMS norm of -C this vector (scaled by the error weights) must be -C less than EPINIT*EPCON, where EPCON = .33 is the -C analogous test constant used in the time steps. -C The default is EPINIT = .01. -C **** Are the initial condition heuristic controls to be -C given their default values... -C yes - set INFO(17) = 0 -C no - set INFO(17) = 1, -C and set all of the following: -C IWORK(32) = MXNIT (.GT. 0) -C IWORK(33) = MXNJ (.GT. 0) -C IWORK(34) = MXNH (.GT. 0) -C IWORK(35) = LSOFF ( = 0 or 1) -C RWORK(14) = STPTOL (.GT. 0.0) -C RWORK(15) = EPINIT (.GT. 0.0) **** -C -C INFO(18) - option to get extra printing in initial condition -C calculation. -C **** Do you wish to have extra printing... -C no - set INFO(18) = 0 -C yes - set INFO(18) = 1 for minimal printing, or -C set INFO(18) = 2 for full printing. -C If you have specified INFO(18) .ge. 1, data -C will be printed with the error handler routines. -C To print to a non-default unit number L, include -C the line CALL XSETUN(L) in your program. **** -C -C RTOL, ATOL -- You must assign relative (RTOL) and absolute (ATOL) -C error tolerances to tell the code how accurately you -C want the solution to be computed. They must be defined -C as variables because the code may change them. -C you have two choices -- -C Both RTOL and ATOL are scalars (INFO(2) = 0), or -C both RTOL and ATOL are vectors (INFO(2) = 1). -C In either case all components must be non-negative. -C -C The tolerances are used by the code in a local error -C test at each step which requires roughly that -C abs(local error in Y(i)) .le. EWT(i) , -C where EWT(i) = RTOL*abs(Y(i)) + ATOL is an error weight -C quantity, for each vector component. -C (More specifically, a root-mean-square norm is used to -C measure the size of vectors, and the error test uses the -C magnitude of the solution at the beginning of the step.) -C -C The true (global) error is the difference between the -C true solution of the initial value problem and the -C computed approximation. Practically all present day -C codes, including this one, control the local error at -C each step and do not even attempt to control the global -C error directly. -C -C Usually, but not always, the true accuracy of -C the computed Y is comparable to the error tolerances. -C This code will usually, but not always, deliver a more -C accurate solution if you reduce the tolerances and -C integrate again. By comparing two such solutions you -C can get a fairly reliable idea of the true error in the -C solution at the larger tolerances. -C -C Setting ATOL = 0. results in a pure relative error test -C on that component. Setting RTOL = 0. results in a pure -C absolute error test on that component. A mixed test -C with non-zero RTOL and ATOL corresponds roughly to a -C relative error test when the solution component is -C much bigger than ATOL and to an absolute error test -C when the solution component is smaller than the -C threshold ATOL. -C -C The code will not attempt to compute a solution at an -C accuracy unreasonable for the machine being used. It -C will advise you if you ask for too much accuracy and -C inform you as to the maximum accuracy it believes -C possible. -C -C RWORK(*) -- a real work array, which should be dimensioned in your -C calling program with a length equal to the value of -C LRW (or greater). -C -C LRW -- Set it to the declared length of the RWORK array. The -C minimum length depends on the options you have selected, -C given by a base value plus additional storage as described -C below. -C -C If INFO(12) = 0 (standard direct method), the base value is -C base = 50 + max(MAXORD+4,7)*NEQ. -C The default value is MAXORD = 5 (see INFO(9)). With the -C default MAXORD, base = 50 + 9*NEQ. -C Additional storage must be added to the base value for -C any or all of the following options: -C if INFO(6) = 0 (dense matrix), add NEQ**2 -C if INFO(6) = 1 (banded matrix), then -C if INFO(5) = 0, add (2*ML+MU+1)*NEQ + 2*(NEQ/(ML+MU+1)+1), -C if INFO(5) = 1, add (2*ML+MU+1)*NEQ, -C if INFO(16) = 1, add NEQ. -C -C If INFO(12) = 1 (Krylov method), the base value is -C base = 50 + (MAXORD+5)*NEQ + (MAXL+3+MIN0(1,MAXL-KMP))*NEQ + -C + (MAXL+3)*MAXL + 1 + LENWP. -C See PSOL for description of LENWP. The default values are: -C MAXORD = 5 (see INFO(9)), MAXL = min(5,NEQ) and KMP = MAXL -C (see INFO(13)). -C With the default values for MAXORD, MAXL and KMP, -C base = 91 + 18*NEQ + LENWP. -C Additional storage must be added to the base value for -C any or all of the following options: -C if INFO(16) = 1, add NEQ. -C -C -C IWORK(*) -- an integer work array, which should be dimensioned in -C your calling program with a length equal to the value -C of LIW (or greater). -C -C LIW -- Set it to the declared length of the IWORK array. The -C minimum length depends on the options you have selected, -C given by a base value plus additional storage as described -C below. -C -C If INFO(12) = 0 (standard direct method), the base value is -C base = 40 + NEQ. -C IF INFO(10) = 1 or 3, add NEQ to the base value. -C If INFO(11) = 1 or INFO(16) =1, add NEQ to the base value. -C -C If INFO(12) = 1 (Krylov method), the base value is -C base = 40 + LENIWP. -C See PSOL for description of LENIWP. -C IF INFO(10) = 1 or 3, add NEQ to the base value. -C If INFO(11) = 1 or INFO(16) = 1, add NEQ to the base value. -C -C -C RPAR, IPAR -- These are arrays of double precision and integer type, -C respectively, which are available for you to use -C for communication between your program that calls -C DDASPK and the RES subroutine (and the JAC and PSOL -C subroutines). They are not altered by DDASPK. -C If you do not need RPAR or IPAR, ignore these -C parameters by treating them as dummy arguments. -C If you do choose to use them, dimension them in -C your calling program and in RES (and in JAC and PSOL) -C as arrays of appropriate length. -C -C JAC -- This is the name of a routine that you may supply -C (optionally) that relates to the Jacobian matrix of the -C nonlinear system that the code must solve at each T step. -C The role of JAC (and its call sequence) depends on whether -C a direct (INFO(12) = 0) or Krylov (INFO(12) = 1) method -C is selected. -C -C **** INFO(12) = 0 (direct methods): -C If you are letting the code generate partial derivatives -C numerically (INFO(5) = 0), then JAC can be absent -C (or perhaps a dummy routine to satisfy the loader). -C Otherwise you must supply a JAC routine to compute -C the matrix A = dG/dY + CJ*dG/dYPRIME. It must have -C the form -C -C SUBROUTINE JAC (T, Y, YPRIME, PD, CJ, RPAR, IPAR) -C -C The JAC routine must dimension Y, YPRIME, and PD (and RPAR -C and IPAR if used). CJ is a scalar which is input to JAC. -C For the given values of T, Y, and YPRIME, the JAC routine -C must evaluate the nonzero elements of the matrix A, and -C store these values in the array PD. The elements of PD are -C set to zero before each call to JAC, so that only nonzero -C elements need to be defined. -C The way you store the elements into the PD array depends -C on the structure of the matrix indicated by INFO(6). -C *** INFO(6) = 0 (full or dense matrix) *** -C Give PD a first dimension of NEQ. When you evaluate the -C nonzero partial derivatives of equation i (i.e. of G(i)) -C with respect to component j (of Y and YPRIME), you must -C store the element in PD according to -C PD(i,j) = dG(i)/dY(j) + CJ*dG(i)/dYPRIME(j). -C *** INFO(6) = 1 (banded matrix with half-bandwidths ML, MU -C as described under INFO(6)) *** -C Give PD a first dimension of 2*ML+MU+1. When you -C evaluate the nonzero partial derivatives of equation i -C (i.e. of G(i)) with respect to component j (of Y and -C YPRIME), you must store the element in PD according to -C IROW = i - j + ML + MU + 1 -C PD(IROW,j) = dG(i)/dY(j) + CJ*dG(i)/dYPRIME(j). -C -C **** INFO(12) = 1 (Krylov method): -C If you are not calculating Jacobian data in advance for use -C in PSOL (INFO(15) = 0), JAC can be absent (or perhaps a -C dummy routine to satisfy the loader). Otherwise, you may -C supply a JAC routine to compute and preprocess any parts of -C of the Jacobian matrix A = dG/dY + CJ*dG/dYPRIME that are -C involved in the preconditioner matrix P. -C It is to have the form -C -C SUBROUTINE JAC (RES, IRES, NEQ, T, Y, YPRIME, REWT, SAVR, -C WK, H, CJ, WP, IWP, IER, RPAR, IPAR) -C -C The JAC routine must dimension Y, YPRIME, REWT, SAVR, WK, -C and (if used) WP, IWP, RPAR, and IPAR. -C The Y, YPRIME, and SAVR arrays contain the current values -C of Y, YPRIME, and the residual G, respectively. -C The array WK is work space of length NEQ. -C H is the step size. CJ is a scalar, input to JAC, that is -C normally proportional to 1/H. REWT is an array of -C reciprocal error weights, 1/EWT(i), where EWT(i) is -C RTOL*abs(Y(i)) + ATOL (unless you supplied routine DDAWTS -C instead), for use in JAC if needed. For example, if JAC -C computes difference quotient approximations to partial -C derivatives, the REWT array may be useful in setting the -C increments used. The JAC routine should do any -C factorization operations called for, in preparation for -C solving linear systems in PSOL. The matrix P should -C be an approximation to the Jacobian, -C A = dG/dY + CJ*dG/dYPRIME. -C -C WP and IWP are real and integer work arrays which you may -C use for communication between your JAC routine and your -C PSOL routine. These may be used to store elements of the -C preconditioner P, or related matrix data (such as factored -C forms). They are not altered by DDASPK. -C If you do not need WP or IWP, ignore these parameters by -C treating them as dummy arguments. If you do use them, -C dimension them appropriately in your JAC and PSOL routines. -C See the PSOL description for instructions on setting -C the lengths of WP and IWP. -C -C On return, JAC should set the error flag IER as follows.. -C IER = 0 if JAC was successful, -C IER .ne. 0 if JAC was unsuccessful (e.g. if Y or YPRIME -C was illegal, or a singular matrix is found). -C (If IER .ne. 0, a smaller stepsize will be tried.) -C IER = 0 on entry to JAC, so need be reset only on a failure. -C If RES is used within JAC, then a nonzero value of IRES will -C override any nonzero value of IER (see the RES description). -C -C Regardless of the method type, subroutine JAC must not -C alter T, Y(*), YPRIME(*), H, CJ, or REWT(*). -C You must declare the name JAC in an EXTERNAL statement in -C your program that calls DDASPK. -C -C PSOL -- This is the name of a routine you must supply if you have -C selected a Krylov method (INFO(12) = 1) with preconditioning. -C In the direct case (INFO(12) = 0), PSOL can be absent -C (a dummy routine may have to be supplied to satisfy the -C loader). Otherwise, you must provide a PSOL routine to -C solve linear systems arising from preconditioning. -C When supplied with INFO(12) = 1, the PSOL routine is to -C have the form -C -C SUBROUTINE PSOL (NEQ, T, Y, YPRIME, SAVR, WK, CJ, WGHT, -C WP, IWP, B, EPLIN, IER, RPAR, IPAR) -C -C The PSOL routine must solve linear systems of the form -C P*x = b where P is the left preconditioner matrix. -C -C The right-hand side vector b is in the B array on input, and -C PSOL must return the solution vector x in B. -C The Y, YPRIME, and SAVR arrays contain the current values -C of Y, YPRIME, and the residual G, respectively. -C -C Work space required by JAC and/or PSOL, and space for data to -C be communicated from JAC to PSOL is made available in the form -C of arrays WP and IWP, which are parts of the RWORK and IWORK -C arrays, respectively. The lengths of these real and integer -C work spaces WP and IWP must be supplied in LENWP and LENIWP, -C respectively, as follows.. -C IWORK(27) = LENWP = length of real work space WP -C IWORK(28) = LENIWP = length of integer work space IWP. -C -C WK is a work array of length NEQ for use by PSOL. -C CJ is a scalar, input to PSOL, that is normally proportional -C to 1/H (H = stepsize). If the old value of CJ -C (at the time of the last JAC call) is needed, it must have -C been saved by JAC in WP. -C -C WGHT is an array of weights, to be used if PSOL uses an -C iterative method and performs a convergence test. (In terms -C of the argument REWT to JAC, WGHT is REWT/sqrt(NEQ).) -C If PSOL uses an iterative method, it should use EPLIN -C (a heuristic parameter) as the bound on the weighted norm of -C the residual for the computed solution. Specifically, the -C residual vector R should satisfy -C SQRT (SUM ( (R(i)*WGHT(i))**2 ) ) .le. EPLIN -C -C PSOL must not alter NEQ, T, Y, YPRIME, SAVR, CJ, WGHT, EPLIN. -C -C On return, PSOL should set the error flag IER as follows.. -C IER = 0 if PSOL was successful, -C IER .lt. 0 if an unrecoverable error occurred, meaning -C control will be passed to the calling routine, -C IER .gt. 0 if a recoverable error occurred, meaning that -C the step will be retried with the same step size -C but with a call to JAC to update necessary data, -C unless the Jacobian data is current, in which case -C the step will be retried with a smaller step size. -C IER = 0 on entry to PSOL so need be reset only on a failure. -C -C You must declare the name PSOL in an EXTERNAL statement in -C your program that calls DDASPK. -C -C -C OPTIONALLY REPLACEABLE SUBROUTINE: -C -C DDASPK uses a weighted root-mean-square norm to measure the -C size of various error vectors. The weights used in this norm -C are set in the following subroutine: -C -C SUBROUTINE DDAWTS (NEQ, IWT, RTOL, ATOL, Y, EWT, RPAR, IPAR) -C DIMENSION RTOL(*), ATOL(*), Y(*), EWT(*), RPAR(*), IPAR(*) -C -C A DDAWTS routine has been included with DDASPK which sets the -C weights according to -C EWT(I) = RTOL*ABS(Y(I)) + ATOL -C in the case of scalar tolerances (IWT = 0) or -C EWT(I) = RTOL(I)*ABS(Y(I)) + ATOL(I) -C in the case of array tolerances (IWT = 1). (IWT is INFO(2).) -C In some special cases, it may be appropriate for you to define -C your own error weights by writing a subroutine DDAWTS to be -C called instead of the version supplied. However, this should -C be attempted only after careful thought and consideration. -C If you supply this routine, you may use the tolerances and Y -C as appropriate, but do not overwrite these variables. You -C may also use RPAR and IPAR to communicate data as appropriate. -C ***Note: Aside from the values of the weights, the choice of -C norm used in DDASPK (weighted root-mean-square) is not subject -C to replacement by the user. In this respect, DDASPK is not -C downward-compatible with the original DDASSL solver (in which -C the norm routine was optionally user-replaceable). -C -C -C------OUTPUT - AFTER ANY RETURN FROM DDASPK---------------------------- -C -C The principal aim of the code is to return a computed solution at -C T = TOUT, although it is also possible to obtain intermediate -C results along the way. To find out whether the code achieved its -C goal or if the integration process was interrupted before the task -C was completed, you must check the IDID parameter. -C -C -C T -- The output value of T is the point to which the solution -C was successfully advanced. -C -C Y(*) -- contains the computed solution approximation at T. -C -C YPRIME(*) -- contains the computed derivative approximation at T. -C -C IDID -- reports what the code did, described as follows: -C -C *** TASK COMPLETED *** -C Reported by positive values of IDID -C -C IDID = 1 -- a step was successfully taken in the -C intermediate-output mode. The code has not -C yet reached TOUT. -C -C IDID = 2 -- the integration to TSTOP was successfully -C completed (T = TSTOP) by stepping exactly to TSTOP. -C -C IDID = 3 -- the integration to TOUT was successfully -C completed (T = TOUT) by stepping past TOUT. -C Y(*) and YPRIME(*) are obtained by interpolation. -C -C IDID = 4 -- the initial condition calculation, with -C INFO(11) > 0, was successful, and INFO(14) = 1. -C No integration steps were taken, and the solution -C is not considered to have been started. -C -C *** TASK INTERRUPTED *** -C Reported by negative values of IDID -C -C IDID = -1 -- a large amount of work has been expended -C (about 500 steps). -C -C IDID = -2 -- the error tolerances are too stringent. -C -C IDID = -3 -- the local error test cannot be satisfied -C because you specified a zero component in ATOL -C and the corresponding computed solution component -C is zero. Thus, a pure relative error test is -C impossible for this component. -C -C IDID = -5 -- there were repeated failures in the evaluation -C or processing of the preconditioner (in JAC). -C -C IDID = -6 -- DDASPK had repeated error test failures on the -C last attempted step. -C -C IDID = -7 -- the nonlinear system solver in the time integration -C could not converge. -C -C IDID = -8 -- the matrix of partial derivatives appears -C to be singular (direct method). -C -C IDID = -9 -- the nonlinear system solver in the time integration -C failed to achieve convergence, and there were repeated -C error test failures in this step. -C -C IDID =-10 -- the nonlinear system solver in the time integration -C failed to achieve convergence because IRES was equal -C to -1. -C -C IDID =-11 -- IRES = -2 was encountered and control is -C being returned to the calling program. -C -C IDID =-12 -- DDASPK failed to compute the initial Y, YPRIME. -C -C IDID =-13 -- unrecoverable error encountered inside user's -C PSOL routine, and control is being returned to -C the calling program. -C -C IDID =-14 -- the Krylov linear system solver could not -C achieve convergence. -C -C IDID =-15,..,-32 -- Not applicable for this code. -C -C *** TASK TERMINATED *** -C reported by the value of IDID=-33 -C -C IDID = -33 -- the code has encountered trouble from which -C it cannot recover. A message is printed -C explaining the trouble and control is returned -C to the calling program. For example, this occurs -C when invalid input is detected. -C -C RTOL, ATOL -- these quantities remain unchanged except when -C IDID = -2. In this case, the error tolerances have been -C increased by the code to values which are estimated to -C be appropriate for continuing the integration. However, -C the reported solution at T was obtained using the input -C values of RTOL and ATOL. -C -C RWORK, IWORK -- contain information which is usually of no interest -C to the user but necessary for subsequent calls. -C However, you may be interested in the performance data -C listed below. These quantities are accessed in RWORK -C and IWORK but have internal mnemonic names, as follows.. -C -C RWORK(3)--contains H, the step size h to be attempted -C on the next step. -C -C RWORK(4)--contains TN, the current value of the -C independent variable, i.e. the farthest point -C integration has reached. This will differ -C from T if interpolation has been performed -C (IDID = 3). -C -C RWORK(7)--contains HOLD, the stepsize used on the last -C successful step. If INFO(11) = INFO(14) = 1, -C this contains the value of H used in the -C initial condition calculation. -C -C IWORK(7)--contains K, the order of the method to be -C attempted on the next step. -C -C IWORK(8)--contains KOLD, the order of the method used -C on the last step. -C -C IWORK(11)--contains NST, the number of steps (in T) -C taken so far. -C -C IWORK(12)--contains NRE, the number of calls to RES -C so far. -C -C IWORK(13)--contains NJE, the number of calls to JAC so -C far (Jacobian or preconditioner evaluations). -C -C IWORK(14)--contains NETF, the total number of error test -C failures so far. -C -C IWORK(15)--contains NCFN, the total number of nonlinear -C convergence failures so far (includes counts -C of singular iteration matrix or singular -C preconditioners). -C -C IWORK(16)--contains NCFL, the number of convergence -C failures of the linear iteration so far. -C -C IWORK(17)--contains LENIW, the length of IWORK actually -C required. This is defined on normal returns -C and on an illegal input return for -C insufficient storage. -C -C IWORK(18)--contains LENRW, the length of RWORK actually -C required. This is defined on normal returns -C and on an illegal input return for -C insufficient storage. -C -C IWORK(19)--contains NNI, the total number of nonlinear -C iterations so far (each of which calls a -C linear solver). -C -C IWORK(20)--contains NLI, the total number of linear -C (Krylov) iterations so far. -C -C IWORK(21)--contains NPS, the number of PSOL calls so -C far, for preconditioning solve operations or -C for solutions with the user-supplied method. -C -C Note: The various counters in IWORK do not include -C counts during a call made with INFO(11) > 0 and -C INFO(14) = 1. -C -C -C------INPUT - WHAT TO DO TO CONTINUE THE INTEGRATION ----------------- -C (CALLS AFTER THE FIRST) -C -C This code is organized so that subsequent calls to continue the -C integration involve little (if any) additional effort on your -C part. You must monitor the IDID parameter in order to determine -C what to do next. -C -C Recalling that the principal task of the code is to integrate -C from T to TOUT (the interval mode), usually all you will need -C to do is specify a new TOUT upon reaching the current TOUT. -C -C Do not alter any quantity not specifically permitted below. In -C particular do not alter NEQ, T, Y(*), YPRIME(*), RWORK(*), -C IWORK(*), or the differential equation in subroutine RES. Any -C such alteration constitutes a new problem and must be treated -C as such, i.e. you must start afresh. -C -C You cannot change from array to scalar error control or vice -C versa (INFO(2)), but you can change the size of the entries of -C RTOL or ATOL. Increasing a tolerance makes the equation easier -C to integrate. Decreasing a tolerance will make the equation -C harder to integrate and should generally be avoided. -C -C You can switch from the intermediate-output mode to the -C interval mode (INFO(3)) or vice versa at any time. -C -C If it has been necessary to prevent the integration from going -C past a point TSTOP (INFO(4), RWORK(1)), keep in mind that the -C code will not integrate to any TOUT beyond the currently -C specified TSTOP. Once TSTOP has been reached, you must change -C the value of TSTOP or set INFO(4) = 0. You may change INFO(4) -C or TSTOP at any time but you must supply the value of TSTOP in -C RWORK(1) whenever you set INFO(4) = 1. -C -C Do not change INFO(5), INFO(6), INFO(12-17) or their associated -C IWORK/RWORK locations unless you are going to restart the code. -C -C *** FOLLOWING A COMPLETED TASK *** -C -C If.. -C IDID = 1, call the code again to continue the integration -C another step in the direction of TOUT. -C -C IDID = 2 or 3, define a new TOUT and call the code again. -C TOUT must be different from T. You cannot change -C the direction of integration without restarting. -C -C IDID = 4, reset INFO(11) = 0 and call the code again to begin -C the integration. (If you leave INFO(11) > 0 and -C INFO(14) = 1, you may generate an infinite loop.) -C In this situation, the next call to DASPK is -C considered to be the first call for the problem, -C in that all initializations are done. -C -C *** FOLLOWING AN INTERRUPTED TASK *** -C -C To show the code that you realize the task was interrupted and -C that you want to continue, you must take appropriate action and -C set INFO(1) = 1. -C -C If.. -C IDID = -1, the code has taken about 500 steps. If you want to -C continue, set INFO(1) = 1 and call the code again. -C An additional 500 steps will be allowed. -C -C -C IDID = -2, the error tolerances RTOL, ATOL have been increased -C to values the code estimates appropriate for -C continuing. You may want to change them yourself. -C If you are sure you want to continue with relaxed -C error tolerances, set INFO(1) = 1 and call the code -C again. -C -C IDID = -3, a solution component is zero and you set the -C corresponding component of ATOL to zero. If you -C are sure you want to continue, you must first alter -C the error criterion to use positive values of ATOL -C for those components corresponding to zero solution -C components, then set INFO(1) = 1 and call the code -C again. -C -C IDID = -4 --- cannot occur with this code. -C -C IDID = -5, your JAC routine failed with the Krylov method. Check -C for errors in JAC and restart the integration. -C -C IDID = -6, repeated error test failures occurred on the last -C attempted step in DDASPK. A singularity in the -C solution may be present. If you are absolutely -C certain you want to continue, you should restart -C the integration. (Provide initial values of Y and -C YPRIME which are consistent.) -C -C IDID = -7, repeated convergence test failures occurred on the last -C attempted step in DDASPK. An inaccurate or ill- -C conditioned Jacobian or preconditioner may be the -C problem. If you are absolutely certain you want -C to continue, you should restart the integration. -C -C -C IDID = -8, the matrix of partial derivatives is singular, with -C the use of direct methods. Some of your equations -C may be redundant. DDASPK cannot solve the problem -C as stated. It is possible that the redundant -C equations could be removed, and then DDASPK could -C solve the problem. It is also possible that a -C solution to your problem either does not exist -C or is not unique. -C -C IDID = -9, DDASPK had multiple convergence test failures, preceded -C by multiple error test failures, on the last -C attempted step. It is possible that your problem is -C ill-posed and cannot be solved using this code. Or, -C there may be a discontinuity or a singularity in the -C solution. If you are absolutely certain you want to -C continue, you should restart the integration. -C -C IDID = -10, DDASPK had multiple convergence test failures -C because IRES was equal to -1. If you are -C absolutely certain you want to continue, you -C should restart the integration. -C -C IDID = -11, there was an unrecoverable error (IRES = -2) from RES -C inside the nonlinear system solver. Determine the -C cause before trying again. -C -C IDID = -12, DDASPK failed to compute the initial Y and YPRIME -C vectors. This could happen because the initial -C approximation to Y or YPRIME was not very good, or -C because no consistent values of these vectors exist. -C The problem could also be caused by an inaccurate or -C singular iteration matrix, or a poor preconditioner. -C -C IDID = -13, there was an unrecoverable error encountered inside -C your PSOL routine. Determine the cause before -C trying again. -C -C IDID = -14, the Krylov linear system solver failed to achieve -C convergence. This may be due to ill-conditioning -C in the iteration matrix, or a singularity in the -C preconditioner (if one is being used). -C Another possibility is that there is a better -C choice of Krylov parameters (see INFO(13)). -C Possibly the failure is caused by redundant equations -C in the system, or by inconsistent equations. -C In that case, reformulate the system to make it -C consistent and non-redundant. -C -C IDID = -15,..,-32 --- Cannot occur with this code. -C -C *** FOLLOWING A TERMINATED TASK *** -C -C If IDID = -33, you cannot continue the solution of this problem. -C An attempt to do so will result in your run being -C terminated. -C -C --------------------------------------------------------------------- -C -C***REFERENCES -C 1. L. R. Petzold, A Description of DASSL: A Differential/Algebraic -C System Solver, in Scientific Computing, R. S. Stepleman et al. -C (Eds.), North-Holland, Amsterdam, 1983, pp. 65-68. -C 2. K. E. Brenan, S. L. Campbell, and L. R. Petzold, Numerical -C Solution of Initial-Value Problems in Differential-Algebraic -C Equations, Elsevier, New York, 1989. -C 3. P. N. Brown and A. C. Hindmarsh, Reduced Storage Matrix Methods -C in Stiff ODE Systems, J. Applied Mathematics and Computation, -C 31 (1989), pp. 40-91. -C 4. P. N. Brown, A. C. Hindmarsh, and L. R. Petzold, Using Krylov -C Methods in the Solution of Large-Scale Differential-Algebraic -C Systems, SIAM J. Sci. Comp., 15 (1994), pp. 1467-1488. -C 5. P. N. Brown, A. C. Hindmarsh, and L. R. Petzold, Consistent -C Initial Condition Calculation for Differential-Algebraic -C Systems, SIAM J. Sci. Comp. 19 (1998), pp. 1495-1512. -C -C***ROUTINES CALLED -C -C The following are all the subordinate routines used by DDASPK. -C -C DDASIC computes consistent initial conditions. -C DYYPNW updates Y and YPRIME in linesearch for initial condition -C calculation. -C DDSTP carries out one step of the integration. -C DCNSTR/DCNST0 check the current solution for constraint violations. -C DDAWTS sets error weight quantities. -C DINVWT tests and inverts the error weights. -C DDATRP performs interpolation to get an output solution. -C DDWNRM computes the weighted root-mean-square norm of a vector. -C D1MACH provides the unit roundoff of the computer. -C XERRWD/XSETF/XSETUN/IXSAV is a package to handle error messages. -C DDASID nonlinear equation driver to initialize Y and YPRIME using -C direct linear system solver methods. Interfaces to Newton -C solver (direct case). -C DNSID solves the nonlinear system for unknown initial values by -C modified Newton iteration and direct linear system methods. -C DLINSD carries out linesearch algorithm for initial condition -C calculation (direct case). -C DFNRMD calculates weighted norm of preconditioned residual in -C initial condition calculation (direct case). -C DNEDD nonlinear equation driver for direct linear system solver -C methods. Interfaces to Newton solver (direct case). -C DMATD assembles the iteration matrix (direct case). -C DNSD solves the associated nonlinear system by modified -C Newton iteration and direct linear system methods. -C DSLVD interfaces to linear system solver (direct case). -C DDASIK nonlinear equation driver to initialize Y and YPRIME using -C Krylov iterative linear system methods. Interfaces to -C Newton solver (Krylov case). -C DNSIK solves the nonlinear system for unknown initial values by -C Newton iteration and Krylov iterative linear system methods. -C DLINSK carries out linesearch algorithm for initial condition -C calculation (Krylov case). -C DFNRMK calculates weighted norm of preconditioned residual in -C initial condition calculation (Krylov case). -C DNEDK nonlinear equation driver for iterative linear system solver -C methods. Interfaces to Newton solver (Krylov case). -C DNSK solves the associated nonlinear system by Inexact Newton -C iteration and (linear) Krylov iteration. -C DSLVK interfaces to linear system solver (Krylov case). -C DSPIGM solves a linear system by SPIGMR algorithm. -C DATV computes matrix-vector product in Krylov algorithm. -C DORTH performs orthogonalization of Krylov basis vectors. -C DHEQR performs QR factorization of Hessenberg matrix. -C DHELS finds least-squares solution of Hessenberg linear system. -C DGEFA, DGESL, DGBFA, DGBSL are LINPACK routines for solving -C linear systems (dense or band direct methods). -C DAXPY, DCOPY, DDOT, DNRM2, DSCAL are Basic Linear Algebra (BLAS) -C routines. -C -C The routines called directly by DDASPK are: -C DCNST0, DDAWTS, DINVWT, D1MACH, DDWNRM, DDASIC, DDATRP, DDSTP, -C XERRWD -C -C***END PROLOGUE DDASPK -C -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - LOGICAL DONE, LAVL, LCFN, LCFL, LWARN - DIMENSION Y(*),YPRIME(*) - DIMENSION INFO(20) - DIMENSION RWORK(LRW),IWORK(LIW) - DIMENSION RTOL(*),ATOL(*) - DIMENSION RPAR(*),IPAR(*) - CHARACTER MSG*80 - EXTERNAL RES, JAC, PSOL, DDASID, DDASIK, DNEDD, DNEDK -C -C Set pointers into IWORK. -C - PARAMETER (LML=1, LMU=2, LMTYPE=4, - * LIWM=1, LMXORD=3, LJCALC=5, LPHASE=6, LK=7, LKOLD=8, - * LNS=9, LNSTL=10, LNST=11, LNRE=12, LNJE=13, LETF=14, LNCFN=15, - * LNCFL=16, LNIW=17, LNRW=18, LNNI=19, LNLI=20, LNPS=21, - * LNPD=22, LMITER=23, LMAXL=24, LKMP=25, LNRMAX=26, LLNWP=27, - * LLNIWP=28, LLOCWP=29, LLCIWP=30, LKPRIN=31, - * LMXNIT=32, LMXNJ=33, LMXNH=34, LLSOFF=35, LICNS=41) -C -C Set pointers into RWORK. -C - PARAMETER (LTSTOP=1, LHMAX=2, LH=3, LTN=4, LCJ=5, LCJOLD=6, - * LHOLD=7, LS=8, LROUND=9, LEPLI=10, LSQRN=11, LRSQRN=12, - * LEPCON=13, LSTOL=14, LEPIN=15, - * LALPHA=21, LBETA=27, LGAMMA=33, LPSI=39, LSIGMA=45, LDELTA=51) -C - SAVE LID, LENID, NONNEG, NCPHI -C -C -C***FIRST EXECUTABLE STATEMENT DDASPK -C -C - IF(INFO(1).NE.0) GO TO 100 -C -C----------------------------------------------------------------------- -C This block is executed for the initial call only. -C It contains checking of inputs and initializations. -C----------------------------------------------------------------------- -C -C First check INFO array to make sure all elements of INFO -C Are within the proper range. (INFO(1) is checked later, because -C it must be tested on every call.) ITEMP holds the location -C within INFO which may be out of range. -C - DO 10 I=2,9 - ITEMP = I - IF (INFO(I) .NE. 0 .AND. INFO(I) .NE. 1) GO TO 701 - 10 CONTINUE - ITEMP = 10 - IF(INFO(10).LT.0 .OR. INFO(10).GT.3) GO TO 701 - ITEMP = 11 - IF(INFO(11).LT.0 .OR. INFO(11).GT.2) GO TO 701 - DO 15 I=12,17 - ITEMP = I - IF (INFO(I) .NE. 0 .AND. INFO(I) .NE. 1) GO TO 701 - 15 CONTINUE - ITEMP = 18 - IF(INFO(18).LT.0 .OR. INFO(18).GT.2) GO TO 701 - -C -C Check NEQ to see if it is positive. -C - IF (NEQ .LE. 0) GO TO 702 -C -C Check and compute maximum order. -C - MXORD=5 - IF (INFO(9) .NE. 0) THEN - MXORD=IWORK(LMXORD) - IF (MXORD .LT. 1 .OR. MXORD .GT. 5) GO TO 703 - ENDIF - IWORK(LMXORD)=MXORD -C -C Set and/or check inputs for constraint checking (INFO(10) .NE. 0). -C Set values for ICNFLG, NONNEG, and pointer LID. -C - ICNFLG = 0 - NONNEG = 0 - LID = LICNS - IF (INFO(10) .EQ. 0) GO TO 20 - IF (INFO(10) .EQ. 1) THEN - ICNFLG = 1 - NONNEG = 0 - LID = LICNS + NEQ - ELSEIF (INFO(10) .EQ. 2) THEN - ICNFLG = 0 - NONNEG = 1 - ELSE - ICNFLG = 1 - NONNEG = 1 - LID = LICNS + NEQ - ENDIF -C - 20 CONTINUE -C -C Set and/or check inputs for Krylov solver (INFO(12) .NE. 0). -C If indicated, set default values for MAXL, KMP, NRMAX, and EPLI. -C Otherwise, verify inputs required for iterative solver. -C - IF (INFO(12) .EQ. 0) GO TO 25 -C - IWORK(LMITER) = INFO(12) - IF (INFO(13) .EQ. 0) THEN - IWORK(LMAXL) = MIN(5,NEQ) - IWORK(LKMP) = IWORK(LMAXL) - IWORK(LNRMAX) = 5 - RWORK(LEPLI) = 0.05D0 - ELSE - IF(IWORK(LMAXL) .LT. 1 .OR. IWORK(LMAXL) .GT. NEQ) GO TO 720 - IF(IWORK(LKMP) .LT. 1 .OR. IWORK(LKMP) .GT. IWORK(LMAXL)) - 1 GO TO 721 - IF(IWORK(LNRMAX) .LT. 0) GO TO 722 - IF(RWORK(LEPLI).LE.0.0D0 .OR. RWORK(LEPLI).GE.1.0D0)GO TO 723 - ENDIF -C - 25 CONTINUE -C -C Set and/or check controls for the initial condition calculation -C (INFO(11) .GT. 0). If indicated, set default values. -C Otherwise, verify inputs required for iterative solver. -C - IF (INFO(11) .EQ. 0) GO TO 30 - IF (INFO(17) .EQ. 0) THEN - IWORK(LMXNIT) = 5 - IF (INFO(12) .GT. 0) IWORK(LMXNIT) = 15 - IWORK(LMXNJ) = 6 - IF (INFO(12) .GT. 0) IWORK(LMXNJ) = 2 - IWORK(LMXNH) = 5 - IWORK(LLSOFF) = 0 - RWORK(LEPIN) = 0.01D0 - ELSE - IF (IWORK(LMXNIT) .LE. 0) GO TO 725 - IF (IWORK(LMXNJ) .LE. 0) GO TO 725 - IF (IWORK(LMXNH) .LE. 0) GO TO 725 - LSOFF = IWORK(LLSOFF) - IF (LSOFF .LT. 0 .OR. LSOFF .GT. 1) GO TO 725 - IF (RWORK(LEPIN) .LE. 0.0D0) GO TO 725 - ENDIF -C - 30 CONTINUE -C -C Below is the computation and checking of the work array lengths -C LENIW and LENRW, using direct methods (INFO(12) = 0) or -C the Krylov methods (INFO(12) = 1). -C - LENIC = 0 - IF (INFO(10) .EQ. 1 .OR. INFO(10) .EQ. 3) LENIC = NEQ - LENID = 0 - IF (INFO(11) .EQ. 1 .OR. INFO(16) .EQ. 1) LENID = NEQ - IF (INFO(12) .EQ. 0) THEN -C -C Compute MTYPE, etc. Check ML and MU. -C - NCPHI = MAX(MXORD + 1, 4) - IF(INFO(6).EQ.0) THEN - LENPD = NEQ**2 - LENRW = 50 + (NCPHI+3)*NEQ + LENPD - IF(INFO(5).EQ.0) THEN - IWORK(LMTYPE)=2 - ELSE - IWORK(LMTYPE)=1 - ENDIF - ELSE - IF(IWORK(LML).LT.0.OR.IWORK(LML).GE.NEQ)GO TO 717 - IF(IWORK(LMU).LT.0.OR.IWORK(LMU).GE.NEQ)GO TO 718 - LENPD=(2*IWORK(LML)+IWORK(LMU)+1)*NEQ - IF(INFO(5).EQ.0) THEN - IWORK(LMTYPE)=5 - MBAND=IWORK(LML)+IWORK(LMU)+1 - MSAVE=(NEQ/MBAND)+1 - LENRW = 50 + (NCPHI+3)*NEQ + LENPD + 2*MSAVE - ELSE - IWORK(LMTYPE)=4 - LENRW = 50 + (NCPHI+3)*NEQ + LENPD - ENDIF - ENDIF -C -C Compute LENIW, LENWP, LENIWP. -C - LENIW = 40 + LENIC + LENID + NEQ - LENWP = 0 - LENIWP = 0 -C - ELSE IF (INFO(12) .EQ. 1) THEN - NCPHI = MXORD + 1 - MAXL = IWORK(LMAXL) - LENWP = IWORK(LLNWP) - LENIWP = IWORK(LLNIWP) - LENPD = (MAXL+3+MIN0(1,MAXL-IWORK(LKMP)))*NEQ - 1 + (MAXL+3)*MAXL + 1 + LENWP - LENRW = 50 + (MXORD+5)*NEQ + LENPD - LENIW = 40 + LENIC + LENID + LENIWP -C - ENDIF - IF(INFO(16) .NE. 0) LENRW = LENRW + NEQ -C -C Check lengths of RWORK and IWORK. -C - IWORK(LNIW)=LENIW - IWORK(LNRW)=LENRW - IWORK(LNPD)=LENPD - IWORK(LLOCWP) = LENPD-LENWP+1 - IF(LRW.LT.LENRW)GO TO 704 - IF(LIW.LT.LENIW)GO TO 705 -C -C Check ICNSTR for legality. -C - IF (LENIC .GT. 0) THEN - DO 40 I = 1,NEQ - ICI = IWORK(LICNS-1+I) - IF (ICI .LT. -2 .OR. ICI .GT. 2) GO TO 726 - 40 CONTINUE - ENDIF -C -C Check Y for consistency with constraints. -C - IF (LENIC .GT. 0) THEN - CALL DCNST0(NEQ,Y,IWORK(LICNS),IRET) - IF (IRET .NE. 0) GO TO 727 - ENDIF -C -C Check ID for legality and set INDEX = 0 or 1. -C - INDEX = 1 - IF (LENID .GT. 0) THEN - INDEX = 0 - DO 50 I = 1,NEQ - IDI = IWORK(LID-1+I) - IF (IDI .NE. 1 .AND. IDI .NE. -1) GO TO 724 - IF (IDI .EQ. -1) INDEX = 1 - 50 CONTINUE - ENDIF -C -C Check to see that TOUT is different from T. -C - IF(TOUT .EQ. T)GO TO 719 -C -C Check HMAX. -C - IF(INFO(7) .NE. 0) THEN - HMAX = RWORK(LHMAX) - IF (HMAX .LE. 0.0D0) GO TO 710 - ENDIF -C -C Initialize counters and other flags. -C - IWORK(LNST)=0 - IWORK(LNRE)=0 - IWORK(LNJE)=0 - IWORK(LETF)=0 - IWORK(LNCFN)=0 - IWORK(LNNI)=0 - IWORK(LNLI)=0 - IWORK(LNPS)=0 - IWORK(LNCFL)=0 - IWORK(LKPRIN)=INFO(18) - IDID=1 - GO TO 200 -C -C----------------------------------------------------------------------- -C This block is for continuation calls only. -C Here we check INFO(1), and if the last step was interrupted, -C we check whether appropriate action was taken. -C----------------------------------------------------------------------- -C -100 CONTINUE - IF(INFO(1).EQ.1)GO TO 110 - ITEMP = 1 - IF(INFO(1).NE.-1)GO TO 701 -C -C If we are here, the last step was interrupted by an error -C condition from DDSTP, and appropriate action was not taken. -C This is a fatal error. -C - MSG = 'DASPK-- THE LAST STEP TERMINATED WITH A NEGATIVE' - CALL XERRWD(MSG,49,201,0,0,0,0,0,0.0D0,0.0D0) - MSG = 'DASPK-- VALUE (=I1) OF IDID AND NO APPROPRIATE' - CALL XERRWD(MSG,47,202,0,1,IDID,0,0,0.0D0,0.0D0) - MSG = 'DASPK-- ACTION WAS TAKEN. RUN TERMINATED' - CALL XERRWD(MSG,41,203,1,0,0,0,0,0.0D0,0.0D0) - RETURN -110 CONTINUE -C -C----------------------------------------------------------------------- -C This block is executed on all calls. -C -C Counters are saved for later checks of performance. -C Then the error tolerance parameters are checked, and the -C work array pointers are set. -C----------------------------------------------------------------------- -C -200 CONTINUE -C -C Save counters for use later. -C - IWORK(LNSTL)=IWORK(LNST) - NLI0 = IWORK(LNLI) - NNI0 = IWORK(LNNI) - NCFN0 = IWORK(LNCFN) - NCFL0 = IWORK(LNCFL) - NWARN = 0 -C -C Check RTOL and ATOL. -C - NZFLG = 0 - RTOLI = RTOL(1) - ATOLI = ATOL(1) - DO 210 I=1,NEQ - IF (INFO(2) .EQ. 1) RTOLI = RTOL(I) - IF (INFO(2) .EQ. 1) ATOLI = ATOL(I) - IF (RTOLI .GT. 0.0D0 .OR. ATOLI .GT. 0.0D0) NZFLG = 1 - IF (RTOLI .LT. 0.0D0) GO TO 706 - IF (ATOLI .LT. 0.0D0) GO TO 707 -210 CONTINUE - IF (NZFLG .EQ. 0) GO TO 708 -C -C Set pointers to RWORK and IWORK segments. -C For direct methods, SAVR is not used. -C - IWORK(LLCIWP) = LID + LENID - LSAVR = LDELTA - IF (INFO(12) .NE. 0) LSAVR = LDELTA + NEQ - LE = LSAVR + NEQ - LWT = LE + NEQ - LVT = LWT - IF (INFO(16) .NE. 0) LVT = LWT + NEQ - LPHI = LVT + NEQ - LWM = LPHI + NCPHI*NEQ - IF (INFO(1) .EQ. 1) GO TO 400 -C -C----------------------------------------------------------------------- -C This block is executed on the initial call only. -C Set the initial step size, the error weight vector, and PHI. -C Compute unknown initial components of Y and YPRIME, if requested. -C----------------------------------------------------------------------- -C -300 CONTINUE - TN=T - IDID=1 -C -C Set error weight array WT and altered weight array VT. -C - CALL DDAWTS(NEQ,INFO(2),RTOL,ATOL,Y,RWORK(LWT),RPAR,IPAR) - CALL DINVWT(NEQ,RWORK(LWT),IER) - IF (IER .NE. 0) GO TO 713 - IF (INFO(16) .NE. 0) THEN - DO 305 I = 1, NEQ - 305 RWORK(LVT+I-1) = MAX(IWORK(LID+I-1),0)*RWORK(LWT+I-1) - ENDIF -C -C Compute unit roundoff and HMIN. -C - UROUND = D1MACH(4) - RWORK(LROUND) = UROUND - HMIN = 4.0D0*UROUND*MAX(ABS(T),ABS(TOUT)) -C -C Set/check STPTOL control for initial condition calculation. -C - IF (INFO(11) .NE. 0) THEN - IF( INFO(17) .EQ. 0) THEN - RWORK(LSTOL) = UROUND**.6667D0 - ELSE - IF (RWORK(LSTOL) .LE. 0.0D0) GO TO 725 - ENDIF - ENDIF -C -C Compute EPCON and square root of NEQ and its reciprocal, used -C inside iterative solver. -C - RWORK(LEPCON) = 0.33D0 - FLOATN = NEQ - RWORK(LSQRN) = SQRT(FLOATN) - RWORK(LRSQRN) = 1.D0/RWORK(LSQRN) -C -C Check initial interval to see that it is long enough. -C - TDIST = ABS(TOUT - T) - IF(TDIST .LT. HMIN) GO TO 714 -C -C Check H0, if this was input. -C - IF (INFO(8) .EQ. 0) GO TO 310 - H0 = RWORK(LH) - IF ((TOUT - T)*H0 .LT. 0.0D0) GO TO 711 - IF (H0 .EQ. 0.0D0) GO TO 712 - GO TO 320 -310 CONTINUE -C -C Compute initial stepsize, to be used by either -C DDSTP or DDASIC, depending on INFO(11). -C - H0 = 0.001D0*TDIST - YPNORM = DDWNRM(NEQ,YPRIME,RWORK(LVT),RPAR,IPAR) - IF (YPNORM .GT. 0.5D0/H0) H0 = 0.5D0/YPNORM - H0 = SIGN(H0,TOUT-T) -C -C Adjust H0 if necessary to meet HMAX bound. -C -320 IF (INFO(7) .EQ. 0) GO TO 330 - RH = ABS(H0)/RWORK(LHMAX) - IF (RH .GT. 1.0D0) H0 = H0/RH -C -C Check against TSTOP, if applicable. -C -330 IF (INFO(4) .EQ. 0) GO TO 340 - TSTOP = RWORK(LTSTOP) - write(*,*) 'tstop = ',tstop - IF ((TSTOP - T)*H0 .LT. 0.0D0) GO TO 715 - IF ((T + H0 - TSTOP)*H0 .GT. 0.0D0) H0 = TSTOP - T - IF ((TSTOP - TOUT)*H0 .LT. 0.0D0) GO TO 709 -C -340 IF (INFO(11) .EQ. 0) GO TO 370 -C -C Compute unknown components of initial Y and YPRIME, depending -C on INFO(11) and INFO(12). INFO(12) represents the nonlinear -C solver type (direct/Krylov). Pass the name of the specific -C nonlinear solver, depending on INFO(12). The location of the work -C arrays SAVR, YIC, YPIC, PWK also differ in the two cases. -C For use in stopping tests, pass TSCALE = TDIST if INDEX = 0. -C - NWT = 1 - EPCONI = RWORK(LEPIN)*RWORK(LEPCON) - TSCALE = 0.0D0 - IF (INDEX .EQ. 0) TSCALE = TDIST -350 IF (INFO(12) .EQ. 0) THEN - LYIC = LPHI + 2*NEQ - LYPIC = LYIC + NEQ - LPWK = LYPIC - CALL DDASIC(TN,Y,YPRIME,NEQ,INFO(11),IWORK(LID), - * RES,JAC,PSOL,H0,TSCALE,RWORK(LWT),NWT,IDID,RPAR,IPAR, - * RWORK(LPHI),RWORK(LSAVR),RWORK(LDELTA),RWORK(LE), - * RWORK(LYIC),RWORK(LYPIC),RWORK(LPWK),RWORK(LWM),IWORK(LIWM), - * RWORK(LROUND),RWORK(LEPLI),RWORK(LSQRN),RWORK(LRSQRN), - * EPCONI,RWORK(LSTOL),INFO(15),ICNFLG,IWORK(LICNS),DDASID) - ELSE IF (INFO(12) .EQ. 1) THEN - LYIC = LWM - LYPIC = LYIC + NEQ - LPWK = LYPIC + NEQ - CALL DDASIC(TN,Y,YPRIME,NEQ,INFO(11),IWORK(LID), - * RES,JAC,PSOL,H0,TSCALE,RWORK(LWT),NWT,IDID,RPAR,IPAR, - * RWORK(LPHI),RWORK(LSAVR),RWORK(LDELTA),RWORK(LE), - * RWORK(LYIC),RWORK(LYPIC),RWORK(LPWK),RWORK(LWM),IWORK(LIWM), - * RWORK(LROUND),RWORK(LEPLI),RWORK(LSQRN),RWORK(LRSQRN), - * EPCONI,RWORK(LSTOL),INFO(15),ICNFLG,IWORK(LICNS),DDASIK) - ENDIF -C - IF (IDID .LT. 0) GO TO 600 -C -C DDASIC was successful. If this was the first call to DDASIC, -C update the WT array (with the current Y) and call it again. -C - IF (NWT .EQ. 2) GO TO 355 - NWT = 2 - CALL DDAWTS(NEQ,INFO(2),RTOL,ATOL,Y,RWORK(LWT),RPAR,IPAR) - CALL DINVWT(NEQ,RWORK(LWT),IER) - IF (IER .NE. 0) GO TO 713 - GO TO 350 -C -C If INFO(14) = 1, return now with IDID = 4. -C -355 IF (INFO(14) .EQ. 1) THEN - IDID = 4 - H = H0 - IF (INFO(11) .EQ. 1) RWORK(LHOLD) = H0 - GO TO 590 - ENDIF -C -C Update the WT and VT arrays one more time, with the new Y. -C - CALL DDAWTS(NEQ,INFO(2),RTOL,ATOL,Y,RWORK(LWT),RPAR,IPAR) - CALL DINVWT(NEQ,RWORK(LWT),IER) - IF (IER .NE. 0) GO TO 713 - IF (INFO(16) .NE. 0) THEN - DO 357 I = 1, NEQ - 357 RWORK(LVT+I-1) = MAX(IWORK(LID+I-1),0)*RWORK(LWT+I-1) - ENDIF -C -C Reset the initial stepsize to be used by DDSTP. -C Use H0, if this was input. Otherwise, recompute H0, -C and adjust it if necessary to meet HMAX bound. -C - IF (INFO(8) .NE. 0) THEN - H0 = RWORK(LH) - GO TO 360 - ENDIF -C - H0 = 0.001D0*TDIST - YPNORM = DDWNRM(NEQ,YPRIME,RWORK(LVT),RPAR,IPAR) - IF (YPNORM .GT. 0.5D0/H0) H0 = 0.5D0/YPNORM - H0 = SIGN(H0,TOUT-T) -C -360 IF (INFO(7) .NE. 0) THEN - RH = ABS(H0)/RWORK(LHMAX) - IF (RH .GT. 1.0D0) H0 = H0/RH - ENDIF -C -C Check against TSTOP, if applicable. -C - IF (INFO(4) .NE. 0) THEN - TSTOP = RWORK(LTSTOP) - write(*,*) 'tstop = ',tstop - IF ((T + H0 - TSTOP)*H0 .GT. 0.0D0) H0 = TSTOP - T - ENDIF -C -C Load H and RWORK(LH) with H0. -C -370 H = H0 - RWORK(LH) = H -C -C Load Y and H*YPRIME into PHI(*,1) and PHI(*,2). -C - ITEMP = LPHI + NEQ - DO 380 I = 1,NEQ - RWORK(LPHI + I - 1) = Y(I) -380 RWORK(ITEMP + I - 1) = H*YPRIME(I) -C - GO TO 500 -C -C----------------------------------------------------------------------- -C This block is for continuation calls only. -C Its purpose is to check stop conditions before taking a step. -C Adjust H if necessary to meet HMAX bound. -C----------------------------------------------------------------------- -C -400 CONTINUE - UROUND=RWORK(LROUND) - DONE = .FALSE. - TN=RWORK(LTN) - H=RWORK(LH) - IF(INFO(7) .EQ. 0) GO TO 410 - RH = ABS(H)/RWORK(LHMAX) - IF(RH .GT. 1.0D0) H = H/RH -410 CONTINUE - IF(T .EQ. TOUT) GO TO 719 - IF((T - TOUT)*H .GT. 0.0D0) GO TO 711 - IF(INFO(4) .EQ. 1) GO TO 430 - IF(INFO(3) .EQ. 1) GO TO 420 - IF((TN-TOUT)*H.LT.0.0D0)GO TO 490 - CALL DDATRP(TN,TOUT,Y,YPRIME,NEQ,IWORK(LKOLD), - * RWORK(LPHI),RWORK(LPSI)) - T=TOUT - IDID = 3 - DONE = .TRUE. - GO TO 490 -420 IF((TN-T)*H .LE. 0.0D0) GO TO 490 - IF((TN - TOUT)*H .GE. 0.0D0) GO TO 425 - CALL DDATRP(TN,TN,Y,YPRIME,NEQ,IWORK(LKOLD), - * RWORK(LPHI),RWORK(LPSI)) - T = TN - IDID = 1 - DONE = .TRUE. - GO TO 490 -425 CONTINUE - CALL DDATRP(TN,TOUT,Y,YPRIME,NEQ,IWORK(LKOLD), - * RWORK(LPHI),RWORK(LPSI)) - T = TOUT - IDID = 3 - DONE = .TRUE. - GO TO 490 -430 IF(INFO(3) .EQ. 1) GO TO 440 - TSTOP=RWORK(LTSTOP) - write(*,*) 'tstop = ',tstop - IF((TN-TSTOP)*H.GT.0.0D0) GO TO 715 - IF((TSTOP-TOUT)*H.LT.0.0D0)GO TO 709 - IF((TN-TOUT)*H.LT.0.0D0)GO TO 450 - CALL DDATRP(TN,TOUT,Y,YPRIME,NEQ,IWORK(LKOLD), - * RWORK(LPHI),RWORK(LPSI)) - T=TOUT - IDID = 3 - DONE = .TRUE. - GO TO 490 -440 TSTOP = RWORK(LTSTOP) - write(*,*) 'tstop = ',tstop - IF((TN-TSTOP)*H .GT. 0.0D0) GO TO 715 - IF((TSTOP-TOUT)*H .LT. 0.0D0) GO TO 709 - IF((TN-T)*H .LE. 0.0D0) GO TO 450 - IF((TN - TOUT)*H .GE. 0.0D0) GO TO 445 - CALL DDATRP(TN,TN,Y,YPRIME,NEQ,IWORK(LKOLD), - * RWORK(LPHI),RWORK(LPSI)) - T = TN - IDID = 1 - DONE = .TRUE. - GO TO 490 -445 CONTINUE - CALL DDATRP(TN,TOUT,Y,YPRIME,NEQ,IWORK(LKOLD), - * RWORK(LPHI),RWORK(LPSI)) - T = TOUT - IDID = 3 - DONE = .TRUE. - GO TO 490 -450 CONTINUE -C -C Check whether we are within roundoff of TSTOP. -C - IF(ABS(TN-TSTOP).GT.100.0D0*UROUND* - * (ABS(TN)+ABS(H)))GO TO 460 - CALL DDATRP(TN,TSTOP,Y,YPRIME,NEQ,IWORK(LKOLD), - * RWORK(LPHI),RWORK(LPSI)) - IDID=2 - T=TSTOP - DONE = .TRUE. - GO TO 490 -460 TNEXT=TN+H - IF((TNEXT-TSTOP)*H.LE.0.0D0)GO TO 490 - H=TSTOP-TN - RWORK(LH)=H -C -490 IF (DONE) GO TO 590 -C -C----------------------------------------------------------------------- -C The next block contains the call to the one-step integrator DDSTP. -C This is a looping point for the integration steps. -C Check for too many steps. -C Check for poor Newton/Krylov performance. -C Update WT. Check for too much accuracy requested. -C Compute minimum stepsize. -C----------------------------------------------------------------------- -C -500 CONTINUE -C -C Check for too many steps. -C - IF((IWORK(LNST)-IWORK(LNSTL)).LT.500) GO TO 505 - IDID=-1 - GO TO 527 -C -C Check for poor Newton/Krylov performance. -C -505 IF (INFO(12) .EQ. 0) GO TO 510 - NSTD = IWORK(LNST) - IWORK(LNSTL) - NNID = IWORK(LNNI) - NNI0 - IF (NSTD .LT. 10 .OR. NNID .EQ. 0) GO TO 510 - AVLIN = REAL(IWORK(LNLI) - NLI0)/REAL(NNID) - RCFN = REAL(IWORK(LNCFN) - NCFN0)/REAL(NSTD) - RCFL = REAL(IWORK(LNCFL) - NCFL0)/REAL(NNID) - FMAXL = IWORK(LMAXL) - LAVL = AVLIN .GT. FMAXL - LCFN = RCFN .GT. 0.9D0 - LCFL = RCFL .GT. 0.9D0 - LWARN = LAVL .OR. LCFN .OR. LCFL - IF (.NOT.LWARN) GO TO 510 - NWARN = NWARN + 1 - IF (NWARN .GT. 10) GO TO 510 - IF (LAVL) THEN - MSG = 'DASPK-- Warning. Poor iterative algorithm performance ' - CALL XERRWD (MSG, 56, 501, 0, 0, 0, 0, 0, 0.0D0, 0.0D0) - MSG = ' at T = R1. Average no. of linear iterations = R2 ' - CALL XERRWD (MSG, 56, 501, 0, 0, 0, 0, 2, TN, AVLIN) - ENDIF - IF (LCFN) THEN - MSG = 'DASPK-- Warning. Poor iterative algorithm performance ' - CALL XERRWD (MSG, 56, 502, 0, 0, 0, 0, 0, 0.0D0, 0.0D0) - MSG = ' at T = R1. Nonlinear convergence failure rate = R2' - CALL XERRWD (MSG, 56, 502, 0, 0, 0, 0, 2, TN, RCFN) - ENDIF - IF (LCFL) THEN - MSG = 'DASPK-- Warning. Poor iterative algorithm performance ' - CALL XERRWD (MSG, 56, 503, 0, 0, 0, 0, 0, 0.0D0, 0.0D0) - MSG = ' at T = R1. Linear convergence failure rate = R2 ' - CALL XERRWD (MSG, 56, 503, 0, 0, 0, 0, 2, TN, RCFL) - ENDIF -C -C Update WT and VT, if this is not the first call. -C -510 CALL DDAWTS(NEQ,INFO(2),RTOL,ATOL,RWORK(LPHI),RWORK(LWT), - * RPAR,IPAR) - CALL DINVWT(NEQ,RWORK(LWT),IER) - IF (IER .NE. 0) THEN - IDID = -3 - GO TO 527 - ENDIF - IF (INFO(16) .NE. 0) THEN - DO 515 I = 1, NEQ - 515 RWORK(LVT+I-1) = MAX(IWORK(LID+I-1),0)*RWORK(LWT+I-1) - ENDIF -C -C Test for too much accuracy requested. -C - R = DDWNRM(NEQ,RWORK(LPHI),RWORK(LWT),RPAR,IPAR)*100.0D0*UROUND - IF (R .LE. 1.0D0) GO TO 525 -C -C Multiply RTOL and ATOL by R and return. -C - IF(INFO(2).EQ.1)GO TO 523 - RTOL(1)=R*RTOL(1) - ATOL(1)=R*ATOL(1) - IDID=-2 - GO TO 527 -523 DO 524 I=1,NEQ - RTOL(I)=R*RTOL(I) -524 ATOL(I)=R*ATOL(I) - IDID=-2 - GO TO 527 -525 CONTINUE -C -C Compute minimum stepsize. -C - HMIN=4.0D0*UROUND*MAX(ABS(TN),ABS(TOUT)) -C -C Test H vs. HMAX - IF (INFO(7) .NE. 0) THEN - RH = ABS(H)/RWORK(LHMAX) - IF (RH .GT. 1.0D0) H = H/RH - ENDIF -C -C Call the one-step integrator. -C Note that INFO(12) represents the nonlinear solver type. -C Pass the required nonlinear solver, depending upon INFO(12). -C - IF (INFO(12) .EQ. 0) THEN - CALL DDSTP(TN,Y,YPRIME,NEQ, - * RES,JAC,PSOL,H,RWORK(LWT),RWORK(LVT),INFO(1),IDID,RPAR,IPAR, - * RWORK(LPHI),RWORK(LSAVR),RWORK(LDELTA),RWORK(LE), - * RWORK(LWM),IWORK(LIWM), - * RWORK(LALPHA),RWORK(LBETA),RWORK(LGAMMA), - * RWORK(LPSI),RWORK(LSIGMA), - * RWORK(LCJ),RWORK(LCJOLD),RWORK(LHOLD),RWORK(LS),HMIN, - * RWORK(LROUND), RWORK(LEPLI),RWORK(LSQRN),RWORK(LRSQRN), - * RWORK(LEPCON), IWORK(LPHASE),IWORK(LJCALC),INFO(15), - * IWORK(LK), IWORK(LKOLD),IWORK(LNS),NONNEG,INFO(12), - * DNEDD) - ELSE IF (INFO(12) .EQ. 1) THEN - CALL DDSTP(TN,Y,YPRIME,NEQ, - * RES,JAC,PSOL,H,RWORK(LWT),RWORK(LVT),INFO(1),IDID,RPAR,IPAR, - * RWORK(LPHI),RWORK(LSAVR),RWORK(LDELTA),RWORK(LE), - * RWORK(LWM),IWORK(LIWM), - * RWORK(LALPHA),RWORK(LBETA),RWORK(LGAMMA), - * RWORK(LPSI),RWORK(LSIGMA), - * RWORK(LCJ),RWORK(LCJOLD),RWORK(LHOLD),RWORK(LS),HMIN, - * RWORK(LROUND), RWORK(LEPLI),RWORK(LSQRN),RWORK(LRSQRN), - * RWORK(LEPCON), IWORK(LPHASE),IWORK(LJCALC),INFO(15), - * IWORK(LK), IWORK(LKOLD),IWORK(LNS),NONNEG,INFO(12), - * DNEDK) - ENDIF -C -527 IF(IDID.LT.0)GO TO 600 -C -C----------------------------------------------------------------------- -C This block handles the case of a successful return from DDSTP -C (IDID=1). Test for stop conditions. -C----------------------------------------------------------------------- -C - IF(INFO(4).NE.0)GO TO 540 - IF(INFO(3).NE.0)GO TO 530 - IF((TN-TOUT)*H.LT.0.0D0)GO TO 500 - CALL DDATRP(TN,TOUT,Y,YPRIME,NEQ, - * IWORK(LKOLD),RWORK(LPHI),RWORK(LPSI)) - IDID=3 - T=TOUT - GO TO 580 -530 IF((TN-TOUT)*H.GE.0.0D0)GO TO 535 - T=TN - IDID=1 - GO TO 580 -535 CALL DDATRP(TN,TOUT,Y,YPRIME,NEQ, - * IWORK(LKOLD),RWORK(LPHI),RWORK(LPSI)) - IDID=3 - T=TOUT - GO TO 580 -540 IF(INFO(3).NE.0)GO TO 550 - IF((TN-TOUT)*H.LT.0.0D0)GO TO 542 - CALL DDATRP(TN,TOUT,Y,YPRIME,NEQ, - * IWORK(LKOLD),RWORK(LPHI),RWORK(LPSI)) - T=TOUT - IDID=3 - GO TO 580 -542 IF(ABS(TN-TSTOP).LE.100.0D0*UROUND* - * (ABS(TN)+ABS(H)))GO TO 545 - TNEXT=TN+H - IF((TNEXT-TSTOP)*H.LE.0.0D0)GO TO 500 - H=TSTOP-TN - GO TO 500 -545 CALL DDATRP(TN,TSTOP,Y,YPRIME,NEQ, - * IWORK(LKOLD),RWORK(LPHI),RWORK(LPSI)) - IDID=2 - T=TSTOP - GO TO 580 -550 IF((TN-TOUT)*H.GE.0.0D0)GO TO 555 - IF(ABS(TN-TSTOP).LE.100.0D0*UROUND*(ABS(TN)+ABS(H)))GO TO 552 - T=TN - IDID=1 - GO TO 580 -552 CALL DDATRP(TN,TSTOP,Y,YPRIME,NEQ, - * IWORK(LKOLD),RWORK(LPHI),RWORK(LPSI)) - IDID=2 - T=TSTOP - GO TO 580 -555 CALL DDATRP(TN,TOUT,Y,YPRIME,NEQ, - * IWORK(LKOLD),RWORK(LPHI),RWORK(LPSI)) - T=TOUT - IDID=3 -580 CONTINUE -C -C----------------------------------------------------------------------- -C All successful returns from DDASPK are made from this block. -C----------------------------------------------------------------------- -C -590 CONTINUE - RWORK(LTN)=TN - RWORK(LH)=H - RETURN -C -C----------------------------------------------------------------------- -C This block handles all unsuccessful returns other than for -C illegal input. -C----------------------------------------------------------------------- -C -600 CONTINUE - ITEMP = -IDID - GO TO (610,620,630,700,655,640,650,660,670,675, - * 680,685,690,695), ITEMP -C -C The maximum number of steps was taken before -C reaching tout. -C -610 MSG = 'DASPK-- AT CURRENT T (=R1) 500 STEPS' - CALL XERRWD(MSG,38,610,0,0,0,0,1,TN,0.0D0) - MSG = 'DASPK-- TAKEN ON THIS CALL BEFORE REACHING TOUT' - CALL XERRWD(MSG,48,611,0,0,0,0,0,0.0D0,0.0D0) - GO TO 700 -C -C Too much accuracy for machine precision. -C -620 MSG = 'DASPK-- AT T (=R1) TOO MUCH ACCURACY REQUESTED' - CALL XERRWD(MSG,47,620,0,0,0,0,1,TN,0.0D0) - MSG = 'DASPK-- FOR PRECISION OF MACHINE. RTOL AND ATOL' - CALL XERRWD(MSG,48,621,0,0,0,0,0,0.0D0,0.0D0) - MSG = 'DASPK-- WERE INCREASED TO APPROPRIATE VALUES' - CALL XERRWD(MSG,45,622,0,0,0,0,0,0.0D0,0.0D0) - GO TO 700 -C -C WT(I) .LE. 0.0D0 for some I (not at start of problem). -C -630 MSG = 'DASPK-- AT T (=R1) SOME ELEMENT OF WT' - CALL XERRWD(MSG,38,630,0,0,0,0,1,TN,0.0D0) - MSG = 'DASPK-- HAS BECOME .LE. 0.0' - CALL XERRWD(MSG,28,631,0,0,0,0,0,0.0D0,0.0D0) - GO TO 700 -C -C Error test failed repeatedly or with H=HMIN. -C -640 MSG = 'DASPK-- AT T (=R1) AND STEPSIZE H (=R2) THE' - CALL XERRWD(MSG,44,640,0,0,0,0,2,TN,H) - MSG='DASPK-- ERROR TEST FAILED REPEATEDLY OR WITH ABS(H)=HMIN' - CALL XERRWD(MSG,57,641,0,0,0,0,0,0.0D0,0.0D0) - GO TO 700 -C -C Nonlinear solver failed to converge repeatedly or with H=HMIN. -C -650 MSG = 'DASPK-- AT T (=R1) AND STEPSIZE H (=R2) THE' - CALL XERRWD(MSG,44,650,0,0,0,0,2,TN,H) - MSG = 'DASPK-- NONLINEAR SOLVER FAILED TO CONVERGE' - CALL XERRWD(MSG,44,651,0,0,0,0,0,0.0D0,0.0D0) - MSG = 'DASPK-- REPEATEDLY OR WITH ABS(H)=HMIN' - CALL XERRWD(MSG,40,652,0,0,0,0,0,0.0D0,0.0D0) - GO TO 700 -C -C The preconditioner had repeated failures. -C -655 MSG = 'DASPK-- AT T (=R1) AND STEPSIZE H (=R2) THE' - CALL XERRWD(MSG,44,655,0,0,0,0,2,TN,H) - MSG = 'DASPK-- PRECONDITIONER HAD REPEATED FAILURES.' - CALL XERRWD(MSG,46,656,0,0,0,0,0,0.0D0,0.0D0) - GO TO 700 -C -C The iteration matrix is singular. -C -660 MSG = 'DASPK-- AT T (=R1) AND STEPSIZE H (=R2) THE' - CALL XERRWD(MSG,44,660,0,0,0,0,2,TN,H) - MSG = 'DASPK-- ITERATION MATRIX IS SINGULAR.' - CALL XERRWD(MSG,38,661,0,0,0,0,0,0.0D0,0.0D0) - GO TO 700 -C -C Nonlinear system failure preceded by error test failures. -C -670 MSG = 'DASPK-- AT T (=R1) AND STEPSIZE H (=R2) THE' - CALL XERRWD(MSG,44,670,0,0,0,0,2,TN,H) - MSG = 'DASPK-- NONLINEAR SOLVER COULD NOT CONVERGE.' - CALL XERRWD(MSG,45,671,0,0,0,0,0,0.0D0,0.0D0) - MSG = 'DASPK-- ALSO, THE ERROR TEST FAILED REPEATEDLY.' - CALL XERRWD(MSG,49,672,0,0,0,0,0,0.0D0,0.0D0) - GO TO 700 -C -C Nonlinear system failure because IRES = -1. -C -675 MSG = 'DASPK-- AT T (=R1) AND STEPSIZE H (=R2) THE' - CALL XERRWD(MSG,44,675,0,0,0,0,2,TN,H) - MSG = 'DASPK-- NONLINEAR SYSTEM SOLVER COULD NOT CONVERGE' - CALL XERRWD(MSG,51,676,0,0,0,0,0,0.0D0,0.0D0) - MSG = 'DASPK-- BECAUSE IRES WAS EQUAL TO MINUS ONE' - CALL XERRWD(MSG,44,677,0,0,0,0,0,0.0D0,0.0D0) - GO TO 700 -C -C Failure because IRES = -2. -C -680 MSG = 'DASPK-- AT T (=R1) AND STEPSIZE H (=R2)' - CALL XERRWD(MSG,40,680,0,0,0,0,2,TN,H) - MSG = 'DASPK-- IRES WAS EQUAL TO MINUS TWO' - CALL XERRWD(MSG,36,681,0,0,0,0,0,0.0D0,0.0D0) - GO TO 700 -C -C Failed to compute initial YPRIME. -C -685 MSG = 'DASPK-- AT T (=R1) AND STEPSIZE H (=R2) THE' - CALL XERRWD(MSG,44,685,0,0,0,0,0,0.0D0,0.0D0) - MSG = 'DASPK-- INITIAL (Y,YPRIME) COULD NOT BE COMPUTED' - CALL XERRWD(MSG,49,686,0,0,0,0,2,TN,H0) - GO TO 700 -C -C Failure because IER was negative from PSOL. -C -690 MSG = 'DASPK-- AT T (=R1) AND STEPSIZE H (=R2)' - CALL XERRWD(MSG,40,690,0,0,0,0,2,TN,H) - MSG = 'DASPK-- IER WAS NEGATIVE FROM PSOL' - CALL XERRWD(MSG,35,691,0,0,0,0,0,0.0D0,0.0D0) - GO TO 700 -C -C Failure because the linear system solver could not converge. -C -695 MSG = 'DASPK-- AT T (=R1) AND STEPSIZE H (=R2) THE' - CALL XERRWD(MSG,44,695,0,0,0,0,2,TN,H) - MSG = 'DASPK-- LINEAR SYSTEM SOLVER COULD NOT CONVERGE.' - CALL XERRWD(MSG,50,696,0,0,0,0,0,0.0D0,0.0D0) - GO TO 700 -C -C -700 CONTINUE - INFO(1)=-1 - T=TN - RWORK(LTN)=TN - RWORK(LH)=H - RETURN -C -C----------------------------------------------------------------------- -C This block handles all error returns due to illegal input, -C as detected before calling DDSTP. -C First the error message routine is called. If this happens -C twice in succession, execution is terminated. -C----------------------------------------------------------------------- -C -701 MSG = 'DASPK-- ELEMENT (=I1) OF INFO VECTOR IS NOT VALID' - CALL XERRWD(MSG,50,1,0,1,ITEMP,0,0,0.0D0,0.0D0) - GO TO 750 -702 MSG = 'DASPK-- NEQ (=I1) .LE. 0' - CALL XERRWD(MSG,25,2,0,1,NEQ,0,0,0.0D0,0.0D0) - GO TO 750 -703 MSG = 'DASPK-- MAXORD (=I1) NOT IN RANGE' - CALL XERRWD(MSG,34,3,0,1,MXORD,0,0,0.0D0,0.0D0) - GO TO 750 -704 MSG='DASPK-- RWORK LENGTH NEEDED, LENRW (=I1), EXCEEDS LRW (=I2)' - CALL XERRWD(MSG,60,4,0,2,LENRW,LRW,0,0.0D0,0.0D0) - GO TO 750 -705 MSG='DASPK-- IWORK LENGTH NEEDED, LENIW (=I1), EXCEEDS LIW (=I2)' - CALL XERRWD(MSG,60,5,0,2,LENIW,LIW,0,0.0D0,0.0D0) - GO TO 750 -706 MSG = 'DASPK-- SOME ELEMENT OF RTOL IS .LT. 0' - CALL XERRWD(MSG,39,6,0,0,0,0,0,0.0D0,0.0D0) - GO TO 750 -707 MSG = 'DASPK-- SOME ELEMENT OF ATOL IS .LT. 0' - CALL XERRWD(MSG,39,7,0,0,0,0,0,0.0D0,0.0D0) - GO TO 750 -708 MSG = 'DASPK-- ALL ELEMENTS OF RTOL AND ATOL ARE ZERO' - CALL XERRWD(MSG,47,8,0,0,0,0,0,0.0D0,0.0D0) - GO TO 750 -709 MSG='DASPK-- INFO(4) = 1 AND TSTOP (=R1) BEHIND TOUT (=R2)' - CALL XERRWD(MSG,54,9,0,0,0,0,2,TSTOP,TOUT) - GO TO 750 -710 MSG = 'DASPK-- HMAX (=R1) .LT. 0.0' - CALL XERRWD(MSG,28,10,0,0,0,0,1,HMAX,0.0D0) - GO TO 750 -711 MSG = 'DASPK-- TOUT (=R1) BEHIND T (=R2)' - CALL XERRWD(MSG,34,11,0,0,0,0,2,TOUT,T) - GO TO 750 -712 MSG = 'DASPK-- INFO(8)=1 AND H0=0.0' - CALL XERRWD(MSG,29,12,0,0,0,0,0,0.0D0,0.0D0) - GO TO 750 -713 MSG = 'DASPK-- SOME ELEMENT OF WT IS .LE. 0.0' - CALL XERRWD(MSG,39,13,0,0,0,0,0,0.0D0,0.0D0) - GO TO 750 -714 MSG='DASPK-- TOUT (=R1) TOO CLOSE TO T (=R2) TO START INTEGRATION' - CALL XERRWD(MSG,60,14,0,0,0,0,2,TOUT,T) - GO TO 750 -715 MSG = 'DASPK-- INFO(4)=1 AND TSTOP (=R1) BEHIND T (=R2)' - CALL XERRWD(MSG,49,15,0,0,0,0,2,TSTOP,T) - GO TO 750 -717 MSG = 'DASPK-- ML (=I1) ILLEGAL. EITHER .LT. 0 OR .GT. NEQ' - CALL XERRWD(MSG,52,17,0,1,IWORK(LML),0,0,0.0D0,0.0D0) - GO TO 750 -718 MSG = 'DASPK-- MU (=I1) ILLEGAL. EITHER .LT. 0 OR .GT. NEQ' - CALL XERRWD(MSG,52,18,0,1,IWORK(LMU),0,0,0.0D0,0.0D0) - GO TO 750 -719 MSG = 'DASPK-- TOUT (=R1) IS EQUAL TO T (=R2)' - CALL XERRWD(MSG,39,19,0,0,0,0,2,TOUT,T) - GO TO 750 -720 MSG = 'DASPK-- MAXL (=I1) ILLEGAL. EITHER .LT. 1 OR .GT. NEQ' - CALL XERRWD(MSG,54,20,0,1,IWORK(LMAXL),0,0,0.0D0,0.0D0) - GO TO 750 -721 MSG = 'DASPK-- KMP (=I1) ILLEGAL. EITHER .LT. 1 OR .GT. MAXL' - CALL XERRWD(MSG,54,21,0,1,IWORK(LKMP),0,0,0.0D0,0.0D0) - GO TO 750 -722 MSG = 'DASPK-- NRMAX (=I1) ILLEGAL. .LT. 0' - CALL XERRWD(MSG,36,22,0,1,IWORK(LNRMAX),0,0,0.0D0,0.0D0) - GO TO 750 -723 MSG = 'DASPK-- EPLI (=R1) ILLEGAL. EITHER .LE. 0.D0 OR .GE. 1.D0' - CALL XERRWD(MSG,58,23,0,0,0,0,1,RWORK(LEPLI),0.0D0) - GO TO 750 -724 MSG = 'DASPK-- ILLEGAL IWORK VALUE FOR INFO(11) .NE. 0' - CALL XERRWD(MSG,48,24,0,0,0,0,0,0.0D0,0.0D0) - GO TO 750 -725 MSG = 'DASPK-- ONE OF THE INPUTS FOR INFO(17) = 1 IS ILLEGAL' - CALL XERRWD(MSG,54,25,0,0,0,0,0,0.0D0,0.0D0) - GO TO 750 -726 MSG = 'DASPK-- ILLEGAL IWORK VALUE FOR INFO(10) .NE. 0' - CALL XERRWD(MSG,48,26,0,0,0,0,0,0.0D0,0.0D0) - GO TO 750 -727 MSG = 'DASPK-- Y(I) AND IWORK(40+I) (I=I1) INCONSISTENT' - CALL XERRWD(MSG,49,27,0,1,IRET,0,0,0.0D0,0.0D0) - GO TO 750 -750 IF(INFO(1).EQ.-1) GO TO 760 - INFO(1)=-1 - IDID=-33 - RETURN -760 MSG = 'DASPK-- REPEATED OCCURRENCES OF ILLEGAL INPUT' - CALL XERRWD(MSG,46,701,0,0,0,0,0,0.0D0,0.0D0) -770 MSG = 'DASPK-- RUN TERMINATED. APPARENT INFINITE LOOP' - CALL XERRWD(MSG,47,702,1,0,0,0,0,0.0D0,0.0D0) - RETURN -C -C------END OF SUBROUTINE DDASPK----------------------------------------- - END - SUBROUTINE DDASIC (X, Y, YPRIME, NEQ, ICOPT, ID, RES, JAC, PSOL, - * H, TSCALE, WT, NIC, IDID, RPAR, IPAR, PHI, SAVR, DELTA, E, - * YIC, YPIC, PWK, WM, IWM, UROUND, EPLI, SQRTN, RSQRTN, - * EPCONI, STPTOL, JFLG, ICNFLG, ICNSTR, NLSIC) -C -C***BEGIN PROLOGUE DDASIC -C***REFER TO DDASPK -C***DATE WRITTEN 940628 (YYMMDD) -C***REVISION DATE 941206 (YYMMDD) -C***REVISION DATE 950714 (YYMMDD) -C***REVISION DATE 000628 TSCALE argument added. -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C DDASIC is a driver routine to compute consistent initial values -C for Y and YPRIME. There are two different options: -C Denoting the differential variables in Y by Y_d, and -C the algebraic variables by Y_a, the problem solved is either: -C 1. Given Y_d, calculate Y_a and Y_d', or -C 2. Given Y', calculate Y. -C In either case, initial values for the given components -C are input, and initial guesses for the unknown components -C must also be provided as input. -C -C The external routine NLSIC solves the resulting nonlinear system. -C -C The parameters represent -C -C X -- Independent variable. -C Y -- Solution vector at X. -C YPRIME -- Derivative of solution vector. -C NEQ -- Number of equations to be integrated. -C ICOPT -- Flag indicating initial condition option chosen. -C ICOPT = 1 for option 1 above. -C ICOPT = 2 for option 2. -C ID -- Array of dimension NEQ, which must be initialized -C if option 1 is chosen. -C ID(i) = +1 if Y_i is a differential variable, -C ID(i) = -1 if Y_i is an algebraic variable. -C RES -- External user-supplied subroutine to evaluate the -C residual. See RES description in DDASPK prologue. -C JAC -- External user-supplied routine to update Jacobian -C or preconditioner information in the nonlinear solver -C (optional). See JAC description in DDASPK prologue. -C PSOL -- External user-supplied routine to solve -C a linear system using preconditioning. -C See PSOL in DDASPK prologue. -C H -- Scaling factor in iteration matrix. DDASIC may -C reduce H to achieve convergence. -C TSCALE -- Scale factor in T, used for stopping tests if nonzero. -C WT -- Vector of weights for error criterion. -C NIC -- Input number of initial condition calculation call -C (= 1 or 2). -C IDID -- Completion code. See IDID in DDASPK prologue. -C RPAR,IPAR -- Real and integer parameter arrays that -C are used for communication between the -C calling program and external user routines. -C They are not altered by DNSK -C PHI -- Work space for DDASIC of length at least 2*NEQ. -C SAVR -- Work vector for DDASIC of length NEQ. -C DELTA -- Work vector for DDASIC of length NEQ. -C E -- Work vector for DDASIC of length NEQ. -C YIC,YPIC -- Work vectors for DDASIC, each of length NEQ. -C PWK -- Work vector for DDASIC of length NEQ. -C WM,IWM -- Real and integer arrays storing -C information required by the linear solver. -C EPCONI -- Test constant for Newton iteration convergence. -C ICNFLG -- Flag showing whether constraints on Y are to apply. -C ICNSTR -- Integer array of length NEQ with constraint types. -C -C The other parameters are for use internally by DDASIC. -C -C----------------------------------------------------------------------- -C***ROUTINES CALLED -C DCOPY, NLSIC -C -C***END PROLOGUE DDASIC -C -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION Y(*),YPRIME(*),ID(*),WT(*),PHI(NEQ,*) - DIMENSION SAVR(*),DELTA(*),E(*),YIC(*),YPIC(*),PWK(*) - DIMENSION WM(*),IWM(*), RPAR(*),IPAR(*), ICNSTR(*) - EXTERNAL RES, JAC, PSOL, NLSIC -C - PARAMETER (LCFN=15) - PARAMETER (LMXNH=34) -C -C The following parameters are data-loaded here: -C RHCUT = factor by which H is reduced on retry of Newton solve. -C RATEMX = maximum convergence rate for which Newton iteration -C is considered converging. -C - SAVE RHCUT, RATEMX - DATA RHCUT/0.1D0/, RATEMX/0.8D0/ -C -C -C----------------------------------------------------------------------- -C BLOCK 1. -C Initializations. -C JSKIP is a flag set to 1 when NIC = 2 and NH = 1, to signal that -C the initial call to the JAC routine is to be skipped then. -C Save Y and YPRIME in PHI. Initialize IDID, NH, and CJ. -C----------------------------------------------------------------------- -C - MXNH = IWM(LMXNH) - IDID = 1 - NH = 1 - JSKIP = 0 - IF (NIC .EQ. 2) JSKIP = 1 - CALL DCOPY (NEQ, Y, 1, PHI(1,1), 1) - CALL DCOPY (NEQ, YPRIME, 1, PHI(1,2), 1) -C - IF (ICOPT .EQ. 2) THEN - CJ = 0.0D0 - ELSE - CJ = 1.0D0/H - ENDIF -C -C----------------------------------------------------------------------- -C BLOCK 2 -C Call the nonlinear system solver to obtain -C consistent initial values for Y and YPRIME. -C----------------------------------------------------------------------- -C - 200 CONTINUE - CALL NLSIC(X,Y,YPRIME,NEQ,ICOPT,ID,RES,JAC,PSOL,H,TSCALE,WT, - * JSKIP,RPAR,IPAR,SAVR,DELTA,E,YIC,YPIC,PWK,WM,IWM,CJ,UROUND, - * EPLI,SQRTN,RSQRTN,EPCONI,RATEMX,STPTOL,JFLG,ICNFLG,ICNSTR, - * IERNLS) -C - IF (IERNLS .EQ. 0) RETURN -C -C----------------------------------------------------------------------- -C BLOCK 3 -C The nonlinear solver was unsuccessful. Increment NCFN. -C Return with IDID = -12 if either -C IERNLS = -1: error is considered unrecoverable, -C ICOPT = 2: we are doing initialization problem type 2, or -C NH = MXNH: the maximum number of H values has been tried. -C Otherwise (problem 1 with IERNLS .GE. 1), reduce H and try again. -C If IERNLS > 1, restore Y and YPRIME to their original values. -C----------------------------------------------------------------------- -C - IWM(LCFN) = IWM(LCFN) + 1 - JSKIP = 0 -C - IF (IERNLS .EQ. -1) GO TO 350 - IF (ICOPT .EQ. 2) GO TO 350 - IF (NH .EQ. MXNH) GO TO 350 -C - NH = NH + 1 - H = H*RHCUT - CJ = 1.0D0/H -C - IF (IERNLS .EQ. 1) GO TO 200 -C - CALL DCOPY (NEQ, PHI(1,1), 1, Y, 1) - CALL DCOPY (NEQ, PHI(1,2), 1, YPRIME, 1) - GO TO 200 -C - 350 IDID = -12 - RETURN -C -C------END OF SUBROUTINE DDASIC----------------------------------------- - END - SUBROUTINE DYYPNW (NEQ, Y, YPRIME, CJ, RL, P, ICOPT, ID, - * YNEW, YPNEW) -C -C***BEGIN PROLOGUE DYYPNW -C***REFER TO DLINSK -C***DATE WRITTEN 940830 (YYMMDD) -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C DYYPNW calculates the new (Y,YPRIME) pair needed in the -C linesearch algorithm based on the current lambda value. It is -C called by DLINSK and DLINSD. Based on the ICOPT and ID values, -C the corresponding entry in Y or YPRIME is updated. -C -C In addition to the parameters described in the calling programs, -C the parameters represent -C -C P -- Array of length NEQ that contains the current -C approximate Newton step. -C RL -- Scalar containing the current lambda value. -C YNEW -- Array of length NEQ containing the updated Y vector. -C YPNEW -- Array of length NEQ containing the updated YPRIME -C vector. -C----------------------------------------------------------------------- -C -C***ROUTINES CALLED (NONE) -C -C***END PROLOGUE DYYPNW -C -C - IMPLICIT DOUBLE PRECISION (A-H,O-Z) - DIMENSION Y(*), YPRIME(*), YNEW(*), YPNEW(*), ID(*), P(*) -C - IF (ICOPT .EQ. 1) THEN - DO 10 I=1,NEQ - IF(ID(I) .LT. 0) THEN - YNEW(I) = Y(I) - RL*P(I) - YPNEW(I) = YPRIME(I) - ELSE - YNEW(I) = Y(I) - YPNEW(I) = YPRIME(I) - RL*CJ*P(I) - ENDIF - 10 CONTINUE - ELSE - DO 20 I = 1,NEQ - YNEW(I) = Y(I) - RL*P(I) - YPNEW(I) = YPRIME(I) - 20 CONTINUE - ENDIF - RETURN -C----------------------- END OF SUBROUTINE DYYPNW ---------------------- - END - SUBROUTINE DDSTP(X,Y,YPRIME,NEQ,RES,JAC,PSOL,H,WT,VT, - * JSTART,IDID,RPAR,IPAR,PHI,SAVR,DELTA,E,WM,IWM, - * ALPHA,BETA,GAMMA,PSI,SIGMA,CJ,CJOLD,HOLD,S,HMIN,UROUND, - * EPLI,SQRTN,RSQRTN,EPCON,IPHASE,JCALC,JFLG,K,KOLD,NS,NONNEG, - * NTYPE,NLS) -C -C***BEGIN PROLOGUE DDSTP -C***REFER TO DDASPK -C***DATE WRITTEN 890101 (YYMMDD) -C***REVISION DATE 900926 (YYMMDD) -C***REVISION DATE 940909 (YYMMDD) (Reset PSI(1), PHI(*,2) at 690) -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C DDSTP solves a system of differential/algebraic equations of -C the form G(X,Y,YPRIME) = 0, for one step (normally from X to X+H). -C -C The methods used are modified divided difference, fixed leading -C coefficient forms of backward differentiation formulas. -C The code adjusts the stepsize and order to control the local error -C per step. -C -C -C The parameters represent -C X -- Independent variable. -C Y -- Solution vector at X. -C YPRIME -- Derivative of solution vector -C after successful step. -C NEQ -- Number of equations to be integrated. -C RES -- External user-supplied subroutine -C to evaluate the residual. See RES description -C in DDASPK prologue. -C JAC -- External user-supplied routine to update -C Jacobian or preconditioner information in the -C nonlinear solver. See JAC description in DDASPK -C prologue. -C PSOL -- External user-supplied routine to solve -C a linear system using preconditioning. -C (This is optional). See PSOL in DDASPK prologue. -C H -- Appropriate step size for next step. -C Normally determined by the code. -C WT -- Vector of weights for error criterion used in Newton test. -C VT -- Masked vector of weights used in error test. -C JSTART -- Integer variable set 0 for -C first step, 1 otherwise. -C IDID -- Completion code returned from the nonlinear solver. -C See IDID description in DDASPK prologue. -C RPAR,IPAR -- Real and integer parameter arrays that -C are used for communication between the -C calling program and external user routines. -C They are not altered by DNSK -C PHI -- Array of divided differences used by -C DDSTP. The length is NEQ*(K+1), where -C K is the maximum order. -C SAVR -- Work vector for DDSTP of length NEQ. -C DELTA,E -- Work vectors for DDSTP of length NEQ. -C WM,IWM -- Real and integer arrays storing -C information required by the linear solver. -C -C The other parameters are information -C which is needed internally by DDSTP to -C continue from step to step. -C -C----------------------------------------------------------------------- -C***ROUTINES CALLED -C NLS, DDWNRM, DDATRP -C -C***END PROLOGUE DDSTP -C -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION Y(*),YPRIME(*),WT(*),VT(*) - DIMENSION PHI(NEQ,*),SAVR(*),DELTA(*),E(*) - DIMENSION WM(*),IWM(*) - DIMENSION PSI(*),ALPHA(*),BETA(*),GAMMA(*),SIGMA(*) - DIMENSION RPAR(*),IPAR(*) - EXTERNAL RES, JAC, PSOL, NLS -C - PARAMETER (LMXORD=3) - PARAMETER (LNST=11, LETF=14, LCFN=15) -C -C -C----------------------------------------------------------------------- -C BLOCK 1. -C Initialize. On the first call, set -C the order to 1 and initialize -C other variables. -C----------------------------------------------------------------------- -C -C Initializations for all calls -C - XOLD=X - NCF=0 - NEF=0 - IF(JSTART .NE. 0) GO TO 120 -C -C If this is the first step, perform -C other initializations -C - K=1 - KOLD=0 - HOLD=0.0D0 - PSI(1)=H - CJ = 1.D0/H - IPHASE = 0 - NS=0 -120 CONTINUE -C -C -C -C -C -C----------------------------------------------------------------------- -C BLOCK 2 -C Compute coefficients of formulas for -C this step. -C----------------------------------------------------------------------- -200 CONTINUE - KP1=K+1 - KP2=K+2 - KM1=K-1 - IF(H.NE.HOLD.OR.K .NE. KOLD) NS = 0 - NS=MIN0(NS+1,KOLD+2) - NSP1=NS+1 - IF(KP1 .LT. NS)GO TO 230 -C - BETA(1)=1.0D0 - ALPHA(1)=1.0D0 - TEMP1=H - GAMMA(1)=0.0D0 - SIGMA(1)=1.0D0 - DO 210 I=2,KP1 - TEMP2=PSI(I-1) - PSI(I-1)=TEMP1 - BETA(I)=BETA(I-1)*PSI(I-1)/TEMP2 - TEMP1=TEMP2+H - ALPHA(I)=H/TEMP1 - SIGMA(I)=(I-1)*SIGMA(I-1)*ALPHA(I) - GAMMA(I)=GAMMA(I-1)+ALPHA(I-1)/H -210 CONTINUE - PSI(KP1)=TEMP1 -230 CONTINUE -C -C Compute ALPHAS, ALPHA0 -C - ALPHAS = 0.0D0 - ALPHA0 = 0.0D0 - DO 240 I = 1,K - ALPHAS = ALPHAS - 1.0D0/I - ALPHA0 = ALPHA0 - ALPHA(I) -240 CONTINUE -C -C Compute leading coefficient CJ -C - CJLAST = CJ - CJ = -ALPHAS/H -C -C Compute variable stepsize error coefficient CK -C - CK = ABS(ALPHA(KP1) + ALPHAS - ALPHA0) - CK = MAX(CK,ALPHA(KP1)) -C -C Change PHI to PHI STAR -C - IF(KP1 .LT. NSP1) GO TO 280 - DO 270 J=NSP1,KP1 - DO 260 I=1,NEQ -260 PHI(I,J)=BETA(J)*PHI(I,J) -270 CONTINUE -280 CONTINUE -C -C Update time -C - X=X+H -C -C Initialize IDID to 1 -C - IDID = 1 -C -C -C -C -C -C----------------------------------------------------------------------- -C BLOCK 3 -C Call the nonlinear system solver to obtain the solution and -C derivative. -C----------------------------------------------------------------------- -C - CALL NLS(X,Y,YPRIME,NEQ, - * RES,JAC,PSOL,H,WT,JSTART,IDID,RPAR,IPAR,PHI,GAMMA, - * SAVR,DELTA,E,WM,IWM,CJ,CJOLD,CJLAST,S, - * UROUND,EPLI,SQRTN,RSQRTN,EPCON,JCALC,JFLG,KP1, - * NONNEG,NTYPE,IERNLS) -C - IF(IERNLS .NE. 0)GO TO 600 -C -C -C -C -C -C----------------------------------------------------------------------- -C BLOCK 4 -C Estimate the errors at orders K,K-1,K-2 -C as if constant stepsize was used. Estimate -C the local error at order K and test -C whether the current step is successful. -C----------------------------------------------------------------------- -C -C Estimate errors at orders K,K-1,K-2 -C - ENORM = DDWNRM(NEQ,E,VT,RPAR,IPAR) - ERK = SIGMA(K+1)*ENORM - TERK = (K+1)*ERK - EST = ERK - KNEW=K - IF(K .EQ. 1)GO TO 430 - DO 405 I = 1,NEQ -405 DELTA(I) = PHI(I,KP1) + E(I) - ERKM1=SIGMA(K)*DDWNRM(NEQ,DELTA,VT,RPAR,IPAR) - TERKM1 = K*ERKM1 - IF(K .GT. 2)GO TO 410 - IF(TERKM1 .LE. 0.5*TERK)GO TO 420 - GO TO 430 -410 CONTINUE - DO 415 I = 1,NEQ -415 DELTA(I) = PHI(I,K) + DELTA(I) - ERKM2=SIGMA(K-1)*DDWNRM(NEQ,DELTA,VT,RPAR,IPAR) - TERKM2 = (K-1)*ERKM2 - IF(MAX(TERKM1,TERKM2).GT.TERK)GO TO 430 -C -C Lower the order -C -420 CONTINUE - KNEW=K-1 - EST = ERKM1 -C -C -C Calculate the local error for the current step -C to see if the step was successful -C -430 CONTINUE - ERR = CK * ENORM - IF(ERR .GT. 1.0D0)GO TO 600 -C -C -C -C -C -C----------------------------------------------------------------------- -C BLOCK 5 -C The step is successful. Determine -C the best order and stepsize for -C the next step. Update the differences -C for the next step. -C----------------------------------------------------------------------- - IDID=1 - IWM(LNST)=IWM(LNST)+1 - KDIFF=K-KOLD - KOLD=K - HOLD=H -C -C -C Estimate the error at order K+1 unless -C already decided to lower order, or -C already using maximum order, or -C stepsize not constant, or -C order raised in previous step -C - IF(KNEW.EQ.KM1.OR.K.EQ.IWM(LMXORD))IPHASE=1 - IF(IPHASE .EQ. 0)GO TO 545 - IF(KNEW.EQ.KM1)GO TO 540 - IF(K.EQ.IWM(LMXORD)) GO TO 550 - IF(KP1.GE.NS.OR.KDIFF.EQ.1)GO TO 550 - DO 510 I=1,NEQ -510 DELTA(I)=E(I)-PHI(I,KP2) - ERKP1 = (1.0D0/(K+2))*DDWNRM(NEQ,DELTA,VT,RPAR,IPAR) - TERKP1 = (K+2)*ERKP1 - IF(K.GT.1)GO TO 520 - IF(TERKP1.GE.0.5D0*TERK)GO TO 550 - GO TO 530 -520 IF(TERKM1.LE.MIN(TERK,TERKP1))GO TO 540 - IF(TERKP1.GE.TERK.OR.K.EQ.IWM(LMXORD))GO TO 550 -C -C Raise order -C -530 K=KP1 - EST = ERKP1 - GO TO 550 -C -C Lower order -C -540 K=KM1 - EST = ERKM1 - GO TO 550 -C -C If IPHASE = 0, increase order by one and multiply stepsize by -C factor two -C -545 K = KP1 - HNEW = H*2.0D0 - H = HNEW - GO TO 575 -C -C -C Determine the appropriate stepsize for -C the next step. -C -550 HNEW=H - TEMP2=K+1 - R=(2.0D0*EST+0.0001D0)**(-1.0D0/TEMP2) - IF(R .LT. 2.0D0) GO TO 555 - HNEW = 2.0D0*H - GO TO 560 -555 IF(R .GT. 1.0D0) GO TO 560 - R = MAX(0.5D0,MIN(0.9D0,R)) - HNEW = H*R -560 H=HNEW -C -C -C Update differences for next step -C -575 CONTINUE - IF(KOLD.EQ.IWM(LMXORD))GO TO 585 - DO 580 I=1,NEQ -580 PHI(I,KP2)=E(I) -585 CONTINUE - DO 590 I=1,NEQ -590 PHI(I,KP1)=PHI(I,KP1)+E(I) - DO 595 J1=2,KP1 - J=KP1-J1+1 - DO 595 I=1,NEQ -595 PHI(I,J)=PHI(I,J)+PHI(I,J+1) - JSTART = 1 - RETURN -C -C -C -C -C -C----------------------------------------------------------------------- -C BLOCK 6 -C The step is unsuccessful. Restore X,PSI,PHI -C Determine appropriate stepsize for -C continuing the integration, or exit with -C an error flag if there have been many -C failures. -C----------------------------------------------------------------------- -600 IPHASE = 1 -C -C Restore X,PHI,PSI -C - X=XOLD - IF(KP1.LT.NSP1)GO TO 630 - DO 620 J=NSP1,KP1 - TEMP1=1.0D0/BETA(J) - DO 610 I=1,NEQ -610 PHI(I,J)=TEMP1*PHI(I,J) -620 CONTINUE -630 CONTINUE - DO 640 I=2,KP1 -640 PSI(I-1)=PSI(I)-H -C -C -C Test whether failure is due to nonlinear solver -C or error test -C - IF(IERNLS .EQ. 0)GO TO 660 - IWM(LCFN)=IWM(LCFN)+1 -C -C -C The nonlinear solver failed to converge. -C Determine the cause of the failure and take appropriate action. -C If IERNLS .LT. 0, then return. Otherwise, reduce the stepsize -C and try again, unless too many failures have occurred. -C - IF (IERNLS .LT. 0) GO TO 675 - NCF = NCF + 1 - R = 0.25D0 - H = H*R - IF (NCF .LT. 10 .AND. ABS(H) .GE. HMIN) GO TO 690 - IF (IDID .EQ. 1) IDID = -7 - IF (NEF .GE. 3) IDID = -9 - GO TO 675 -C -C -C The nonlinear solver converged, and the cause -C of the failure was the error estimate -C exceeding the tolerance. -C -660 NEF=NEF+1 - IWM(LETF)=IWM(LETF)+1 - IF (NEF .GT. 1) GO TO 665 -C -C On first error test failure, keep current order or lower -C order by one. Compute new stepsize based on differences -C of the solution. -C - K = KNEW - TEMP2 = K + 1 - R = 0.90D0*(2.0D0*EST+0.0001D0)**(-1.0D0/TEMP2) - R = MAX(0.25D0,MIN(0.9D0,R)) - H = H*R - IF (ABS(H) .GE. HMIN) GO TO 690 - IDID = -6 - GO TO 675 -C -C On second error test failure, use the current order or -C decrease order by one. Reduce the stepsize by a factor of -C one quarter. -C -665 IF (NEF .GT. 2) GO TO 670 - K = KNEW - R = 0.25D0 - H = R*H - IF (ABS(H) .GE. HMIN) GO TO 690 - IDID = -6 - GO TO 675 -C -C On third and subsequent error test failures, set the order to -C one, and reduce the stepsize by a factor of one quarter. -C -670 K = 1 - R = 0.25D0 - H = R*H - IF (ABS(H) .GE. HMIN) GO TO 690 - IDID = -6 - GO TO 675 -C -C -C -C -C For all crashes, restore Y to its last value, -C interpolate to find YPRIME at last X, and return. -C -C Before returning, verify that the user has not set -C IDID to a nonnegative value. If the user has set IDID -C to a nonnegative value, then reset IDID to be -7, indicating -C a failure in the nonlinear system solver. -C -675 CONTINUE - CALL DDATRP(X,X,Y,YPRIME,NEQ,K,PHI,PSI) - JSTART = 1 - IF (IDID .GE. 0) IDID = -7 - RETURN -C -C -C Go back and try this step again. -C If this is the first step, reset PSI(1) and rescale PHI(*,2). -C -690 IF (KOLD .EQ. 0) THEN - PSI(1) = H - DO 695 I = 1,NEQ -695 PHI(I,2) = R*PHI(I,2) - ENDIF - GO TO 200 -C -C------END OF SUBROUTINE DDSTP------------------------------------------ - END - SUBROUTINE DCNSTR (NEQ, Y, YNEW, ICNSTR, TAU, RLX, IRET, IVAR) -C -C***BEGIN PROLOGUE DCNSTR -C***DATE WRITTEN 950808 (YYMMDD) -C***REVISION DATE 950814 (YYMMDD) -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C This subroutine checks for constraint violations in the proposed -C new approximate solution YNEW. -C If a constraint violation occurs, then a new step length, TAU, -C is calculated, and this value is to be given to the linesearch routine -C to calculate a new approximate solution YNEW. -C -C On entry: -C -C NEQ -- size of the nonlinear system, and the length of arrays -C Y, YNEW and ICNSTR. -C -C Y -- real array containing the current approximate y. -C -C YNEW -- real array containing the new approximate y. -C -C ICNSTR -- INTEGER array of length NEQ containing flags indicating -C which entries in YNEW are to be constrained. -C if ICNSTR(I) = 2, then YNEW(I) must be .GT. 0, -C if ICNSTR(I) = 1, then YNEW(I) must be .GE. 0, -C if ICNSTR(I) = -1, then YNEW(I) must be .LE. 0, while -C if ICNSTR(I) = -2, then YNEW(I) must be .LT. 0, while -C if ICNSTR(I) = 0, then YNEW(I) is not constrained. -C -C RLX -- real scalar restricting update, if ICNSTR(I) = 2 or -2, -C to ABS( (YNEW-Y)/Y ) < FAC2*RLX in component I. -C -C TAU -- the current size of the step length for the linesearch. -C -C On return -C -C TAU -- the adjusted size of the step length if a constraint -C violation occurred (otherwise, it is unchanged). it is -C the step length to give to the linesearch routine. -C -C IRET -- output flag. -C IRET=0 means that YNEW satisfied all constraints. -C IRET=1 means that YNEW failed to satisfy all the -C constraints, and a new linesearch step -C must be computed. -C -C IVAR -- index of variable causing constraint to be violated. -C -C----------------------------------------------------------------------- - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION Y(NEQ), YNEW(NEQ), ICNSTR(NEQ) - SAVE FAC, FAC2, ZERO - DATA FAC /0.6D0/, FAC2 /0.9D0/, ZERO/0.0D0/ -C----------------------------------------------------------------------- -C Check constraints for proposed new step YNEW. If a constraint has -C been violated, then calculate a new step length, TAU, to be -C used in the linesearch routine. -C----------------------------------------------------------------------- - IRET = 0 - RDYMX = ZERO - IVAR = 0 - DO 100 I = 1,NEQ -C - IF (ICNSTR(I) .EQ. 2) THEN - RDY = ABS( (YNEW(I)-Y(I))/Y(I) ) - IF (RDY .GT. RDYMX) THEN - RDYMX = RDY - IVAR = I - ENDIF - IF (YNEW(I) .LE. ZERO) THEN - TAU = FAC*TAU - IVAR = I - IRET = 1 - RETURN - ENDIF -C - ELSEIF (ICNSTR(I) .EQ. 1) THEN - IF (YNEW(I) .LT. ZERO) THEN - TAU = FAC*TAU - IVAR = I - IRET = 1 - RETURN - ENDIF -C - ELSEIF (ICNSTR(I) .EQ. -1) THEN - IF (YNEW(I) .GT. ZERO) THEN - TAU = FAC*TAU - IVAR = I - IRET = 1 - RETURN - ENDIF -C - ELSEIF (ICNSTR(I) .EQ. -2) THEN - RDY = ABS( (YNEW(I)-Y(I))/Y(I) ) - IF (RDY .GT. RDYMX) THEN - RDYMX = RDY - IVAR = I - ENDIF - IF (YNEW(I) .GE. ZERO) THEN - TAU = FAC*TAU - IVAR = I - IRET = 1 - RETURN - ENDIF -C - ENDIF - 100 CONTINUE - - IF(RDYMX .GE. RLX) THEN - TAU = FAC2*TAU*RLX/RDYMX - IRET = 1 - ENDIF -C - RETURN -C----------------------- END OF SUBROUTINE DCNSTR ---------------------- - END - SUBROUTINE DCNST0 (NEQ, Y, ICNSTR, IRET) -C -C***BEGIN PROLOGUE DCNST0 -C***DATE WRITTEN 950808 (YYMMDD) -C***REVISION DATE 950808 (YYMMDD) -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C This subroutine checks for constraint violations in the initial -C approximate solution u. -C -C On entry -C -C NEQ -- size of the nonlinear system, and the length of arrays -C Y and ICNSTR. -C -C Y -- real array containing the initial approximate root. -C -C ICNSTR -- INTEGER array of length NEQ containing flags indicating -C which entries in Y are to be constrained. -C if ICNSTR(I) = 2, then Y(I) must be .GT. 0, -C if ICNSTR(I) = 1, then Y(I) must be .GE. 0, -C if ICNSTR(I) = -1, then Y(I) must be .LE. 0, while -C if ICNSTR(I) = -2, then Y(I) must be .LT. 0, while -C if ICNSTR(I) = 0, then Y(I) is not constrained. -C -C On return -C -C IRET -- output flag. -C IRET=0 means that u satisfied all constraints. -C IRET.NE.0 means that Y(IRET) failed to satisfy its -C constraint. -C -C----------------------------------------------------------------------- - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION Y(NEQ), ICNSTR(NEQ) - SAVE ZERO - DATA ZERO/0.D0/ -C----------------------------------------------------------------------- -C Check constraints for initial Y. If a constraint has been violated, -C set IRET = I to signal an error return to calling routine. -C----------------------------------------------------------------------- - IRET = 0 - DO 100 I = 1,NEQ - IF (ICNSTR(I) .EQ. 2) THEN - IF (Y(I) .LE. ZERO) THEN - IRET = I - RETURN - ENDIF - ELSEIF (ICNSTR(I) .EQ. 1) THEN - IF (Y(I) .LT. ZERO) THEN - IRET = I - RETURN - ENDIF - ELSEIF (ICNSTR(I) .EQ. -1) THEN - IF (Y(I) .GT. ZERO) THEN - IRET = I - RETURN - ENDIF - ELSEIF (ICNSTR(I) .EQ. -2) THEN - IF (Y(I) .GE. ZERO) THEN - IRET = I - RETURN - ENDIF - ENDIF - 100 CONTINUE - RETURN -C----------------------- END OF SUBROUTINE DCNST0 ---------------------- - END - SUBROUTINE DDAWTS(NEQ,IWT,RTOL,ATOL,Y,WT,RPAR,IPAR) -C -C***BEGIN PROLOGUE DDAWTS -C***REFER TO DDASPK -C***ROUTINES CALLED (NONE) -C***DATE WRITTEN 890101 (YYMMDD) -C***REVISION DATE 900926 (YYMMDD) -C***END PROLOGUE DDAWTS -C----------------------------------------------------------------------- -C This subroutine sets the error weight vector, -C WT, according to WT(I)=RTOL(I)*ABS(Y(I))+ATOL(I), -C I = 1 to NEQ. -C RTOL and ATOL are scalars if IWT = 0, -C and vectors if IWT = 1. -C----------------------------------------------------------------------- -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION RTOL(*),ATOL(*),Y(*),WT(*) - DIMENSION RPAR(*),IPAR(*) - RTOLI=RTOL(1) - ATOLI=ATOL(1) - DO 20 I=1,NEQ - IF (IWT .EQ.0) GO TO 10 - RTOLI=RTOL(I) - ATOLI=ATOL(I) -10 WT(I)=RTOLI*ABS(Y(I))+ATOLI -20 CONTINUE - RETURN -C -C------END OF SUBROUTINE DDAWTS----------------------------------------- - END - SUBROUTINE DINVWT(NEQ,WT,IER) -C -C***BEGIN PROLOGUE DINVWT -C***REFER TO DDASPK -C***ROUTINES CALLED (NONE) -C***DATE WRITTEN 950125 (YYMMDD) -C***END PROLOGUE DINVWT -C----------------------------------------------------------------------- -C This subroutine checks the error weight vector WT, of length NEQ, -C for components that are .le. 0, and if none are found, it -C inverts the WT(I) in place. This replaces division operations -C with multiplications in all norm evaluations. -C IER is returned as 0 if all WT(I) were found positive, -C and the first I with WT(I) .le. 0.0 otherwise. -C----------------------------------------------------------------------- -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION WT(*) -C - DO 10 I = 1,NEQ - IF (WT(I) .LE. 0.0D0) GO TO 30 - 10 CONTINUE - DO 20 I = 1,NEQ - 20 WT(I) = 1.0D0/WT(I) - IER = 0 - RETURN -C - 30 IER = I - RETURN -C -C------END OF SUBROUTINE DINVWT----------------------------------------- - END - SUBROUTINE DDATRP(X,XOUT,YOUT,YPOUT,NEQ,KOLD,PHI,PSI) -C -C***BEGIN PROLOGUE DDATRP -C***REFER TO DDASPK -C***ROUTINES CALLED (NONE) -C***DATE WRITTEN 890101 (YYMMDD) -C***REVISION DATE 900926 (YYMMDD) -C***END PROLOGUE DDATRP -C -C----------------------------------------------------------------------- -C The methods in subroutine DDSTP use polynomials -C to approximate the solution. DDATRP approximates the -C solution and its derivative at time XOUT by evaluating -C one of these polynomials, and its derivative, there. -C Information defining this polynomial is passed from -C DDSTP, so DDATRP cannot be used alone. -C -C The parameters are -C -C X The current time in the integration. -C XOUT The time at which the solution is desired. -C YOUT The interpolated approximation to Y at XOUT. -C (This is output.) -C YPOUT The interpolated approximation to YPRIME at XOUT. -C (This is output.) -C NEQ Number of equations. -C KOLD Order used on last successful step. -C PHI Array of scaled divided differences of Y. -C PSI Array of past stepsize history. -C----------------------------------------------------------------------- -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION YOUT(*),YPOUT(*) - DIMENSION PHI(NEQ,*),PSI(*) - KOLDP1=KOLD+1 - TEMP1=XOUT-X - DO 10 I=1,NEQ - YOUT(I)=PHI(I,1) -10 YPOUT(I)=0.0D0 - C=1.0D0 - D=0.0D0 - GAMMA=TEMP1/PSI(1) - DO 30 J=2,KOLDP1 - D=D*GAMMA+C/PSI(J-1) - C=C*GAMMA - GAMMA=(TEMP1+PSI(J-1))/PSI(J) - DO 20 I=1,NEQ - YOUT(I)=YOUT(I)+C*PHI(I,J) -20 YPOUT(I)=YPOUT(I)+D*PHI(I,J) -30 CONTINUE - RETURN -C -C------END OF SUBROUTINE DDATRP----------------------------------------- - END - DOUBLE PRECISION FUNCTION DDWNRM(NEQ,V,RWT,RPAR,IPAR) -C -C***BEGIN PROLOGUE DDWNRM -C***ROUTINES CALLED (NONE) -C***DATE WRITTEN 890101 (YYMMDD) -C***REVISION DATE 900926 (YYMMDD) -C***END PROLOGUE DDWNRM -C----------------------------------------------------------------------- -C This function routine computes the weighted -C root-mean-square norm of the vector of length -C NEQ contained in the array V, with reciprocal weights -C contained in the array RWT of length NEQ. -C DDWNRM=SQRT((1/NEQ)*SUM(V(I)*RWT(I))**2) -C----------------------------------------------------------------------- -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION V(*),RWT(*) - DIMENSION RPAR(*),IPAR(*) - DDWNRM = 0.0D0 - VMAX = 0.0D0 - DO 10 I = 1,NEQ - IF(ABS(V(I)*RWT(I)) .GT. VMAX) VMAX = ABS(V(I)*RWT(I)) -10 CONTINUE - IF(VMAX .LE. 0.0D0) GO TO 30 - SUM = 0.0D0 - DO 20 I = 1,NEQ -20 SUM = SUM + ((V(I)*RWT(I))/VMAX)**2 - DDWNRM = VMAX*SQRT(SUM/NEQ) -30 CONTINUE - RETURN -C -C------END OF FUNCTION DDWNRM------------------------------------------- - END - SUBROUTINE DDASID(X,Y,YPRIME,NEQ,ICOPT,ID,RES,JACD,PDUM,H,TSCALE, - * WT,JSDUM,RPAR,IPAR,DUMSVR,DELTA,R,YIC,YPIC,DUMPWK,WM,IWM,CJ, - * UROUND,DUME,DUMS,DUMR,EPCON,RATEMX,STPTOL,JFDUM, - * ICNFLG,ICNSTR,IERNLS) -C -C***BEGIN PROLOGUE DDASID -C***REFER TO DDASPK -C***DATE WRITTEN 940701 (YYMMDD) -C***REVISION DATE 950808 (YYMMDD) -C***REVISION DATE 951110 Removed unreachable block 390. -C***REVISION DATE 000628 TSCALE argument added. -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C -C DDASID solves a nonlinear system of algebraic equations of the -C form G(X,Y,YPRIME) = 0 for the unknown parts of Y and YPRIME in -C the initial conditions. -C -C The method used is a modified Newton scheme. -C -C The parameters represent -C -C X -- Independent variable. -C Y -- Solution vector. -C YPRIME -- Derivative of solution vector. -C NEQ -- Number of unknowns. -C ICOPT -- Initial condition option chosen (1 or 2). -C ID -- Array of dimension NEQ, which must be initialized -C if ICOPT = 1. See DDASIC. -C RES -- External user-supplied subroutine to evaluate the -C residual. See RES description in DDASPK prologue. -C JACD -- External user-supplied routine to evaluate the -C Jacobian. See JAC description for the case -C INFO(12) = 0 in the DDASPK prologue. -C PDUM -- Dummy argument. -C H -- Scaling factor for this initial condition calc. -C TSCALE -- Scale factor in T, used for stopping tests if nonzero. -C WT -- Vector of weights for error criterion. -C JSDUM -- Dummy argument. -C RPAR,IPAR -- Real and integer arrays used for communication -C between the calling program and external user -C routines. They are not altered within DASPK. -C DUMSVR -- Dummy argument. -C DELTA -- Work vector for NLS of length NEQ. -C R -- Work vector for NLS of length NEQ. -C YIC,YPIC -- Work vectors for NLS, each of length NEQ. -C DUMPWK -- Dummy argument. -C WM,IWM -- Real and integer arrays storing matrix information -C such as the matrix of partial derivatives, -C permutation vector, and various other information. -C CJ -- Matrix parameter = 1/H (ICOPT = 1) or 0 (ICOPT = 2). -C UROUND -- Unit roundoff. -C DUME -- Dummy argument. -C DUMS -- Dummy argument. -C DUMR -- Dummy argument. -C EPCON -- Tolerance to test for convergence of the Newton -C iteration. -C RATEMX -- Maximum convergence rate for which Newton iteration -C is considered converging. -C JFDUM -- Dummy argument. -C STPTOL -- Tolerance used in calculating the minimum lambda -C value allowed. -C ICNFLG -- Integer scalar. If nonzero, then constraint -C violations in the proposed new approximate solution -C will be checked for, and the maximum step length -C will be adjusted accordingly. -C ICNSTR -- Integer array of length NEQ containing flags for -C checking constraints. -C IERNLS -- Error flag for nonlinear solver. -C 0 ==> nonlinear solver converged. -C 1,2 ==> recoverable error inside nonlinear solver. -C 1 => retry with current Y, YPRIME -C 2 => retry with original Y, YPRIME -C -1 ==> unrecoverable error in nonlinear solver. -C -C All variables with "DUM" in their names are dummy variables -C which are not used in this routine. -C -C----------------------------------------------------------------------- -C -C***ROUTINES CALLED -C RES, DMATD, DNSID -C -C***END PROLOGUE DDASID -C -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION Y(*),YPRIME(*),ID(*),WT(*),ICNSTR(*) - DIMENSION DELTA(*),R(*),YIC(*),YPIC(*) - DIMENSION WM(*),IWM(*), RPAR(*),IPAR(*) - EXTERNAL RES, JACD -C - PARAMETER (LNRE=12, LNJE=13, LMXNIT=32, LMXNJ=33) -C -C -C Perform initializations. -C - MXNIT = IWM(LMXNIT) - MXNJ = IWM(LMXNJ) - IERNLS = 0 - NJ = 0 -C -C Call RES to initialize DELTA. -C - IRES = 0 - IWM(LNRE) = IWM(LNRE) + 1 - CALL RES(X,Y,YPRIME,CJ,DELTA,IRES,RPAR,IPAR) - IF (IRES .LT. 0) GO TO 370 -C -C Looping point for updating the Jacobian. -C -300 CONTINUE -C -C Initialize all error flags to zero. -C - IERJ = 0 - IRES = 0 - IERNEW = 0 -C -C Reevaluate the iteration matrix, J = dG/dY + CJ*dG/dYPRIME, -C where G(X,Y,YPRIME) = 0. -C - NJ = NJ + 1 - IWM(LNJE)=IWM(LNJE)+1 - CALL DMATD(NEQ,X,Y,YPRIME,DELTA,CJ,H,IERJ,WT,R, - * WM,IWM,RES,IRES,UROUND,JACD,RPAR,IPAR) - IF (IRES .LT. 0 .OR. IERJ .NE. 0) GO TO 370 -C -C Call the nonlinear Newton solver for up to MXNIT iterations. -C - CALL DNSID(X,Y,YPRIME,NEQ,ICOPT,ID,RES,WT,RPAR,IPAR,DELTA,R, - * YIC,YPIC,WM,IWM,CJ,TSCALE,EPCON,RATEMX,MXNIT,STPTOL, - * ICNFLG,ICNSTR,IERNEW) -C - IF (IERNEW .EQ. 1 .AND. NJ .LT. MXNJ) THEN -C -C MXNIT iterations were done, the convergence rate is < 1, -C and the number of Jacobian evaluations is less than MXNJ. -C Call RES, reevaluate the Jacobian, and try again. -C - IWM(LNRE)=IWM(LNRE)+1 - CALL RES(X,Y,YPRIME,CJ,DELTA,IRES,RPAR,IPAR) - IF (IRES .LT. 0) GO TO 370 - GO TO 300 - ENDIF -C - IF (IERNEW .NE. 0) GO TO 380 - - RETURN -C -C -C Unsuccessful exits from nonlinear solver. -C Compute IERNLS accordingly. -C -370 IERNLS = 2 - IF (IRES .LE. -2) IERNLS = -1 - RETURN -C -380 IERNLS = MIN(IERNEW,2) - RETURN -C -C------END OF SUBROUTINE DDASID----------------------------------------- - END - SUBROUTINE DNSID(X,Y,YPRIME,NEQ,ICOPT,ID,RES,WT,RPAR,IPAR, - * DELTA,R,YIC,YPIC,WM,IWM,CJ,TSCALE,EPCON,RATEMX,MAXIT,STPTOL, - * ICNFLG,ICNSTR,IERNEW) -C -C***BEGIN PROLOGUE DNSID -C***REFER TO DDASPK -C***DATE WRITTEN 940701 (YYMMDD) -C***REVISION DATE 950713 (YYMMDD) -C***REVISION DATE 000628 TSCALE argument added. -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C DNSID solves a nonlinear system of algebraic equations of the -C form G(X,Y,YPRIME) = 0 for the unknown parts of Y and YPRIME -C in the initial conditions. -C -C The method used is a modified Newton scheme. -C -C The parameters represent -C -C X -- Independent variable. -C Y -- Solution vector. -C YPRIME -- Derivative of solution vector. -C NEQ -- Number of unknowns. -C ICOPT -- Initial condition option chosen (1 or 2). -C ID -- Array of dimension NEQ, which must be initialized -C if ICOPT = 1. See DDASIC. -C RES -- External user-supplied subroutine to evaluate the -C residual. See RES description in DDASPK prologue. -C WT -- Vector of weights for error criterion. -C RPAR,IPAR -- Real and integer arrays used for communication -C between the calling program and external user -C routines. They are not altered within DASPK. -C DELTA -- Residual vector on entry, and work vector of -C length NEQ for DNSID. -C WM,IWM -- Real and integer arrays storing matrix information -C such as the matrix of partial derivatives, -C permutation vector, and various other information. -C CJ -- Matrix parameter = 1/H (ICOPT = 1) or 0 (ICOPT = 2). -C TSCALE -- Scale factor in T, used for stopping tests if nonzero. -C R -- Array of length NEQ used as workspace by the -C linesearch routine DLINSD. -C YIC,YPIC -- Work vectors for DLINSD, each of length NEQ. -C EPCON -- Tolerance to test for convergence of the Newton -C iteration. -C RATEMX -- Maximum convergence rate for which Newton iteration -C is considered converging. -C MAXIT -- Maximum allowed number of Newton iterations. -C STPTOL -- Tolerance used in calculating the minimum lambda -C value allowed. -C ICNFLG -- Integer scalar. If nonzero, then constraint -C violations in the proposed new approximate solution -C will be checked for, and the maximum step length -C will be adjusted accordingly. -C ICNSTR -- Integer array of length NEQ containing flags for -C checking constraints. -C IERNEW -- Error flag for Newton iteration. -C 0 ==> Newton iteration converged. -C 1 ==> failed to converge, but RATE .le. RATEMX. -C 2 ==> failed to converge, RATE .gt. RATEMX. -C 3 ==> other recoverable error (IRES = -1, or -C linesearch failed). -C -1 ==> unrecoverable error (IRES = -2). -C -C----------------------------------------------------------------------- -C -C***ROUTINES CALLED -C DSLVD, DDWNRM, DLINSD, DCOPY -C -C***END PROLOGUE DNSID -C -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION Y(*),YPRIME(*),WT(*),R(*) - DIMENSION ID(*),DELTA(*), YIC(*), YPIC(*) - DIMENSION WM(*),IWM(*), RPAR(*),IPAR(*) - DIMENSION ICNSTR(*) - EXTERNAL RES -C - PARAMETER (LNNI=19, LLSOFF=35) -C -C -C Initializations. M is the Newton iteration counter. -C - LSOFF = IWM(LLSOFF) - M = 0 - RATE = 1.0D0 - RLX = 0.4D0 -C -C Compute a new step vector DELTA by back-substitution. -C - CALL DSLVD (NEQ, DELTA, WM, IWM) -C -C Get norm of DELTA. Return now if norm(DELTA) .le. EPCON. -C - DELNRM = DDWNRM(NEQ,DELTA,WT,RPAR,IPAR) - FNRM = DELNRM - IF (TSCALE .GT. 0.0D0) FNRM = FNRM*TSCALE*ABS(CJ) - IF (FNRM .LE. EPCON) RETURN -C -C Newton iteration loop. -C - 300 CONTINUE - IWM(LNNI) = IWM(LNNI) + 1 -C -C Call linesearch routine for global strategy and set RATE -C - OLDFNM = FNRM -C - CALL DLINSD (NEQ, Y, X, YPRIME, CJ, TSCALE, DELTA, DELNRM, WT, - * LSOFF, STPTOL, IRET, RES, IRES, WM, IWM, FNRM, ICOPT, - * ID, R, YIC, YPIC, ICNFLG, ICNSTR, RLX, RPAR, IPAR) -C - RATE = FNRM/OLDFNM -C -C Check for error condition from linesearch. - IF (IRET .NE. 0) GO TO 390 -C -C Test for convergence of the iteration, and return or loop. -C - IF (FNRM .LE. EPCON) RETURN -C -C The iteration has not yet converged. Update M. -C Test whether the maximum number of iterations have been tried. -C - M = M + 1 - IF (M .GE. MAXIT) GO TO 380 -C -C Copy the residual to DELTA and its norm to DELNRM, and loop for -C another iteration. -C - CALL DCOPY (NEQ, R, 1, DELTA, 1) - DELNRM = FNRM - GO TO 300 -C -C The maximum number of iterations was done. Set IERNEW and return. -C - 380 IF (RATE .LE. RATEMX) THEN - IERNEW = 1 - ELSE - IERNEW = 2 - ENDIF - RETURN -C - 390 IF (IRES .LE. -2) THEN - IERNEW = -1 - ELSE - IERNEW = 3 - ENDIF - RETURN -C -C -C------END OF SUBROUTINE DNSID------------------------------------------ - END - SUBROUTINE DLINSD (NEQ, Y, T, YPRIME, CJ, TSCALE, P, PNRM, WT, - * LSOFF, STPTOL, IRET, RES, IRES, WM, IWM, - * FNRM, ICOPT, ID, R, YNEW, YPNEW, ICNFLG, - * ICNSTR, RLX, RPAR, IPAR) -C -C***BEGIN PROLOGUE DLINSD -C***REFER TO DNSID -C***DATE WRITTEN 941025 (YYMMDD) -C***REVISION DATE 941215 (YYMMDD) -C***REVISION DATE 960129 Moved line RL = ONE to top block. -C***REVISION DATE 000628 TSCALE argument added. -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C DLINSD uses a linesearch algorithm to calculate a new (Y,YPRIME) -C pair (YNEW,YPNEW) such that -C -C f(YNEW,YPNEW) .le. (1 - 2*ALPHA*RL)*f(Y,YPRIME) , -C -C where 0 < RL <= 1. Here, f(y,y') is defined as -C -C f(y,y') = (1/2)*norm( (J-inverse)*G(t,y,y') )**2 , -C -C where norm() is the weighted RMS vector norm, G is the DAE -C system residual function, and J is the system iteration matrix -C (Jacobian). -C -C In addition to the parameters defined elsewhere, we have -C -C TSCALE -- Scale factor in T, used for stopping tests if nonzero. -C P -- Approximate Newton step used in backtracking. -C PNRM -- Weighted RMS norm of P. -C LSOFF -- Flag showing whether the linesearch algorithm is -C to be invoked. 0 means do the linesearch, and -C 1 means turn off linesearch. -C STPTOL -- Tolerance used in calculating the minimum lambda -C value allowed. -C ICNFLG -- Integer scalar. If nonzero, then constraint violations -C in the proposed new approximate solution will be -C checked for, and the maximum step length will be -C adjusted accordingly. -C ICNSTR -- Integer array of length NEQ containing flags for -C checking constraints. -C RLX -- Real scalar restricting update size in DCNSTR. -C YNEW -- Array of length NEQ used to hold the new Y in -C performing the linesearch. -C YPNEW -- Array of length NEQ used to hold the new YPRIME in -C performing the linesearch. -C Y -- Array of length NEQ containing the new Y (i.e.,=YNEW). -C YPRIME -- Array of length NEQ containing the new YPRIME -C (i.e.,=YPNEW). -C FNRM -- Real scalar containing SQRT(2*f(Y,YPRIME)) for the -C current (Y,YPRIME) on input and output. -C R -- Work array of length NEQ, containing the scaled -C residual (J-inverse)*G(t,y,y') on return. -C IRET -- Return flag. -C IRET=0 means that a satisfactory (Y,YPRIME) was found. -C IRET=1 means that the routine failed to find a new -C (Y,YPRIME) that was sufficiently distinct from -C the current (Y,YPRIME) pair. -C IRET=2 means IRES .ne. 0 from RES. -C----------------------------------------------------------------------- -C -C***ROUTINES CALLED -C DFNRMD, DYYPNW, DCNSTR, DCOPY, XERRWD -C -C***END PROLOGUE DLINSD -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - EXTERNAL RES - DIMENSION Y(*), YPRIME(*), WT(*), R(*), ID(*) - DIMENSION WM(*), IWM(*) - DIMENSION YNEW(*), YPNEW(*), P(*), ICNSTR(*) - DIMENSION RPAR(*), IPAR(*) - CHARACTER MSG*80 -C - PARAMETER (LNRE=12, LKPRIN=31) -C - SAVE ALPHA, ONE, TWO - DATA ALPHA/1.0D-4/, ONE/1.0D0/, TWO/2.0D0/ -C - KPRIN=IWM(LKPRIN) -C - F1NRM = (FNRM*FNRM)/TWO - RATIO = ONE - IF (KPRIN .GE. 2) THEN - MSG = '------ IN ROUTINE DLINSD-- PNRM = (R1)' - CALL XERRWD(MSG, 38, 901, 0, 0, 0, 0, 1, PNRM, 0.0D0) - ENDIF - TAU = PNRM - RL = ONE -C----------------------------------------------------------------------- -C Check for violations of the constraints, if any are imposed. -C If any violations are found, the step vector P is rescaled, and the -C constraint check is repeated, until no violations are found. -C----------------------------------------------------------------------- - IF (ICNFLG .NE. 0) THEN - 10 CONTINUE - CALL DYYPNW (NEQ,Y,YPRIME,CJ,RL,P,ICOPT,ID,YNEW,YPNEW) - CALL DCNSTR (NEQ, Y, YNEW, ICNSTR, TAU, RLX, IRET, IVAR) - IF (IRET .EQ. 1) THEN - RATIO1 = TAU/PNRM - RATIO = RATIO*RATIO1 - DO 20 I = 1,NEQ - 20 P(I) = P(I)*RATIO1 - PNRM = TAU - IF (KPRIN .GE. 2) THEN - MSG = '------ CONSTRAINT VIOL., PNRM = (R1), INDEX = (I1)' - CALL XERRWD(MSG, 50, 902, 0, 1, IVAR, 0, 1, PNRM, 0.0D0) - ENDIF - IF (PNRM .LE. STPTOL) THEN - IRET = 1 - RETURN - ENDIF - GO TO 10 - ENDIF - ENDIF -C - SLPI = (-TWO*F1NRM)*RATIO - RLMIN = STPTOL/PNRM - IF (LSOFF .EQ. 0 .AND. KPRIN .GE. 2) THEN - MSG = '------ MIN. LAMBDA = (R1)' - CALL XERRWD(MSG, 25, 903, 0, 0, 0, 0, 1, RLMIN, 0.0D0) - ENDIF -C----------------------------------------------------------------------- -C Begin iteration to find RL value satisfying alpha-condition. -C If RL becomes less than RLMIN, then terminate with IRET = 1. -C----------------------------------------------------------------------- - 100 CONTINUE - CALL DYYPNW (NEQ,Y,YPRIME,CJ,RL,P,ICOPT,ID,YNEW,YPNEW) - CALL DFNRMD (NEQ, YNEW, T, YPNEW, R, CJ, TSCALE, WT, RES, IRES, - * FNRMP, WM, IWM, RPAR, IPAR) - IWM(LNRE) = IWM(LNRE) + 1 - IF (IRES .NE. 0) THEN - IRET = 2 - RETURN - ENDIF - IF (LSOFF .EQ. 1) GO TO 150 -C - F1NRMP = FNRMP*FNRMP/TWO - IF (KPRIN .GE. 2) THEN - MSG = '------ LAMBDA = (R1)' - CALL XERRWD(MSG, 20, 904, 0, 0, 0, 0, 1, RL, 0.0D0) - MSG = '------ NORM(F1) = (R1), NORM(F1NEW) = (R2)' - CALL XERRWD(MSG, 43, 905, 0, 0, 0, 0, 2, F1NRM, F1NRMP) - ENDIF - IF (F1NRMP .GT. F1NRM + ALPHA*SLPI*RL) GO TO 200 -C----------------------------------------------------------------------- -C Alpha-condition is satisfied, or linesearch is turned off. -C Copy YNEW,YPNEW to Y,YPRIME and return. -C----------------------------------------------------------------------- - 150 IRET = 0 - CALL DCOPY (NEQ, YNEW, 1, Y, 1) - CALL DCOPY (NEQ, YPNEW, 1, YPRIME, 1) - FNRM = FNRMP - IF (KPRIN .GE. 1) THEN - MSG = '------ LEAVING ROUTINE DLINSD, FNRM = (R1)' - CALL XERRWD(MSG, 42, 906, 0, 0, 0, 0, 1, FNRM, 0.0D0) - ENDIF - RETURN -C----------------------------------------------------------------------- -C Alpha-condition not satisfied. Perform backtrack to compute new RL -C value. If no satisfactory YNEW,YPNEW can be found sufficiently -C distinct from Y,YPRIME, then return IRET = 1. -C----------------------------------------------------------------------- - 200 CONTINUE - IF (RL .LT. RLMIN) THEN - IRET = 1 - RETURN - ENDIF -C - RL = RL/TWO - GO TO 100 -C -C----------------------- END OF SUBROUTINE DLINSD ---------------------- - END - SUBROUTINE DFNRMD (NEQ, Y, T, YPRIME, R, CJ, TSCALE, WT, - * RES, IRES, FNORM, WM, IWM, RPAR, IPAR) -C -C***BEGIN PROLOGUE DFNRMD -C***REFER TO DLINSD -C***DATE WRITTEN 941025 (YYMMDD) -C***REVISION DATE 000628 TSCALE argument added. -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C DFNRMD calculates the scaled preconditioned norm of the nonlinear -C function used in the nonlinear iteration for obtaining consistent -C initial conditions. Specifically, DFNRMD calculates the weighted -C root-mean-square norm of the vector (J-inverse)*G(T,Y,YPRIME), -C where J is the Jacobian matrix. -C -C In addition to the parameters described in the calling program -C DLINSD, the parameters represent -C -C R -- Array of length NEQ that contains -C (J-inverse)*G(T,Y,YPRIME) on return. -C TSCALE -- Scale factor in T, used for stopping tests if nonzero. -C FNORM -- Scalar containing the weighted norm of R on return. -C----------------------------------------------------------------------- -C -C***ROUTINES CALLED -C RES, DSLVD, DDWNRM -C -C***END PROLOGUE DFNRMD -C -C - IMPLICIT DOUBLE PRECISION (A-H,O-Z) - EXTERNAL RES - DIMENSION Y(*), YPRIME(*), WT(*), R(*) - DIMENSION WM(*),IWM(*), RPAR(*),IPAR(*) -C----------------------------------------------------------------------- -C Call RES routine. -C----------------------------------------------------------------------- - IRES = 0 - CALL RES(T,Y,YPRIME,CJ,R,IRES,RPAR,IPAR) - IF (IRES .LT. 0) RETURN -C----------------------------------------------------------------------- -C Apply inverse of Jacobian to vector R. -C----------------------------------------------------------------------- - CALL DSLVD(NEQ,R,WM,IWM) -C----------------------------------------------------------------------- -C Calculate norm of R. -C----------------------------------------------------------------------- - FNORM = DDWNRM(NEQ,R,WT,RPAR,IPAR) - IF (TSCALE .GT. 0.0D0) FNORM = FNORM*TSCALE*ABS(CJ) -C - RETURN -C----------------------- END OF SUBROUTINE DFNRMD ---------------------- - END - SUBROUTINE DNEDD(X,Y,YPRIME,NEQ,RES,JACD,PDUM,H,WT, - * JSTART,IDID,RPAR,IPAR,PHI,GAMMA,DUMSVR,DELTA,E, - * WM,IWM,CJ,CJOLD,CJLAST,S,UROUND,DUME,DUMS,DUMR, - * EPCON,JCALC,JFDUM,KP1,NONNEG,NTYPE,IERNLS) -C -C***BEGIN PROLOGUE DNEDD -C***REFER TO DDASPK -C***DATE WRITTEN 891219 (YYMMDD) -C***REVISION DATE 900926 (YYMMDD) -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C DNEDD solves a nonlinear system of -C algebraic equations of the form -C G(X,Y,YPRIME) = 0 for the unknown Y. -C -C The method used is a modified Newton scheme. -C -C The parameters represent -C -C X -- Independent variable. -C Y -- Solution vector. -C YPRIME -- Derivative of solution vector. -C NEQ -- Number of unknowns. -C RES -- External user-supplied subroutine -C to evaluate the residual. See RES description -C in DDASPK prologue. -C JACD -- External user-supplied routine to evaluate the -C Jacobian. See JAC description for the case -C INFO(12) = 0 in the DDASPK prologue. -C PDUM -- Dummy argument. -C H -- Appropriate step size for next step. -C WT -- Vector of weights for error criterion. -C JSTART -- Indicates first call to this routine. -C If JSTART = 0, then this is the first call, -C otherwise it is not. -C IDID -- Completion flag, output by DNEDD. -C See IDID description in DDASPK prologue. -C RPAR,IPAR -- Real and integer arrays used for communication -C between the calling program and external user -C routines. They are not altered within DASPK. -C PHI -- Array of divided differences used by -C DNEDD. The length is NEQ*(K+1),where -C K is the maximum order. -C GAMMA -- Array used to predict Y and YPRIME. The length -C is MAXORD+1 where MAXORD is the maximum order. -C DUMSVR -- Dummy argument. -C DELTA -- Work vector for NLS of length NEQ. -C E -- Error accumulation vector for NLS of length NEQ. -C WM,IWM -- Real and integer arrays storing -C matrix information such as the matrix -C of partial derivatives, permutation -C vector, and various other information. -C CJ -- Parameter always proportional to 1/H. -C CJOLD -- Saves the value of CJ as of the last call to DMATD. -C Accounts for changes in CJ needed to -C decide whether to call DMATD. -C CJLAST -- Previous value of CJ. -C S -- A scalar determined by the approximate rate -C of convergence of the Newton iteration and used -C in the convergence test for the Newton iteration. -C -C If RATE is defined to be an estimate of the -C rate of convergence of the Newton iteration, -C then S = RATE/(1.D0-RATE). -C -C The closer RATE is to 0., the faster the Newton -C iteration is converging; the closer RATE is to 1., -C the slower the Newton iteration is converging. -C -C On the first Newton iteration with an up-dated -C preconditioner S = 100.D0, Thus the initial -C RATE of convergence is approximately 1. -C -C S is preserved from call to call so that the rate -C estimate from a previous step can be applied to -C the current step. -C UROUND -- Unit roundoff. -C DUME -- Dummy argument. -C DUMS -- Dummy argument. -C DUMR -- Dummy argument. -C EPCON -- Tolerance to test for convergence of the Newton -C iteration. -C JCALC -- Flag used to determine when to update -C the Jacobian matrix. In general: -C -C JCALC = -1 ==> Call the DMATD routine to update -C the Jacobian matrix. -C JCALC = 0 ==> Jacobian matrix is up-to-date. -C JCALC = 1 ==> Jacobian matrix is out-dated, -C but DMATD will not be called unless -C JCALC is set to -1. -C JFDUM -- Dummy argument. -C KP1 -- The current order(K) + 1; updated across calls. -C NONNEG -- Flag to determine nonnegativity constraints. -C NTYPE -- Identification code for the NLS routine. -C 0 ==> modified Newton; direct solver. -C IERNLS -- Error flag for nonlinear solver. -C 0 ==> nonlinear solver converged. -C 1 ==> recoverable error inside nonlinear solver. -C -1 ==> unrecoverable error inside nonlinear solver. -C -C All variables with "DUM" in their names are dummy variables -C which are not used in this routine. -C -C Following is a list and description of local variables which -C may not have an obvious usage. They are listed in roughly the -C order they occur in this subroutine. -C -C The following group of variables are passed as arguments to -C the Newton iteration solver. They are explained in greater detail -C in DNSD: -C TOLNEW, MULDEL, MAXIT, IERNEW -C -C IERTYP -- Flag which tells whether this subroutine is correct. -C 0 ==> correct subroutine. -C 1 ==> incorrect subroutine. -C -C----------------------------------------------------------------------- -C***ROUTINES CALLED -C DDWNRM, RES, DMATD, DNSD -C -C***END PROLOGUE DNEDD -C -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION Y(*),YPRIME(*),WT(*) - DIMENSION DELTA(*),E(*) - DIMENSION WM(*),IWM(*), RPAR(*),IPAR(*) - DIMENSION PHI(NEQ,*),GAMMA(*) - EXTERNAL RES, JACD -C - PARAMETER (LNRE=12, LNJE=13) -C - SAVE MULDEL, MAXIT, XRATE - DATA MULDEL/1/, MAXIT/4/, XRATE/0.25D0/ -C -C Verify that this is the correct subroutine. -C - IERTYP = 0 - IF (NTYPE .NE. 0) THEN - IERTYP = 1 - GO TO 380 - ENDIF -C -C If this is the first step, perform initializations. -C - IF (JSTART .EQ. 0) THEN - CJOLD = CJ - JCALC = -1 - ENDIF -C -C Perform all other initializations. -C - IERNLS = 0 -C -C Decide whether new Jacobian is needed. -C - TEMP1 = (1.0D0 - XRATE)/(1.0D0 + XRATE) - TEMP2 = 1.0D0/TEMP1 - IF (CJ/CJOLD .LT. TEMP1 .OR. CJ/CJOLD .GT. TEMP2) JCALC = -1 - IF (CJ .NE. CJLAST) S = 100.D0 -C -C----------------------------------------------------------------------- -C Entry point for updating the Jacobian with current -C stepsize. -C----------------------------------------------------------------------- -300 CONTINUE -C -C Initialize all error flags to zero. -C - IERJ = 0 - IRES = 0 - IERNEW = 0 -C -C Predict the solution and derivative and compute the tolerance -C for the Newton iteration. -C - DO 310 I=1,NEQ - Y(I)=PHI(I,1) -310 YPRIME(I)=0.0D0 - DO 330 J=2,KP1 - DO 320 I=1,NEQ - Y(I)=Y(I)+PHI(I,J) -320 YPRIME(I)=YPRIME(I)+GAMMA(J)*PHI(I,J) -330 CONTINUE - PNORM = DDWNRM (NEQ,Y,WT,RPAR,IPAR) - TOLNEW = 100.D0*UROUND*PNORM -C -C Call RES to initialize DELTA. -C - IWM(LNRE)=IWM(LNRE)+1 - CALL RES(X,Y,YPRIME,CJ,DELTA,IRES,RPAR,IPAR) - IF (IRES .LT. 0) GO TO 380 -C -C If indicated, reevaluate the iteration matrix -C J = dG/dY + CJ*dG/dYPRIME (where G(X,Y,YPRIME)=0). -C Set JCALC to 0 as an indicator that this has been done. -C - IF(JCALC .EQ. -1) THEN - IWM(LNJE)=IWM(LNJE)+1 - JCALC=0 - CALL DMATD(NEQ,X,Y,YPRIME,DELTA,CJ,H,IERJ,WT,E,WM,IWM, - * RES,IRES,UROUND,JACD,RPAR,IPAR) - CJOLD=CJ - S = 100.D0 - IF (IRES .LT. 0) GO TO 380 - IF(IERJ .NE. 0)GO TO 380 - ENDIF -C -C Call the nonlinear Newton solver. -C - TEMP1 = 2.0D0/(1.0D0 + CJ/CJOLD) - CALL DNSD(X,Y,YPRIME,NEQ,RES,PDUM,WT,RPAR,IPAR,DUMSVR, - * DELTA,E,WM,IWM,CJ,DUMS,DUMR,DUME,EPCON,S,TEMP1, - * TOLNEW,MULDEL,MAXIT,IRES,IDUM,IERNEW) -C - IF (IERNEW .GT. 0 .AND. JCALC .NE. 0) THEN -C -C The Newton iteration had a recoverable failure with an old -C iteration matrix. Retry the step with a new iteration matrix. -C - JCALC = -1 - GO TO 300 - ENDIF -C - IF (IERNEW .NE. 0) GO TO 380 -C -C The Newton iteration has converged. If nonnegativity of -C solution is required, set the solution nonnegative, if the -C perturbation to do it is small enough. If the change is too -C large, then consider the corrector iteration to have failed. -C -375 IF(NONNEG .EQ. 0) GO TO 390 - DO 377 I = 1,NEQ -377 DELTA(I) = MIN(Y(I),0.0D0) - DELNRM = DDWNRM(NEQ,DELTA,WT,RPAR,IPAR) - IF(DELNRM .GT. EPCON) GO TO 380 - DO 378 I = 1,NEQ -378 E(I) = E(I) - DELTA(I) - GO TO 390 -C -C -C Exits from nonlinear solver. -C No convergence with current iteration -C matrix, or singular iteration matrix. -C Compute IERNLS and IDID accordingly. -C -380 CONTINUE - IF (IRES .LE. -2 .OR. IERTYP .NE. 0) THEN - IERNLS = -1 - IF (IRES .LE. -2) IDID = -11 - IF (IERTYP .NE. 0) IDID = -15 - ELSE - IERNLS = 1 - IF (IRES .LT. 0) IDID = -10 - IF (IERJ .NE. 0) IDID = -8 - ENDIF -C -390 JCALC = 1 - RETURN -C -C------END OF SUBROUTINE DNEDD------------------------------------------ - END - SUBROUTINE DNSD(X,Y,YPRIME,NEQ,RES,PDUM,WT,RPAR,IPAR, - * DUMSVR,DELTA,E,WM,IWM,CJ,DUMS,DUMR,DUME,EPCON, - * S,CONFAC,TOLNEW,MULDEL,MAXIT,IRES,IDUM,IERNEW) -C -C***BEGIN PROLOGUE DNSD -C***REFER TO DDASPK -C***DATE WRITTEN 891219 (YYMMDD) -C***REVISION DATE 900926 (YYMMDD) -C***REVISION DATE 950126 (YYMMDD) -C***REVISION DATE 000711 (YYMMDD) -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C DNSD solves a nonlinear system of -C algebraic equations of the form -C G(X,Y,YPRIME) = 0 for the unknown Y. -C -C The method used is a modified Newton scheme. -C -C The parameters represent -C -C X -- Independent variable. -C Y -- Solution vector. -C YPRIME -- Derivative of solution vector. -C NEQ -- Number of unknowns. -C RES -- External user-supplied subroutine -C to evaluate the residual. See RES description -C in DDASPK prologue. -C PDUM -- Dummy argument. -C WT -- Vector of weights for error criterion. -C RPAR,IPAR -- Real and integer arrays used for communication -C between the calling program and external user -C routines. They are not altered within DASPK. -C DUMSVR -- Dummy argument. -C DELTA -- Work vector for DNSD of length NEQ. -C E -- Error accumulation vector for DNSD of length NEQ. -C WM,IWM -- Real and integer arrays storing -C matrix information such as the matrix -C of partial derivatives, permutation -C vector, and various other information. -C CJ -- Parameter always proportional to 1/H (step size). -C DUMS -- Dummy argument. -C DUMR -- Dummy argument. -C DUME -- Dummy argument. -C EPCON -- Tolerance to test for convergence of the Newton -C iteration. -C S -- Used for error convergence tests. -C In the Newton iteration: S = RATE/(1 - RATE), -C where RATE is the estimated rate of convergence -C of the Newton iteration. -C The calling routine passes the initial value -C of S to the Newton iteration. -C CONFAC -- A residual scale factor to improve convergence. -C TOLNEW -- Tolerance on the norm of Newton correction in -C alternative Newton convergence test. -C MULDEL -- A flag indicating whether or not to multiply -C DELTA by CONFAC. -C 0 ==> do not scale DELTA by CONFAC. -C 1 ==> scale DELTA by CONFAC. -C MAXIT -- Maximum allowed number of Newton iterations. -C IRES -- Error flag returned from RES. See RES description -C in DDASPK prologue. If IRES = -1, then IERNEW -C will be set to 1. -C If IRES < -1, then IERNEW will be set to -1. -C IDUM -- Dummy argument. -C IERNEW -- Error flag for Newton iteration. -C 0 ==> Newton iteration converged. -C 1 ==> recoverable error inside Newton iteration. -C -1 ==> unrecoverable error inside Newton iteration. -C -C All arguments with "DUM" in their names are dummy arguments -C which are not used in this routine. -C----------------------------------------------------------------------- -C -C***ROUTINES CALLED -C DSLVD, DDWNRM, RES -C -C***END PROLOGUE DNSD -C -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION Y(*),YPRIME(*),WT(*),DELTA(*),E(*) - DIMENSION WM(*),IWM(*), RPAR(*),IPAR(*) - EXTERNAL RES -C - PARAMETER (LNRE=12, LNNI=19) -C -C Initialize Newton counter M and accumulation vector E. -C - M = 0 - DO 100 I=1,NEQ -100 E(I)=0.0D0 -C -C Corrector loop. -C -300 CONTINUE - IWM(LNNI) = IWM(LNNI) + 1 -C -C If necessary, multiply residual by convergence factor. -C - IF (MULDEL .EQ. 1) THEN - DO 320 I = 1,NEQ -320 DELTA(I) = DELTA(I) * CONFAC - ENDIF -C -C Compute a new iterate (back-substitution). -C Store the correction in DELTA. -C - CALL DSLVD(NEQ,DELTA,WM,IWM) -C -C Update Y, E, and YPRIME. -C - DO 340 I=1,NEQ - Y(I)=Y(I)-DELTA(I) - E(I)=E(I)-DELTA(I) -340 YPRIME(I)=YPRIME(I)-CJ*DELTA(I) -C -C Test for convergence of the iteration. -C - DELNRM=DDWNRM(NEQ,DELTA,WT,RPAR,IPAR) - IF (M .EQ. 0) THEN - OLDNRM = DELNRM - IF (DELNRM .LE. TOLNEW) GO TO 370 - ELSE - RATE = (DELNRM/OLDNRM)**(1.0D0/M) - IF (RATE .GT. 0.9D0) GO TO 380 - S = RATE/(1.0D0 - RATE) - ENDIF - IF (S*DELNRM .LE. EPCON) GO TO 370 -C -C The corrector has not yet converged. -C Update M and test whether the -C maximum number of iterations have -C been tried. -C - M=M+1 - IF(M.GE.MAXIT) GO TO 380 -C -C Evaluate the residual, -C and go back to do another iteration. -C - IWM(LNRE)=IWM(LNRE)+1 - CALL RES(X,Y,YPRIME,CJ,DELTA,IRES,RPAR,IPAR) - IF (IRES .LT. 0) GO TO 380 - GO TO 300 -C -C The iteration has converged. -C -370 RETURN -C -C The iteration has not converged. Set IERNEW appropriately. -C -380 CONTINUE - IF (IRES .LE. -2 ) THEN - IERNEW = -1 - ELSE - IERNEW = 1 - ENDIF - RETURN -C -C -C------END OF SUBROUTINE DNSD------------------------------------------- - END - SUBROUTINE DMATD(NEQ,X,Y,YPRIME,DELTA,CJ,H,IER,EWT,E, - * WM,IWM,RES,IRES,UROUND,JACD,RPAR,IPAR) -C -C***BEGIN PROLOGUE DMATD -C***REFER TO DDASPK -C***DATE WRITTEN 890101 (YYMMDD) -C***REVISION DATE 900926 (YYMMDD) -C***REVISION DATE 940701 (YYMMDD) (new LIPVT) -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C This routine computes the iteration matrix -C J = dG/dY+CJ*dG/dYPRIME (where G(X,Y,YPRIME)=0). -C Here J is computed by: -C the user-supplied routine JACD if IWM(MTYPE) is 1 or 4, or -C by numerical difference quotients if IWM(MTYPE) is 2 or 5. -C -C The parameters have the following meanings. -C X = Independent variable. -C Y = Array containing predicted values. -C YPRIME = Array containing predicted derivatives. -C DELTA = Residual evaluated at (X,Y,YPRIME). -C (Used only if IWM(MTYPE)=2 or 5). -C CJ = Scalar parameter defining iteration matrix. -C H = Current stepsize in integration. -C IER = Variable which is .NE. 0 if iteration matrix -C is singular, and 0 otherwise. -C EWT = Vector of error weights for computing norms. -C E = Work space (temporary) of length NEQ. -C WM = Real work space for matrices. On output -C it contains the LU decomposition -C of the iteration matrix. -C IWM = Integer work space containing -C matrix information. -C RES = External user-supplied subroutine -C to evaluate the residual. See RES description -C in DDASPK prologue. -C IRES = Flag which is equal to zero if no illegal values -C in RES, and less than zero otherwise. (If IRES -C is less than zero, the matrix was not completed). -C In this case (if IRES .LT. 0), then IER = 0. -C UROUND = The unit roundoff error of the machine being used. -C JACD = Name of the external user-supplied routine -C to evaluate the iteration matrix. (This routine -C is only used if IWM(MTYPE) is 1 or 4) -C See JAC description for the case INFO(12) = 0 -C in DDASPK prologue. -C RPAR,IPAR= Real and integer parameter arrays that -C are used for communication between the -C calling program and external user routines. -C They are not altered by DMATD. -C----------------------------------------------------------------------- -C***ROUTINES CALLED -C JACD, RES, DGEFA, DGBFA -C -C***END PROLOGUE DMATD -C -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION Y(*),YPRIME(*),DELTA(*),EWT(*),E(*) - DIMENSION WM(*),IWM(*), RPAR(*),IPAR(*) - EXTERNAL RES, JACD -C - PARAMETER (LML=1, LMU=2, LMTYPE=4, LNRE=12, LNPD=22, LLCIWP=30) -C - LIPVT = IWM(LLCIWP) - IER = 0 - MTYPE=IWM(LMTYPE) - GO TO (100,200,300,400,500),MTYPE -C -C -C Dense user-supplied matrix. -C -100 LENPD=IWM(LNPD) - DO 110 I=1,LENPD -110 WM(I)=0.0D0 - CALL JACD(X,Y,YPRIME,WM,CJ,RPAR,IPAR) - GO TO 230 -C -C -C Dense finite-difference-generated matrix. -C -200 IRES=0 - NROW=0 - SQUR = SQRT(UROUND) - DO 210 I=1,NEQ - DEL=SQUR*MAX(ABS(Y(I)),ABS(H*YPRIME(I)), - * ABS(1.D0/EWT(I))) - DEL=SIGN(DEL,H*YPRIME(I)) - DEL=(Y(I)+DEL)-Y(I) - YSAVE=Y(I) - YPSAVE=YPRIME(I) - Y(I)=Y(I)+DEL - YPRIME(I)=YPRIME(I)+CJ*DEL - IWM(LNRE)=IWM(LNRE)+1 - CALL RES(X,Y,YPRIME,CJ,E,IRES,RPAR,IPAR) - IF (IRES .LT. 0) RETURN - DELINV=1.0D0/DEL - DO 220 L=1,NEQ -220 WM(NROW+L)=(E(L)-DELTA(L))*DELINV - NROW=NROW+NEQ - Y(I)=YSAVE - YPRIME(I)=YPSAVE -210 CONTINUE -C -C -C Do dense-matrix LU decomposition on J. -C -230 CALL DGEFA(WM,NEQ,NEQ,IWM(LIPVT),IER) - RETURN -C -C -C Dummy section for IWM(MTYPE)=3. -C -300 RETURN -C -C -C Banded user-supplied matrix. -C -400 LENPD=IWM(LNPD) - DO 410 I=1,LENPD -410 WM(I)=0.0D0 - CALL JACD(X,Y,YPRIME,WM,CJ,RPAR,IPAR) - MEBAND=2*IWM(LML)+IWM(LMU)+1 - GO TO 550 -C -C -C Banded finite-difference-generated matrix. -C -500 MBAND=IWM(LML)+IWM(LMU)+1 - MBA=MIN0(MBAND,NEQ) - MEBAND=MBAND+IWM(LML) - MEB1=MEBAND-1 - MSAVE=(NEQ/MBAND)+1 - ISAVE=IWM(LNPD) - IPSAVE=ISAVE+MSAVE - IRES=0 - SQUR=SQRT(UROUND) - DO 540 J=1,MBA - DO 510 N=J,NEQ,MBAND - K= (N-J)/MBAND + 1 - WM(ISAVE+K)=Y(N) - WM(IPSAVE+K)=YPRIME(N) - DEL=SQUR*MAX(ABS(Y(N)),ABS(H*YPRIME(N)), - * ABS(1.D0/EWT(N))) - DEL=SIGN(DEL,H*YPRIME(N)) - DEL=(Y(N)+DEL)-Y(N) - Y(N)=Y(N)+DEL -510 YPRIME(N)=YPRIME(N)+CJ*DEL - IWM(LNRE)=IWM(LNRE)+1 - CALL RES(X,Y,YPRIME,CJ,E,IRES,RPAR,IPAR) - IF (IRES .LT. 0) RETURN - DO 530 N=J,NEQ,MBAND - K= (N-J)/MBAND + 1 - Y(N)=WM(ISAVE+K) - YPRIME(N)=WM(IPSAVE+K) - DEL=SQUR*MAX(ABS(Y(N)),ABS(H*YPRIME(N)), - * ABS(1.D0/EWT(N))) - DEL=SIGN(DEL,H*YPRIME(N)) - DEL=(Y(N)+DEL)-Y(N) - DELINV=1.0D0/DEL - I1=MAX0(1,(N-IWM(LMU))) - I2=MIN0(NEQ,(N+IWM(LML))) - II=N*MEB1-IWM(LML) - DO 520 I=I1,I2 -520 WM(II+I)=(E(I)-DELTA(I))*DELINV -530 CONTINUE -540 CONTINUE -C -C -C Do LU decomposition of banded J. -C -550 CALL DGBFA (WM,MEBAND,NEQ,IWM(LML),IWM(LMU),IWM(LIPVT),IER) - RETURN -C -C------END OF SUBROUTINE DMATD------------------------------------------ - END - SUBROUTINE DSLVD(NEQ,DELTA,WM,IWM) -C -C***BEGIN PROLOGUE DSLVD -C***REFER TO DDASPK -C***DATE WRITTEN 890101 (YYMMDD) -C***REVISION DATE 900926 (YYMMDD) -C***REVISION DATE 940701 (YYMMDD) (new LIPVT) -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C This routine manages the solution of the linear -C system arising in the Newton iteration. -C Real matrix information and real temporary storage -C is stored in the array WM. -C Integer matrix information is stored in the array IWM. -C For a dense matrix, the LINPACK routine DGESL is called. -C For a banded matrix, the LINPACK routine DGBSL is called. -C----------------------------------------------------------------------- -C***ROUTINES CALLED -C DGESL, DGBSL -C -C***END PROLOGUE DSLVD -C -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION DELTA(*),WM(*),IWM(*) -C - PARAMETER (LML=1, LMU=2, LMTYPE=4, LLCIWP=30) -C - LIPVT = IWM(LLCIWP) - MTYPE=IWM(LMTYPE) - GO TO(100,100,300,400,400),MTYPE -C -C Dense matrix. -C -100 CALL DGESL(WM,NEQ,NEQ,IWM(LIPVT),DELTA,0) - RETURN -C -C Dummy section for MTYPE=3. -C -300 CONTINUE - RETURN -C -C Banded matrix. -C -400 MEBAND=2*IWM(LML)+IWM(LMU)+1 - CALL DGBSL(WM,MEBAND,NEQ,IWM(LML), - * IWM(LMU),IWM(LIPVT),DELTA,0) - RETURN -C -C------END OF SUBROUTINE DSLVD------------------------------------------ - END - SUBROUTINE DDASIK(X,Y,YPRIME,NEQ,ICOPT,ID,RES,JACK,PSOL,H,TSCALE, - * WT,JSKIP,RPAR,IPAR,SAVR,DELTA,R,YIC,YPIC,PWK,WM,IWM,CJ,UROUND, - * EPLI,SQRTN,RSQRTN,EPCON,RATEMX,STPTOL,JFLG, - * ICNFLG,ICNSTR,IERNLS) -C -C***BEGIN PROLOGUE DDASIK -C***REFER TO DDASPK -C***DATE WRITTEN 941026 (YYMMDD) -C***REVISION DATE 950808 (YYMMDD) -C***REVISION DATE 951110 Removed unreachable block 390. -C***REVISION DATE 000628 TSCALE argument added. -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C -C DDASIK solves a nonlinear system of algebraic equations of the -C form G(X,Y,YPRIME) = 0 for the unknown parts of Y and YPRIME in -C the initial conditions. -C -C An initial value for Y and initial guess for YPRIME are input. -C -C The method used is a Newton scheme with Krylov iteration and a -C linesearch algorithm. -C -C The parameters represent -C -C X -- Independent variable. -C Y -- Solution vector at x. -C YPRIME -- Derivative of solution vector. -C NEQ -- Number of equations to be integrated. -C ICOPT -- Initial condition option chosen (1 or 2). -C ID -- Array of dimension NEQ, which must be initialized -C if ICOPT = 1. See DDASIC. -C RES -- External user-supplied subroutine -C to evaluate the residual. See RES description -C in DDASPK prologue. -C JACK -- External user-supplied routine to update -C the preconditioner. (This is optional). -C See JAC description for the case -C INFO(12) = 1 in the DDASPK prologue. -C PSOL -- External user-supplied routine to solve -C a linear system using preconditioning. -C (This is optional). See explanation inside DDASPK. -C H -- Scaling factor for this initial condition calc. -C TSCALE -- Scale factor in T, used for stopping tests if nonzero. -C WT -- Vector of weights for error criterion. -C JSKIP -- input flag to signal if initial JAC call is to be -C skipped. 1 => skip the call, 0 => do not skip call. -C RPAR,IPAR -- Real and integer arrays used for communication -C between the calling program and external user -C routines. They are not altered within DASPK. -C SAVR -- Work vector for DDASIK of length NEQ. -C DELTA -- Work vector for DDASIK of length NEQ. -C R -- Work vector for DDASIK of length NEQ. -C YIC,YPIC -- Work vectors for DDASIK, each of length NEQ. -C PWK -- Work vector for DDASIK of length NEQ. -C WM,IWM -- Real and integer arrays storing -C matrix information for linear system -C solvers, and various other information. -C CJ -- Matrix parameter = 1/H (ICOPT = 1) or 0 (ICOPT = 2). -C UROUND -- Unit roundoff. Not used here. -C EPLI -- convergence test constant. -C See DDASPK prologue for more details. -C SQRTN -- Square root of NEQ. -C RSQRTN -- reciprical of square root of NEQ. -C EPCON -- Tolerance to test for convergence of the Newton -C iteration. -C RATEMX -- Maximum convergence rate for which Newton iteration -C is considered converging. -C JFLG -- Flag showing whether a Jacobian routine is supplied. -C ICNFLG -- Integer scalar. If nonzero, then constraint -C violations in the proposed new approximate solution -C will be checked for, and the maximum step length -C will be adjusted accordingly. -C ICNSTR -- Integer array of length NEQ containing flags for -C checking constraints. -C IERNLS -- Error flag for nonlinear solver. -C 0 ==> nonlinear solver converged. -C 1,2 ==> recoverable error inside nonlinear solver. -C 1 => retry with current Y, YPRIME -C 2 => retry with original Y, YPRIME -C -1 ==> unrecoverable error in nonlinear solver. -C -C----------------------------------------------------------------------- -C -C***ROUTINES CALLED -C RES, JACK, DNSIK, DCOPY -C -C***END PROLOGUE DDASIK -C -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION Y(*),YPRIME(*),ID(*),WT(*),ICNSTR(*) - DIMENSION SAVR(*),DELTA(*),R(*),YIC(*),YPIC(*),PWK(*) - DIMENSION WM(*),IWM(*), RPAR(*),IPAR(*) - EXTERNAL RES, JACK, PSOL -C - PARAMETER (LNRE=12, LNJE=13, LLOCWP=29, LLCIWP=30) - PARAMETER (LMXNIT=32, LMXNJ=33) -C -C -C Perform initializations. -C - LWP = IWM(LLOCWP) - LIWP = IWM(LLCIWP) - MXNIT = IWM(LMXNIT) - MXNJ = IWM(LMXNJ) - IERNLS = 0 - NJ = 0 - EPLIN = EPLI*EPCON -C -C Call RES to initialize DELTA. -C - IRES = 0 - IWM(LNRE) = IWM(LNRE) + 1 - CALL RES(X,Y,YPRIME,CJ,DELTA,IRES,RPAR,IPAR) - IF (IRES .LT. 0) GO TO 370 -C -C Looping point for updating the preconditioner. -C - 300 CONTINUE -C -C Initialize all error flags to zero. -C - IERPJ = 0 - IRES = 0 - IERNEW = 0 -C -C If a Jacobian routine was supplied, call it. -C - IF (JFLG .EQ. 1 .AND. JSKIP .EQ. 0) THEN - NJ = NJ + 1 - IWM(LNJE)=IWM(LNJE)+1 - CALL JACK (RES, IRES, NEQ, X, Y, YPRIME, WT, DELTA, R, H, CJ, - * WM(LWP), IWM(LIWP), IERPJ, RPAR, IPAR) - IF (IRES .LT. 0 .OR. IERPJ .NE. 0) GO TO 370 - ENDIF - JSKIP = 0 -C -C Call the nonlinear Newton solver for up to MXNIT iterations. -C - CALL DNSIK(X,Y,YPRIME,NEQ,ICOPT,ID,RES,PSOL,WT,RPAR,IPAR, - * SAVR,DELTA,R,YIC,YPIC,PWK,WM,IWM,CJ,TSCALE,SQRTN,RSQRTN, - * EPLIN,EPCON,RATEMX,MXNIT,STPTOL,ICNFLG,ICNSTR,IERNEW) -C - IF (IERNEW .EQ. 1 .AND. NJ .LT. MXNJ .AND. JFLG .EQ. 1) THEN -C -C Up to MXNIT iterations were done, the convergence rate is < 1, -C a Jacobian routine is supplied, and the number of JACK calls -C is less than MXNJ. -C Copy the residual SAVR to DELTA, call JACK, and try again. -C - CALL DCOPY (NEQ, SAVR, 1, DELTA, 1) - GO TO 300 - ENDIF -C - IF (IERNEW .NE. 0) GO TO 380 - RETURN -C -C -C Unsuccessful exits from nonlinear solver. -C Set IERNLS accordingly. -C - 370 IERNLS = 2 - IF (IRES .LE. -2) IERNLS = -1 - RETURN -C - 380 IERNLS = MIN(IERNEW,2) - RETURN -C -C----------------------- END OF SUBROUTINE DDASIK----------------------- - END - SUBROUTINE DNSIK(X,Y,YPRIME,NEQ,ICOPT,ID,RES,PSOL,WT,RPAR,IPAR, - * SAVR,DELTA,R,YIC,YPIC,PWK,WM,IWM,CJ,TSCALE,SQRTN,RSQRTN,EPLIN, - * EPCON,RATEMX,MAXIT,STPTOL,ICNFLG,ICNSTR,IERNEW) -C -C***BEGIN PROLOGUE DNSIK -C***REFER TO DDASPK -C***DATE WRITTEN 940701 (YYMMDD) -C***REVISION DATE 950714 (YYMMDD) -C***REVISION DATE 000628 TSCALE argument added. -C***REVISION DATE 000628 Added criterion for IERNEW = 1 return. -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C DNSIK solves a nonlinear system of algebraic equations of the -C form G(X,Y,YPRIME) = 0 for the unknown parts of Y and YPRIME in -C the initial conditions. -C -C The method used is a Newton scheme combined with a linesearch -C algorithm, using Krylov iterative linear system methods. -C -C The parameters represent -C -C X -- Independent variable. -C Y -- Solution vector. -C YPRIME -- Derivative of solution vector. -C NEQ -- Number of unknowns. -C ICOPT -- Initial condition option chosen (1 or 2). -C ID -- Array of dimension NEQ, which must be initialized -C if ICOPT = 1. See DDASIC. -C RES -- External user-supplied subroutine -C to evaluate the residual. See RES description -C in DDASPK prologue. -C PSOL -- External user-supplied routine to solve -C a linear system using preconditioning. -C See explanation inside DDASPK. -C WT -- Vector of weights for error criterion. -C RPAR,IPAR -- Real and integer arrays used for communication -C between the calling program and external user -C routines. They are not altered within DASPK. -C SAVR -- Work vector for DNSIK of length NEQ. -C DELTA -- Residual vector on entry, and work vector of -C length NEQ for DNSIK. -C R -- Work vector for DNSIK of length NEQ. -C YIC,YPIC -- Work vectors for DNSIK, each of length NEQ. -C PWK -- Work vector for DNSIK of length NEQ. -C WM,IWM -- Real and integer arrays storing -C matrix information such as the matrix -C of partial derivatives, permutation -C vector, and various other information. -C CJ -- Matrix parameter = 1/H (ICOPT = 1) or 0 (ICOPT = 2). -C TSCALE -- Scale factor in T, used for stopping tests if nonzero. -C SQRTN -- Square root of NEQ. -C RSQRTN -- reciprical of square root of NEQ. -C EPLIN -- Tolerance for linear system solver. -C EPCON -- Tolerance to test for convergence of the Newton -C iteration. -C RATEMX -- Maximum convergence rate for which Newton iteration -C is considered converging. -C MAXIT -- Maximum allowed number of Newton iterations. -C STPTOL -- Tolerance used in calculating the minimum lambda -C value allowed. -C ICNFLG -- Integer scalar. If nonzero, then constraint -C violations in the proposed new approximate solution -C will be checked for, and the maximum step length -C will be adjusted accordingly. -C ICNSTR -- Integer array of length NEQ containing flags for -C checking constraints. -C IERNEW -- Error flag for Newton iteration. -C 0 ==> Newton iteration converged. -C 1 ==> failed to converge, but RATE .lt. 1, or the -C residual norm was reduced by a factor of .1. -C 2 ==> failed to converge, RATE .gt. RATEMX. -C 3 ==> other recoverable error. -C -1 ==> unrecoverable error inside Newton iteration. -C----------------------------------------------------------------------- -C -C***ROUTINES CALLED -C DFNRMK, DSLVK, DDWNRM, DLINSK, DCOPY -C -C***END PROLOGUE DNSIK -C -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION Y(*),YPRIME(*),WT(*),ID(*),DELTA(*),R(*),SAVR(*) - DIMENSION YIC(*),YPIC(*),PWK(*),WM(*),IWM(*), RPAR(*),IPAR(*) - DIMENSION ICNSTR(*) - EXTERNAL RES, PSOL -C - PARAMETER (LNNI=19, LNPS=21, LLOCWP=29, LLCIWP=30) - PARAMETER (LLSOFF=35, LSTOL=14) -C -C -C Initializations. M is the Newton iteration counter. -C - LSOFF = IWM(LLSOFF) - M = 0 - RATE = 1.0D0 - LWP = IWM(LLOCWP) - LIWP = IWM(LLCIWP) - RLX = 0.4D0 -C -C Save residual in SAVR. -C - CALL DCOPY (NEQ, DELTA, 1, SAVR, 1) -C -C Compute norm of (P-inverse)*(residual). -C - CALL DFNRMK (NEQ, Y, X, YPRIME, SAVR, R, CJ, TSCALE, WT, - * SQRTN, RSQRTN, RES, IRES, PSOL, 1, IER, FNRM, EPLIN, - * WM(LWP), IWM(LIWP), PWK, RPAR, IPAR) - IWM(LNPS) = IWM(LNPS) + 1 - IF (IER .NE. 0) THEN - IERNEW = 3 - RETURN - ENDIF -C -C Return now if residual norm is .le. EPCON. -C - IF (FNRM .LE. EPCON) RETURN -C -C Newton iteration loop. -C - FNRM0 = FNRM -300 CONTINUE - IWM(LNNI) = IWM(LNNI) + 1 -C -C Compute a new step vector DELTA. -C - CALL DSLVK (NEQ, Y, X, YPRIME, SAVR, DELTA, WT, WM, IWM, - * RES, IRES, PSOL, IERSL, CJ, EPLIN, SQRTN, RSQRTN, RHOK, - * RPAR, IPAR) - IF (IRES .NE. 0 .OR. IERSL .NE. 0) GO TO 390 -C -C Get norm of DELTA. Return now if DELTA is zero. -C - DELNRM = DDWNRM(NEQ,DELTA,WT,RPAR,IPAR) - IF (DELNRM .EQ. 0.0D0) RETURN -C -C Call linesearch routine for global strategy and set RATE. -C - OLDFNM = FNRM -C - CALL DLINSK (NEQ, Y, X, YPRIME, SAVR, CJ, TSCALE, DELTA, DELNRM, - * WT, SQRTN, RSQRTN, LSOFF, STPTOL, IRET, RES, IRES, PSOL, - * WM, IWM, RHOK, FNRM, ICOPT, ID, WM(LWP), IWM(LIWP), R, EPLIN, - * YIC, YPIC, PWK, ICNFLG, ICNSTR, RLX, RPAR, IPAR) -C - RATE = FNRM/OLDFNM -C -C Check for error condition from linesearch. - IF (IRET .NE. 0) GO TO 390 -C -C Test for convergence of the iteration, and return or loop. -C - IF (FNRM .LE. EPCON) RETURN -C -C The iteration has not yet converged. Update M. -C Test whether the maximum number of iterations have been tried. -C - M = M + 1 - IF(M .GE. MAXIT) GO TO 380 -C -C Copy the residual SAVR to DELTA and loop for another iteration. -C - CALL DCOPY (NEQ, SAVR, 1, DELTA, 1) - GO TO 300 -C -C The maximum number of iterations was done. Set IERNEW and return. -C -380 IF (RATE .LE. RATEMX .OR. FNRM .LE. 0.1D0*FNRM0) THEN - IERNEW = 1 - ELSE - IERNEW = 2 - ENDIF - RETURN -C -390 IF (IRES .LE. -2 .OR. IERSL .LT. 0) THEN - IERNEW = -1 - ELSE - IERNEW = 3 - IF (IRES .EQ. 0 .AND. IERSL .EQ. 1 .AND. M .GE. 2 - 1 .AND. RATE .LT. 1.0D0) IERNEW = 1 - ENDIF - RETURN -C -C -C----------------------- END OF SUBROUTINE DNSIK------------------------ - END - SUBROUTINE DLINSK (NEQ, Y, T, YPRIME, SAVR, CJ, TSCALE, P, PNRM, - * WT, SQRTN, RSQRTN, LSOFF, STPTOL, IRET, RES, IRES, PSOL, - * WM, IWM, RHOK, FNRM, ICOPT, ID, WP, IWP, R, EPLIN, YNEW, YPNEW, - * PWK, ICNFLG, ICNSTR, RLX, RPAR, IPAR) -C -C***BEGIN PROLOGUE DLINSK -C***REFER TO DNSIK -C***DATE WRITTEN 940830 (YYMMDD) -C***REVISION DATE 951006 (Arguments SQRTN, RSQRTN added.) -C***REVISION DATE 960129 Moved line RL = ONE to top block. -C***REVISION DATE 000628 TSCALE argument added. -C***REVISION DATE 000628 RHOK*RHOK term removed in alpha test. -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C DLINSK uses a linesearch algorithm to calculate a new (Y,YPRIME) -C pair (YNEW,YPNEW) such that -C -C f(YNEW,YPNEW) .le. (1 - 2*ALPHA*RL)*f(Y,YPRIME) -C -C where 0 < RL <= 1, and RHOK is the scaled preconditioned norm of -C the final residual vector in the Krylov iteration. -C Here, f(y,y') is defined as -C -C f(y,y') = (1/2)*norm( (P-inverse)*G(t,y,y') )**2 , -C -C where norm() is the weighted RMS vector norm, G is the DAE -C system residual function, and P is the preconditioner used -C in the Krylov iteration. -C -C In addition to the parameters defined elsewhere, we have -C -C SAVR -- Work array of length NEQ, containing the residual -C vector G(t,y,y') on return. -C TSCALE -- Scale factor in T, used for stopping tests if nonzero. -C P -- Approximate Newton step used in backtracking. -C PNRM -- Weighted RMS norm of P. -C LSOFF -- Flag showing whether the linesearch algorithm is -C to be invoked. 0 means do the linesearch, -C 1 means turn off linesearch. -C STPTOL -- Tolerance used in calculating the minimum lambda -C value allowed. -C ICNFLG -- Integer scalar. If nonzero, then constraint violations -C in the proposed new approximate solution will be -C checked for, and the maximum step length will be -C adjusted accordingly. -C ICNSTR -- Integer array of length NEQ containing flags for -C checking constraints. -C RHOK -- Weighted norm of preconditioned Krylov residual. -C RLX -- Real scalar restricting update size in DCNSTR. -C YNEW -- Array of length NEQ used to hold the new Y in -C performing the linesearch. -C YPNEW -- Array of length NEQ used to hold the new YPRIME in -C performing the linesearch. -C PWK -- Work vector of length NEQ for use in PSOL. -C Y -- Array of length NEQ containing the new Y (i.e.,=YNEW). -C YPRIME -- Array of length NEQ containing the new YPRIME -C (i.e.,=YPNEW). -C FNRM -- Real scalar containing SQRT(2*f(Y,YPRIME)) for the -C current (Y,YPRIME) on input and output. -C R -- Work space length NEQ for residual vector. -C IRET -- Return flag. -C IRET=0 means that a satisfactory (Y,YPRIME) was found. -C IRET=1 means that the routine failed to find a new -C (Y,YPRIME) that was sufficiently distinct from -C the current (Y,YPRIME) pair. -C IRET=2 means a failure in RES or PSOL. -C----------------------------------------------------------------------- -C -C***ROUTINES CALLED -C DFNRMK, DYYPNW, DCNSTR, DCOPY, XERRWD -C -C***END PROLOGUE DLINSK -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - EXTERNAL RES, PSOL - DIMENSION Y(*), YPRIME(*), P(*), WT(*), SAVR(*), R(*), ID(*) - DIMENSION WM(*), IWM(*), YNEW(*), YPNEW(*), PWK(*), ICNSTR(*) - DIMENSION WP(*), IWP(*), RPAR(*), IPAR(*) - CHARACTER MSG*80 -C - PARAMETER (LNRE=12, LNPS=21, LKPRIN=31) -C - SAVE ALPHA, ONE, TWO - DATA ALPHA/1.0D-4/, ONE/1.0D0/, TWO/2.0D0/ -C - KPRIN=IWM(LKPRIN) - F1NRM = (FNRM*FNRM)/TWO - RATIO = ONE -C - IF (KPRIN .GE. 2) THEN - MSG = '------ IN ROUTINE DLINSK-- PNRM = (R1)' - CALL XERRWD(MSG, 38, 921, 0, 0, 0, 0, 1, PNRM, 0.0D0) - ENDIF - TAU = PNRM - RL = ONE -C----------------------------------------------------------------------- -C Check for violations of the constraints, if any are imposed. -C If any violations are found, the step vector P is rescaled, and the -C constraint check is repeated, until no violations are found. -C----------------------------------------------------------------------- - IF (ICNFLG .NE. 0) THEN - 10 CONTINUE - CALL DYYPNW (NEQ,Y,YPRIME,CJ,RL,P,ICOPT,ID,YNEW,YPNEW) - CALL DCNSTR (NEQ, Y, YNEW, ICNSTR, TAU, RLX, IRET, IVAR) - IF (IRET .EQ. 1) THEN - RATIO1 = TAU/PNRM - RATIO = RATIO*RATIO1 - DO 20 I = 1,NEQ - 20 P(I) = P(I)*RATIO1 - PNRM = TAU - IF (KPRIN .GE. 2) THEN - MSG = '------ CONSTRAINT VIOL., PNRM = (R1), INDEX = (I1)' - CALL XERRWD(MSG, 50, 922, 0, 1, IVAR, 0, 1, PNRM, 0.0D0) - ENDIF - IF (PNRM .LE. STPTOL) THEN - IRET = 1 - RETURN - ENDIF - GO TO 10 - ENDIF - ENDIF -C - SLPI = -TWO*F1NRM*RATIO - RLMIN = STPTOL/PNRM - IF (LSOFF .EQ. 0 .AND. KPRIN .GE. 2) THEN - MSG = '------ MIN. LAMBDA = (R1)' - CALL XERRWD(MSG, 25, 923, 0, 0, 0, 0, 1, RLMIN, 0.0D0) - ENDIF -C----------------------------------------------------------------------- -C Begin iteration to find RL value satisfying alpha-condition. -C Update YNEW and YPNEW, then compute norm of new scaled residual and -C perform alpha condition test. -C----------------------------------------------------------------------- - 100 CONTINUE - CALL DYYPNW (NEQ,Y,YPRIME,CJ,RL,P,ICOPT,ID,YNEW,YPNEW) - CALL DFNRMK (NEQ, YNEW, T, YPNEW, SAVR, R, CJ, TSCALE, WT, - * SQRTN, RSQRTN, RES, IRES, PSOL, 0, IER, FNRMP, EPLIN, - * WP, IWP, PWK, RPAR, IPAR) - IWM(LNRE) = IWM(LNRE) + 1 - IF (IRES .GE. 0) IWM(LNPS) = IWM(LNPS) + 1 - IF (IRES .NE. 0 .OR. IER .NE. 0) THEN - IRET = 2 - RETURN - ENDIF - IF (LSOFF .EQ. 1) GO TO 150 -C - F1NRMP = FNRMP*FNRMP/TWO - IF (KPRIN .GE. 2) THEN - MSG = '------ LAMBDA = (R1)' - CALL XERRWD(MSG, 20, 924, 0, 0, 0, 0, 1, RL, 0.0D0) - MSG = '------ NORM(F1) = (R1), NORM(F1NEW) = (R2)' - CALL XERRWD(MSG, 43, 925, 0, 0, 0, 0, 2, F1NRM, F1NRMP) - ENDIF - IF (F1NRMP .GT. F1NRM + ALPHA*SLPI*RL) GO TO 200 -C----------------------------------------------------------------------- -C Alpha-condition is satisfied, or linesearch is turned off. -C Copy YNEW,YPNEW to Y,YPRIME and return. -C----------------------------------------------------------------------- - 150 IRET = 0 - CALL DCOPY(NEQ, YNEW, 1, Y, 1) - CALL DCOPY(NEQ, YPNEW, 1, YPRIME, 1) - FNRM = FNRMP - IF (KPRIN .GE. 1) THEN - MSG = '------ LEAVING ROUTINE DLINSK, FNRM = (R1)' - CALL XERRWD(MSG, 42, 926, 0, 0, 0, 0, 1, FNRM, 0.0D0) - ENDIF - RETURN -C----------------------------------------------------------------------- -C Alpha-condition not satisfied. Perform backtrack to compute new RL -C value. If RL is less than RLMIN, i.e. no satisfactory YNEW,YPNEW can -C be found sufficiently distinct from Y,YPRIME, then return IRET = 1. -C----------------------------------------------------------------------- - 200 CONTINUE - IF (RL .LT. RLMIN) THEN - IRET = 1 - RETURN - ENDIF -C - RL = RL/TWO - GO TO 100 -C -C----------------------- END OF SUBROUTINE DLINSK ---------------------- - END - SUBROUTINE DFNRMK (NEQ, Y, T, YPRIME, SAVR, R, CJ, TSCALE, WT, - * SQRTN, RSQRTN, RES, IRES, PSOL, IRIN, IER, - * FNORM, EPLIN, WP, IWP, PWK, RPAR, IPAR) -C -C***BEGIN PROLOGUE DFNRMK -C***REFER TO DLINSK -C***DATE WRITTEN 940830 (YYMMDD) -C***REVISION DATE 951006 (SQRTN, RSQRTN, and scaling of WT added.) -C***REVISION DATE 000628 TSCALE argument added. -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C DFNRMK calculates the scaled preconditioned norm of the nonlinear -C function used in the nonlinear iteration for obtaining consistent -C initial conditions. Specifically, DFNRMK calculates the weighted -C root-mean-square norm of the vector (P-inverse)*G(T,Y,YPRIME), -C where P is the preconditioner matrix. -C -C In addition to the parameters described in the calling program -C DLINSK, the parameters represent -C -C TSCALE -- Scale factor in T, used for stopping tests if nonzero. -C IRIN -- Flag showing whether the current residual vector is -C input in SAVR. 1 means it is, 0 means it is not. -C R -- Array of length NEQ that contains -C (P-inverse)*G(T,Y,YPRIME) on return. -C FNORM -- Scalar containing the weighted norm of R on return. -C----------------------------------------------------------------------- -C -C***ROUTINES CALLED -C RES, DCOPY, DSCAL, PSOL, DDWNRM -C -C***END PROLOGUE DFNRMK -C -C - IMPLICIT DOUBLE PRECISION (A-H,O-Z) - EXTERNAL RES, PSOL - DIMENSION Y(*), YPRIME(*), WT(*), SAVR(*), R(*), PWK(*) - DIMENSION WP(*), IWP(*), RPAR(*), IPAR(*) -C----------------------------------------------------------------------- -C Call RES routine if IRIN = 0. -C----------------------------------------------------------------------- - IF (IRIN .EQ. 0) THEN - IRES = 0 - CALL RES (T, Y, YPRIME, CJ, SAVR, IRES, RPAR, IPAR) - IF (IRES .LT. 0) RETURN - ENDIF -C----------------------------------------------------------------------- -C Apply inverse of left preconditioner to vector R. -C First scale WT array by 1/sqrt(N), and undo scaling afterward. -C----------------------------------------------------------------------- - CALL DCOPY(NEQ, SAVR, 1, R, 1) - CALL DSCAL (NEQ, RSQRTN, WT, 1) - IER = 0 - CALL PSOL (NEQ, T, Y, YPRIME, SAVR, PWK, CJ, WT, WP, IWP, - * R, EPLIN, IER, RPAR, IPAR) - CALL DSCAL (NEQ, SQRTN, WT, 1) - IF (IER .NE. 0) RETURN -C----------------------------------------------------------------------- -C Calculate norm of R. -C----------------------------------------------------------------------- - FNORM = DDWNRM (NEQ, R, WT, RPAR, IPAR) - IF (TSCALE .GT. 0.0D0) FNORM = FNORM*TSCALE*ABS(CJ) -C - RETURN -C----------------------- END OF SUBROUTINE DFNRMK ---------------------- - END - SUBROUTINE DNEDK(X,Y,YPRIME,NEQ,RES,JACK,PSOL, - * H,WT,JSTART,IDID,RPAR,IPAR,PHI,GAMMA,SAVR,DELTA,E, - * WM,IWM,CJ,CJOLD,CJLAST,S,UROUND,EPLI,SQRTN,RSQRTN, - * EPCON,JCALC,JFLG,KP1,NONNEG,NTYPE,IERNLS) -C -C***BEGIN PROLOGUE DNEDK -C***REFER TO DDASPK -C***DATE WRITTEN 891219 (YYMMDD) -C***REVISION DATE 900926 (YYMMDD) -C***REVISION DATE 940701 (YYMMDD) -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C DNEDK solves a nonlinear system of -C algebraic equations of the form -C G(X,Y,YPRIME) = 0 for the unknown Y. -C -C The method used is a matrix-free Newton scheme. -C -C The parameters represent -C X -- Independent variable. -C Y -- Solution vector at x. -C YPRIME -- Derivative of solution vector -C after successful step. -C NEQ -- Number of equations to be integrated. -C RES -- External user-supplied subroutine -C to evaluate the residual. See RES description -C in DDASPK prologue. -C JACK -- External user-supplied routine to update -C the preconditioner. (This is optional). -C See JAC description for the case -C INFO(12) = 1 in the DDASPK prologue. -C PSOL -- External user-supplied routine to solve -C a linear system using preconditioning. -C (This is optional). See explanation inside DDASPK. -C H -- Appropriate step size for this step. -C WT -- Vector of weights for error criterion. -C JSTART -- Indicates first call to this routine. -C If JSTART = 0, then this is the first call, -C otherwise it is not. -C IDID -- Completion flag, output by DNEDK. -C See IDID description in DDASPK prologue. -C RPAR,IPAR -- Real and integer arrays used for communication -C between the calling program and external user -C routines. They are not altered within DASPK. -C PHI -- Array of divided differences used by -C DNEDK. The length is NEQ*(K+1), where -C K is the maximum order. -C GAMMA -- Array used to predict Y and YPRIME. The length -C is K+1, where K is the maximum order. -C SAVR -- Work vector for DNEDK of length NEQ. -C DELTA -- Work vector for DNEDK of length NEQ. -C E -- Error accumulation vector for DNEDK of length NEQ. -C WM,IWM -- Real and integer arrays storing -C matrix information for linear system -C solvers, and various other information. -C CJ -- Parameter always proportional to 1/H. -C CJOLD -- Saves the value of CJ as of the last call to DITMD. -C Accounts for changes in CJ needed to -C decide whether to call DITMD. -C CJLAST -- Previous value of CJ. -C S -- A scalar determined by the approximate rate -C of convergence of the Newton iteration and used -C in the convergence test for the Newton iteration. -C -C If RATE is defined to be an estimate of the -C rate of convergence of the Newton iteration, -C then S = RATE/(1.D0-RATE). -C -C The closer RATE is to 0., the faster the Newton -C iteration is converging; the closer RATE is to 1., -C the slower the Newton iteration is converging. -C -C On the first Newton iteration with an up-dated -C preconditioner S = 100.D0, Thus the initial -C RATE of convergence is approximately 1. -C -C S is preserved from call to call so that the rate -C estimate from a previous step can be applied to -C the current step. -C UROUND -- Unit roundoff. Not used here. -C EPLI -- convergence test constant. -C See DDASPK prologue for more details. -C SQRTN -- Square root of NEQ. -C RSQRTN -- reciprical of square root of NEQ. -C EPCON -- Tolerance to test for convergence of the Newton -C iteration. -C JCALC -- Flag used to determine when to update -C the Jacobian matrix. In general: -C -C JCALC = -1 ==> Call the DITMD routine to update -C the Jacobian matrix. -C JCALC = 0 ==> Jacobian matrix is up-to-date. -C JCALC = 1 ==> Jacobian matrix is out-dated, -C but DITMD will not be called unless -C JCALC is set to -1. -C JFLG -- Flag showing whether a Jacobian routine is supplied. -C KP1 -- The current order + 1; updated across calls. -C NONNEG -- Flag to determine nonnegativity constraints. -C NTYPE -- Identification code for the DNEDK routine. -C 1 ==> modified Newton; iterative linear solver. -C 2 ==> modified Newton; user-supplied linear solver. -C IERNLS -- Error flag for nonlinear solver. -C 0 ==> nonlinear solver converged. -C 1 ==> recoverable error inside non-linear solver. -C -1 ==> unrecoverable error inside non-linear solver. -C -C The following group of variables are passed as arguments to -C the Newton iteration solver. They are explained in greater detail -C in DNSK: -C TOLNEW, MULDEL, MAXIT, IERNEW -C -C IERTYP -- Flag which tells whether this subroutine is correct. -C 0 ==> correct subroutine. -C 1 ==> incorrect subroutine. -C -C----------------------------------------------------------------------- -C***ROUTINES CALLED -C RES, JACK, DDWNRM, DNSK -C -C***END PROLOGUE DNEDK -C -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION Y(*),YPRIME(*),WT(*) - DIMENSION PHI(NEQ,*),SAVR(*),DELTA(*),E(*) - DIMENSION WM(*),IWM(*) - DIMENSION GAMMA(*),RPAR(*),IPAR(*) - EXTERNAL RES, JACK, PSOL -C - PARAMETER (LNRE=12, LNJE=13, LLOCWP=29, LLCIWP=30) -C - SAVE MULDEL, MAXIT, XRATE - DATA MULDEL/0/, MAXIT/4/, XRATE/0.25D0/ -C -C Verify that this is the correct subroutine. -C - IERTYP = 0 - IF (NTYPE .NE. 1) THEN - IERTYP = 1 - GO TO 380 - ENDIF -C -C If this is the first step, perform initializations. -C - IF (JSTART .EQ. 0) THEN - CJOLD = CJ - JCALC = -1 - S = 100.D0 - ENDIF -C -C Perform all other initializations. -C - IERNLS = 0 - LWP = IWM(LLOCWP) - LIWP = IWM(LLCIWP) -C -C Decide whether to update the preconditioner. -C - IF (JFLG .NE. 0) THEN - TEMP1 = (1.0D0 - XRATE)/(1.0D0 + XRATE) - TEMP2 = 1.0D0/TEMP1 - IF (CJ/CJOLD .LT. TEMP1 .OR. CJ/CJOLD .GT. TEMP2) JCALC = -1 - IF (CJ .NE. CJLAST) S = 100.D0 - ELSE - JCALC = 0 - ENDIF -C -C Looping point for updating preconditioner with current stepsize. -C -300 CONTINUE -C -C Initialize all error flags to zero. -C - IERPJ = 0 - IRES = 0 - IERSL = 0 - IERNEW = 0 -C -C Predict the solution and derivative and compute the tolerance -C for the Newton iteration. -C - DO 310 I=1,NEQ - Y(I)=PHI(I,1) -310 YPRIME(I)=0.0D0 - DO 330 J=2,KP1 - DO 320 I=1,NEQ - Y(I)=Y(I)+PHI(I,J) -320 YPRIME(I)=YPRIME(I)+GAMMA(J)*PHI(I,J) -330 CONTINUE - EPLIN = EPLI*EPCON - TOLNEW = EPLIN -C -C Call RES to initialize DELTA. -C - IWM(LNRE)=IWM(LNRE)+1 - CALL RES(X,Y,YPRIME,CJ,DELTA,IRES,RPAR,IPAR) - IF (IRES .LT. 0) GO TO 380 -C -C -C If indicated, update the preconditioner. -C Set JCALC to 0 as an indicator that this has been done. -C - IF(JCALC .EQ. -1)THEN - IWM(LNJE) = IWM(LNJE) + 1 - JCALC=0 - CALL JACK (RES, IRES, NEQ, X, Y, YPRIME, WT, DELTA, E, H, CJ, - * WM(LWP), IWM(LIWP), IERPJ, RPAR, IPAR) - CJOLD=CJ - S = 100.D0 - IF (IRES .LT. 0) GO TO 380 - IF (IERPJ .NE. 0) GO TO 380 - ENDIF -C -C Call the nonlinear Newton solver. -C - CALL DNSK(X,Y,YPRIME,NEQ,RES,PSOL,WT,RPAR,IPAR,SAVR, - * DELTA,E,WM,IWM,CJ,SQRTN,RSQRTN,EPLIN,EPCON, - * S,TEMP1,TOLNEW,MULDEL,MAXIT,IRES,IERSL,IERNEW) -C - IF (IERNEW .GT. 0 .AND. JCALC .NE. 0) THEN -C -C The Newton iteration had a recoverable failure with an old -C preconditioner. Retry the step with a new preconditioner. -C - JCALC = -1 - GO TO 300 - ENDIF -C - IF (IERNEW .NE. 0) GO TO 380 -C -C The Newton iteration has converged. If nonnegativity of -C solution is required, set the solution nonnegative, if the -C perturbation to do it is small enough. If the change is too -C large, then consider the corrector iteration to have failed. -C - IF(NONNEG .EQ. 0) GO TO 390 - DO 360 I = 1,NEQ - 360 DELTA(I) = MIN(Y(I),0.0D0) - DELNRM = DDWNRM(NEQ,DELTA,WT,RPAR,IPAR) - IF(DELNRM .GT. EPCON) GO TO 380 - DO 370 I = 1,NEQ - 370 E(I) = E(I) - DELTA(I) - GO TO 390 -C -C -C Exits from nonlinear solver. -C No convergence with current preconditioner. -C Compute IERNLS and IDID accordingly. -C -380 CONTINUE - IF (IRES .LE. -2 .OR. IERSL .LT. 0 .OR. IERTYP .NE. 0) THEN - IERNLS = -1 - IF (IRES .LE. -2) IDID = -11 - IF (IERSL .LT. 0) IDID = -13 - IF (IERTYP .NE. 0) IDID = -15 - ELSE - IERNLS = 1 - IF (IRES .EQ. -1) IDID = -10 - IF (IERPJ .NE. 0) IDID = -5 - IF (IERSL .GT. 0) IDID = -14 - ENDIF -C -C -390 JCALC = 1 - RETURN -C -C------END OF SUBROUTINE DNEDK------------------------------------------ - END - SUBROUTINE DNSK(X,Y,YPRIME,NEQ,RES,PSOL,WT,RPAR,IPAR, - * SAVR,DELTA,E,WM,IWM,CJ,SQRTN,RSQRTN,EPLIN,EPCON, - * S,CONFAC,TOLNEW,MULDEL,MAXIT,IRES,IERSL,IERNEW) -C -C***BEGIN PROLOGUE DNSK -C***REFER TO DDASPK -C***DATE WRITTEN 891219 (YYMMDD) -C***REVISION DATE 900926 (YYMMDD) -C***REVISION DATE 950126 (YYMMDD) -C***REVISION DATE 000711 (YYMMDD) -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C DNSK solves a nonlinear system of -C algebraic equations of the form -C G(X,Y,YPRIME) = 0 for the unknown Y. -C -C The method used is a modified Newton scheme. -C -C The parameters represent -C -C X -- Independent variable. -C Y -- Solution vector. -C YPRIME -- Derivative of solution vector. -C NEQ -- Number of unknowns. -C RES -- External user-supplied subroutine -C to evaluate the residual. See RES description -C in DDASPK prologue. -C PSOL -- External user-supplied routine to solve -C a linear system using preconditioning. -C See explanation inside DDASPK. -C WT -- Vector of weights for error criterion. -C RPAR,IPAR -- Real and integer arrays used for communication -C between the calling program and external user -C routines. They are not altered within DASPK. -C SAVR -- Work vector for DNSK of length NEQ. -C DELTA -- Work vector for DNSK of length NEQ. -C E -- Error accumulation vector for DNSK of length NEQ. -C WM,IWM -- Real and integer arrays storing -C matrix information such as the matrix -C of partial derivatives, permutation -C vector, and various other information. -C CJ -- Parameter always proportional to 1/H (step size). -C SQRTN -- Square root of NEQ. -C RSQRTN -- reciprical of square root of NEQ. -C EPLIN -- Tolerance for linear system solver. -C EPCON -- Tolerance to test for convergence of the Newton -C iteration. -C S -- Used for error convergence tests. -C In the Newton iteration: S = RATE/(1.D0-RATE), -C where RATE is the estimated rate of convergence -C of the Newton iteration. -C -C The closer RATE is to 0., the faster the Newton -C iteration is converging; the closer RATE is to 1., -C the slower the Newton iteration is converging. -C -C The calling routine sends the initial value -C of S to the Newton iteration. -C CONFAC -- A residual scale factor to improve convergence. -C TOLNEW -- Tolerance on the norm of Newton correction in -C alternative Newton convergence test. -C MULDEL -- A flag indicating whether or not to multiply -C DELTA by CONFAC. -C 0 ==> do not scale DELTA by CONFAC. -C 1 ==> scale DELTA by CONFAC. -C MAXIT -- Maximum allowed number of Newton iterations. -C IRES -- Error flag returned from RES. See RES description -C in DDASPK prologue. If IRES = -1, then IERNEW -C will be set to 1. -C If IRES < -1, then IERNEW will be set to -1. -C IERSL -- Error flag for linear system solver. -C See IERSL description in subroutine DSLVK. -C If IERSL = 1, then IERNEW will be set to 1. -C If IERSL < 0, then IERNEW will be set to -1. -C IERNEW -- Error flag for Newton iteration. -C 0 ==> Newton iteration converged. -C 1 ==> recoverable error inside Newton iteration. -C -1 ==> unrecoverable error inside Newton iteration. -C----------------------------------------------------------------------- -C -C***ROUTINES CALLED -C RES, DSLVK, DDWNRM -C -C***END PROLOGUE DNSK -C -C - IMPLICIT DOUBLE PRECISION(A-H,O-Z) - DIMENSION Y(*),YPRIME(*),WT(*),DELTA(*),E(*),SAVR(*) - DIMENSION WM(*),IWM(*), RPAR(*),IPAR(*) - EXTERNAL RES, PSOL -C - PARAMETER (LNNI=19, LNRE=12) -C -C Initialize Newton counter M and accumulation vector E. -C - M = 0 - DO 100 I=1,NEQ -100 E(I) = 0.0D0 -C -C Corrector loop. -C -300 CONTINUE - IWM(LNNI) = IWM(LNNI) + 1 -C -C If necessary, multiply residual by convergence factor. -C - IF (MULDEL .EQ. 1) THEN - DO 320 I = 1,NEQ -320 DELTA(I) = DELTA(I) * CONFAC - ENDIF -C -C Save residual in SAVR. -C - DO 340 I = 1,NEQ -340 SAVR(I) = DELTA(I) -C -C Compute a new iterate. Store the correction in DELTA. -C - CALL DSLVK (NEQ, Y, X, YPRIME, SAVR, DELTA, WT, WM, IWM, - * RES, IRES, PSOL, IERSL, CJ, EPLIN, SQRTN, RSQRTN, RHOK, - * RPAR, IPAR) - IF (IRES .NE. 0 .OR. IERSL .NE. 0) GO TO 380 -C -C Update Y, E, and YPRIME. -C - DO 360 I=1,NEQ - Y(I) = Y(I) - DELTA(I) - E(I) = E(I) - DELTA(I) -360 YPRIME(I) = YPRIME(I) - CJ*DELTA(I) -C -C Test for convergence of the iteration. -C - DELNRM = DDWNRM(NEQ,DELTA,WT,RPAR,IPAR) - IF (M .EQ. 0) THEN - OLDNRM = DELNRM - IF (DELNRM .LE. TOLNEW) GO TO 370 - ELSE - RATE = (DELNRM/OLDNRM)**(1.0D0/M) - IF (RATE .GT. 0.9D0) GO TO 380 - S = RATE/(1.0D0 - RATE) - ENDIF - IF (S*DELNRM .LE. EPCON) GO TO 370 -C -C The corrector has not yet converged. Update M and test whether -C the maximum number of iterations have been tried. -C - M = M + 1 - IF (M .GE. MAXIT) GO TO 380 -C -C Evaluate the residual, and go back to do another iteration. -C - IWM(LNRE) = IWM(LNRE) + 1 - CALL RES(X,Y,YPRIME,CJ,DELTA,IRES,RPAR,IPAR) - IF (IRES .LT. 0) GO TO 380 - GO TO 300 -C -C The iteration has converged. -C -370 RETURN -C -C The iteration has not converged. Set IERNEW appropriately. -C -380 CONTINUE - IF (IRES .LE. -2 .OR. IERSL .LT. 0) THEN - IERNEW = -1 - ELSE - IERNEW = 1 - ENDIF - RETURN -C -C -C------END OF SUBROUTINE DNSK------------------------------------------- - END - SUBROUTINE DSLVK (NEQ, Y, TN, YPRIME, SAVR, X, EWT, WM, IWM, - * RES, IRES, PSOL, IERSL, CJ, EPLIN, SQRTN, RSQRTN, RHOK, - * RPAR, IPAR) -C -C***BEGIN PROLOGUE DSLVK -C***REFER TO DDASPK -C***DATE WRITTEN 890101 (YYMMDD) -C***REVISION DATE 900926 (YYMMDD) -C***REVISION DATE 940928 Removed MNEWT and added RHOK in call list. -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C DSLVK uses a restart algorithm and interfaces to DSPIGM for -C the solution of the linear system arising from a Newton iteration. -C -C In addition to variables described elsewhere, -C communication with DSLVK uses the following variables.. -C WM = Real work space containing data for the algorithm -C (Krylov basis vectors, Hessenberg matrix, etc.). -C IWM = Integer work space containing data for the algorithm. -C X = The right-hand side vector on input, and the solution vector -C on output, of length NEQ. -C IRES = Error flag from RES. -C IERSL = Output flag .. -C IERSL = 0 means no trouble occurred (or user RES routine -C returned IRES < 0) -C IERSL = 1 means the iterative method failed to converge -C (DSPIGM returned IFLAG > 0.) -C IERSL = -1 means there was a nonrecoverable error in the -C iterative solver, and an error exit will occur. -C----------------------------------------------------------------------- -C***ROUTINES CALLED -C DSCAL, DCOPY, DSPIGM -C -C***END PROLOGUE DSLVK -C - INTEGER NEQ, IWM, IRES, IERSL, IPAR - DOUBLE PRECISION Y, TN, YPRIME, SAVR, X, EWT, WM, CJ, EPLIN, - 1 SQRTN, RSQRTN, RHOK, RPAR - DIMENSION Y(*), YPRIME(*), SAVR(*), X(*), EWT(*), - 1 WM(*), IWM(*), RPAR(*), IPAR(*) -C - INTEGER IFLAG, IRST, NRSTS, NRMAX, LR, LDL, LHES, LGMR, LQ, LV, - 1 LWK, LZ, MAXLP1, NPSL - INTEGER NLI, NPS, NCFL, NRE, MAXL, KMP, MITER - EXTERNAL RES, PSOL -C - PARAMETER (LNRE=12, LNCFL=16, LNLI=20, LNPS=21) - PARAMETER (LLOCWP=29, LLCIWP=30) - PARAMETER (LMITER=23, LMAXL=24, LKMP=25, LNRMAX=26) -C -C----------------------------------------------------------------------- -C IRST is set to 1, to indicate restarting is in effect. -C NRMAX is the maximum number of restarts. -C----------------------------------------------------------------------- - DATA IRST/1/ -C - LIWP = IWM(LLCIWP) - NLI = IWM(LNLI) - NPS = IWM(LNPS) - NCFL = IWM(LNCFL) - NRE = IWM(LNRE) - LWP = IWM(LLOCWP) - MAXL = IWM(LMAXL) - KMP = IWM(LKMP) - NRMAX = IWM(LNRMAX) - MITER = IWM(LMITER) - IERSL = 0 - IRES = 0 -C----------------------------------------------------------------------- -C Use a restarting strategy to solve the linear system -C P*X = -F. Parse the work vector, and perform initializations. -C Note that zero is the initial guess for X. -C----------------------------------------------------------------------- - MAXLP1 = MAXL + 1 - LV = 1 - LR = LV + NEQ*MAXL - LHES = LR + NEQ + 1 - LQ = LHES + MAXL*MAXLP1 - LWK = LQ + 2*MAXL - LDL = LWK + MIN0(1,MAXL-KMP)*NEQ - LZ = LDL + NEQ - CALL DSCAL (NEQ, RSQRTN, EWT, 1) - CALL DCOPY (NEQ, X, 1, WM(LR), 1) - DO 110 I = 1,NEQ - 110 X(I) = 0.D0 -C----------------------------------------------------------------------- -C Top of loop for the restart algorithm. Initial pass approximates -C X and sets up a transformed system to perform subsequent restarts -C to update X. NRSTS is initialized to -1, because restarting -C does not occur until after the first pass. -C Update NRSTS; conditionally copy DL to R; call the DSPIGM -C algorithm to solve A*Z = R; updated counters; update X with -C the residual solution. -C Note: if convergence is not achieved after NRMAX restarts, -C then the linear solver is considered to have failed. -C----------------------------------------------------------------------- - NRSTS = -1 - 115 CONTINUE - NRSTS = NRSTS + 1 - IF (NRSTS .GT. 0) CALL DCOPY (NEQ, WM(LDL), 1, WM(LR),1) - CALL DSPIGM (NEQ, TN, Y, YPRIME, SAVR, WM(LR), EWT, MAXL, MAXLP1, - 1 KMP, EPLIN, CJ, RES, IRES, NRES, PSOL, NPSL, WM(LZ), WM(LV), - 2 WM(LHES), WM(LQ), LGMR, WM(LWP), IWM(LIWP), WM(LWK), - 3 WM(LDL), RHOK, IFLAG, IRST, NRSTS, RPAR, IPAR) - NLI = NLI + LGMR - NPS = NPS + NPSL - NRE = NRE + NRES - DO 120 I = 1,NEQ - 120 X(I) = X(I) + WM(LZ+I-1) - IF ((IFLAG .EQ. 1) .AND. (NRSTS .LT. NRMAX) .AND. (IRES .EQ. 0)) - 1 GO TO 115 -C----------------------------------------------------------------------- -C The restart scheme is finished. Test IRES and IFLAG to see if -C convergence was not achieved, and set flags accordingly. -C----------------------------------------------------------------------- - IF (IRES .LT. 0) THEN - NCFL = NCFL + 1 - ELSE IF (IFLAG .NE. 0) THEN - NCFL = NCFL + 1 - IF (IFLAG .GT. 0) IERSL = 1 - IF (IFLAG .LT. 0) IERSL = -1 - ENDIF -C----------------------------------------------------------------------- -C Update IWM with counters, rescale EWT, and return. -C----------------------------------------------------------------------- - IWM(LNLI) = NLI - IWM(LNPS) = NPS - IWM(LNCFL) = NCFL - IWM(LNRE) = NRE - CALL DSCAL (NEQ, SQRTN, EWT, 1) - RETURN -C -C------END OF SUBROUTINE DSLVK------------------------------------------ - END - SUBROUTINE DSPIGM (NEQ, TN, Y, YPRIME, SAVR, R, WGHT, MAXL, - * MAXLP1, KMP, EPLIN, CJ, RES, IRES, NRE, PSOL, NPSL, Z, V, - * HES, Q, LGMR, WP, IWP, WK, DL, RHOK, IFLAG, IRST, NRSTS, - * RPAR, IPAR) -C -C***BEGIN PROLOGUE DSPIGM -C***DATE WRITTEN 890101 (YYMMDD) -C***REVISION DATE 900926 (YYMMDD) -C***REVISION DATE 940927 Removed MNEWT and added RHOK in call list. -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C This routine solves the linear system A * Z = R using a scaled -C preconditioned version of the generalized minimum residual method. -C An initial guess of Z = 0 is assumed. -C -C On entry -C -C NEQ = Problem size, passed to PSOL. -C -C TN = Current Value of T. -C -C Y = Array Containing current dependent variable vector. -C -C YPRIME = Array Containing current first derivative of Y. -C -C SAVR = Array containing current value of G(T,Y,YPRIME). -C -C R = The right hand side of the system A*Z = R. -C R is also used as work space when computing -C the final approximation and will therefore be -C destroyed. -C (R is the same as V(*,MAXL+1) in the call to DSPIGM.) -C -C WGHT = The vector of length NEQ containing the nonzero -C elements of the diagonal scaling matrix. -C -C MAXL = The maximum allowable order of the matrix H. -C -C MAXLP1 = MAXL + 1, used for dynamic dimensioning of HES. -C -C KMP = The number of previous vectors the new vector, VNEW, -C must be made orthogonal to. (KMP .LE. MAXL.) -C -C EPLIN = Tolerance on residuals R-A*Z in weighted rms norm. -C -C CJ = Scalar proportional to current value of -C 1/(step size H). -C -C WK = Real work array used by routine DATV and PSOL. -C -C DL = Real work array used for calculation of the residual -C norm RHO when the method is incomplete (KMP.LT.MAXL) -C and/or when using restarting. -C -C WP = Real work array used by preconditioner PSOL. -C -C IWP = Integer work array used by preconditioner PSOL. -C -C IRST = Method flag indicating if restarting is being -C performed. IRST .GT. 0 means restarting is active, -C while IRST = 0 means restarting is not being used. -C -C NRSTS = Counter for the number of restarts on the current -C call to DSPIGM. If NRSTS .GT. 0, then the residual -C R is already scaled, and so scaling of R is not -C necessary. -C -C -C On Return -C -C Z = The final computed approximation to the solution -C of the system A*Z = R. -C -C LGMR = The number of iterations performed and -C the current order of the upper Hessenberg -C matrix HES. -C -C NRE = The number of calls to RES (i.e. DATV) -C -C NPSL = The number of calls to PSOL. -C -C V = The neq by (LGMR+1) array containing the LGMR -C orthogonal vectors V(*,1) to V(*,LGMR). -C -C HES = The upper triangular factor of the QR decomposition -C of the (LGMR+1) by LGMR upper Hessenberg matrix whose -C entries are the scaled inner-products of A*V(*,I) -C and V(*,K). -C -C Q = Real array of length 2*MAXL containing the components -C of the givens rotations used in the QR decomposition -C of HES. It is loaded in DHEQR and used in DHELS. -C -C IRES = Error flag from RES. -C -C DL = Scaled preconditioned residual, -C (D-inverse)*(P-inverse)*(R-A*Z). Only loaded when -C performing restarts of the Krylov iteration. -C -C RHOK = Weighted norm of final preconditioned residual. -C -C IFLAG = Integer error flag.. -C 0 Means convergence in LGMR iterations, LGMR.LE.MAXL. -C 1 Means the convergence test did not pass in MAXL -C iterations, but the new residual norm (RHO) is -C .LT. the old residual norm (RNRM), and so Z is -C computed. -C 2 Means the convergence test did not pass in MAXL -C iterations, new residual norm (RHO) .GE. old residual -C norm (RNRM), and the initial guess, Z = 0, is -C returned. -C 3 Means there was a recoverable error in PSOL -C caused by the preconditioner being out of date. -C -1 Means there was an unrecoverable error in PSOL. -C -C----------------------------------------------------------------------- -C***ROUTINES CALLED -C PSOL, DNRM2, DSCAL, DATV, DORTH, DHEQR, DCOPY, DHELS, DAXPY -C -C***END PROLOGUE DSPIGM -C - INTEGER NEQ,MAXL,MAXLP1,KMP,IRES,NRE,NPSL,LGMR,IWP, - 1 IFLAG,IRST,NRSTS,IPAR - DOUBLE PRECISION TN,Y,YPRIME,SAVR,R,WGHT,EPLIN,CJ,Z,V,HES,Q,WP,WK, - 1 DL,RHOK,RPAR - DIMENSION Y(*), YPRIME(*), SAVR(*), R(*), WGHT(*), Z(*), - 1 V(NEQ,*), HES(MAXLP1,*), Q(*), WP(*), IWP(*), WK(*), DL(*), - 2 RPAR(*), IPAR(*) - INTEGER I, IER, INFO, IP1, I2, J, K, LL, LLP1 - DOUBLE PRECISION RNRM,C,DLNRM,PROD,RHO,S,SNORMW,DNRM2,TEM - EXTERNAL RES, PSOL -C - IER = 0 - IFLAG = 0 - LGMR = 0 - NPSL = 0 - NRE = 0 -C----------------------------------------------------------------------- -C The initial guess for Z is 0. The initial residual is therefore -C the vector R. Initialize Z to 0. -C----------------------------------------------------------------------- - DO 10 I = 1,NEQ - 10 Z(I) = 0.0D0 -C----------------------------------------------------------------------- -C Apply inverse of left preconditioner to vector R if NRSTS .EQ. 0. -C Form V(*,1), the scaled preconditioned right hand side. -C----------------------------------------------------------------------- - IF (NRSTS .EQ. 0) THEN - CALL PSOL (NEQ, TN, Y, YPRIME, SAVR, WK, CJ, WGHT, WP, IWP, - 1 R, EPLIN, IER, RPAR, IPAR) - NPSL = 1 - IF (IER .NE. 0) GO TO 300 - DO 30 I = 1,NEQ - 30 V(I,1) = R(I)*WGHT(I) - ELSE - DO 35 I = 1,NEQ - 35 V(I,1) = R(I) - ENDIF -C----------------------------------------------------------------------- -C Calculate norm of scaled vector V(*,1) and normalize it -C If, however, the norm of V(*,1) (i.e. the norm of the preconditioned -C residual) is .le. EPLIN, then return with Z=0. -C----------------------------------------------------------------------- - RNRM = DNRM2 (NEQ, V, 1) - IF (RNRM .LE. EPLIN) THEN - RHOK = RNRM - RETURN - ENDIF - TEM = 1.0D0/RNRM - CALL DSCAL (NEQ, TEM, V(1,1), 1) -C----------------------------------------------------------------------- -C Zero out the HES array. -C----------------------------------------------------------------------- - DO 65 J = 1,MAXL - DO 60 I = 1,MAXLP1 - 60 HES(I,J) = 0.0D0 - 65 CONTINUE -C----------------------------------------------------------------------- -C Main loop to compute the vectors V(*,2) to V(*,MAXL). -C The running product PROD is needed for the convergence test. -C----------------------------------------------------------------------- - PROD = 1.0D0 - DO 90 LL = 1,MAXL - LGMR = LL -C----------------------------------------------------------------------- -C Call routine DATV to compute VNEW = ABAR*V(LL), where ABAR is -C the matrix A with scaling and inverse preconditioner factors applied. -C Call routine DORTH to orthogonalize the new vector VNEW = V(*,LL+1). -C call routine DHEQR to update the factors of HES. -C----------------------------------------------------------------------- - CALL DATV (NEQ, Y, TN, YPRIME, SAVR, V(1,LL), WGHT, Z, - 1 RES, IRES, PSOL, V(1,LL+1), WK, WP, IWP, CJ, EPLIN, - 1 IER, NRE, NPSL, RPAR, IPAR) - IF (IRES .LT. 0) RETURN - IF (IER .NE. 0) GO TO 300 - CALL DORTH (V(1,LL+1), V, HES, NEQ, LL, MAXLP1, KMP, SNORMW) - HES(LL+1,LL) = SNORMW - CALL DHEQR (HES, MAXLP1, LL, Q, INFO, LL) - IF (INFO .EQ. LL) GO TO 120 -C----------------------------------------------------------------------- -C Update RHO, the estimate of the norm of the residual R - A*ZL. -C If KMP .LT. MAXL, then the vectors V(*,1),...,V(*,LL+1) are not -C necessarily orthogonal for LL .GT. KMP. The vector DL must then -C be computed, and its norm used in the calculation of RHO. -C----------------------------------------------------------------------- - PROD = PROD*Q(2*LL) - RHO = ABS(PROD*RNRM) - IF ((LL.GT.KMP) .AND. (KMP.LT.MAXL)) THEN - IF (LL .EQ. KMP+1) THEN - CALL DCOPY (NEQ, V(1,1), 1, DL, 1) - DO 75 I = 1,KMP - IP1 = I + 1 - I2 = I*2 - S = Q(I2) - C = Q(I2-1) - DO 70 K = 1,NEQ - 70 DL(K) = S*DL(K) + C*V(K,IP1) - 75 CONTINUE - ENDIF - S = Q(2*LL) - C = Q(2*LL-1)/SNORMW - LLP1 = LL + 1 - DO 80 K = 1,NEQ - 80 DL(K) = S*DL(K) + C*V(K,LLP1) - DLNRM = DNRM2 (NEQ, DL, 1) - RHO = RHO*DLNRM - ENDIF -C----------------------------------------------------------------------- -C Test for convergence. If passed, compute approximation ZL. -C If failed and LL .LT. MAXL, then continue iterating. -C----------------------------------------------------------------------- - IF (RHO .LE. EPLIN) GO TO 200 - IF (LL .EQ. MAXL) GO TO 100 -C----------------------------------------------------------------------- -C Rescale so that the norm of V(1,LL+1) is one. -C----------------------------------------------------------------------- - TEM = 1.0D0/SNORMW - CALL DSCAL (NEQ, TEM, V(1,LL+1), 1) - 90 CONTINUE - 100 CONTINUE - IF (RHO .LT. RNRM) GO TO 150 - 120 CONTINUE - IFLAG = 2 - DO 130 I = 1,NEQ - 130 Z(I) = 0.D0 - RETURN - 150 IFLAG = 1 -C----------------------------------------------------------------------- -C The tolerance was not met, but the residual norm was reduced. -C If performing restarting (IRST .gt. 0) calculate the residual vector -C RL and store it in the DL array. If the incomplete version is -C being used (KMP .lt. MAXL) then DL has already been calculated. -C----------------------------------------------------------------------- - IF (IRST .GT. 0) THEN - IF (KMP .EQ. MAXL) THEN -C -C Calculate DL from the V(I)'s. -C - CALL DCOPY (NEQ, V(1,1), 1, DL, 1) - MAXLM1 = MAXL - 1 - DO 175 I = 1,MAXLM1 - IP1 = I + 1 - I2 = I*2 - S = Q(I2) - C = Q(I2-1) - DO 170 K = 1,NEQ - 170 DL(K) = S*DL(K) + C*V(K,IP1) - 175 CONTINUE - S = Q(2*MAXL) - C = Q(2*MAXL-1)/SNORMW - DO 180 K = 1,NEQ - 180 DL(K) = S*DL(K) + C*V(K,MAXLP1) - ENDIF -C -C Scale DL by RNRM*PROD to obtain the residual RL. -C - TEM = RNRM*PROD - CALL DSCAL(NEQ, TEM, DL, 1) - ENDIF -C----------------------------------------------------------------------- -C Compute the approximation ZL to the solution. -C Since the vector Z was used as work space, and the initial guess -C of the Newton correction is zero, Z must be reset to zero. -C----------------------------------------------------------------------- - 200 CONTINUE - LL = LGMR - LLP1 = LL + 1 - DO 210 K = 1,LLP1 - 210 R(K) = 0.0D0 - R(1) = RNRM - CALL DHELS (HES, MAXLP1, LL, Q, R) - DO 220 K = 1,NEQ - 220 Z(K) = 0.0D0 - DO 230 I = 1,LL - CALL DAXPY (NEQ, R(I), V(1,I), 1, Z, 1) - 230 CONTINUE - DO 240 I = 1,NEQ - 240 Z(I) = Z(I)/WGHT(I) -C Load RHO into RHOK. - RHOK = RHO - RETURN -C----------------------------------------------------------------------- -C This block handles error returns forced by routine PSOL. -C----------------------------------------------------------------------- - 300 CONTINUE - IF (IER .LT. 0) IFLAG = -1 - IF (IER .GT. 0) IFLAG = 3 -C - RETURN -C -C------END OF SUBROUTINE DSPIGM----------------------------------------- - END - SUBROUTINE DATV (NEQ, Y, TN, YPRIME, SAVR, V, WGHT, YPTEM, RES, - * IRES, PSOL, Z, VTEM, WP, IWP, CJ, EPLIN, IER, NRE, NPSL, - * RPAR,IPAR) -C -C***BEGIN PROLOGUE DATV -C***DATE WRITTEN 890101 (YYMMDD) -C***REVISION DATE 900926 (YYMMDD) -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C This routine computes the product -C -C Z = (D-inverse)*(P-inverse)*(dF/dY)*(D*V), -C -C where F(Y) = G(T, Y, CJ*(Y-A)), CJ is a scalar proportional to 1/H, -C and A involves the past history of Y. The quantity CJ*(Y-A) is -C an approximation to the first derivative of Y and is stored -C in the array YPRIME. Note that dF/dY = dG/dY + CJ*dG/dYPRIME. -C -C D is a diagonal scaling matrix, and P is the left preconditioning -C matrix. V is assumed to have L2 norm equal to 1. -C The product is stored in Z and is computed by means of a -C difference quotient, a call to RES, and one call to PSOL. -C -C On entry -C -C NEQ = Problem size, passed to RES and PSOL. -C -C Y = Array containing current dependent variable vector. -C -C YPRIME = Array containing current first derivative of y. -C -C SAVR = Array containing current value of G(T,Y,YPRIME). -C -C V = Real array of length NEQ (can be the same array as Z). -C -C WGHT = Array of length NEQ containing scale factors. -C 1/WGHT(I) are the diagonal elements of the matrix D. -C -C YPTEM = Work array of length NEQ. -C -C VTEM = Work array of length NEQ used to store the -C unscaled version of V. -C -C WP = Real work array used by preconditioner PSOL. -C -C IWP = Integer work array used by preconditioner PSOL. -C -C CJ = Scalar proportional to current value of -C 1/(step size H). -C -C -C On return -C -C Z = Array of length NEQ containing desired scaled -C matrix-vector product. -C -C IRES = Error flag from RES. -C -C IER = Error flag from PSOL. -C -C NRE = The number of calls to RES. -C -C NPSL = The number of calls to PSOL. -C -C----------------------------------------------------------------------- -C***ROUTINES CALLED -C RES, PSOL -C -C***END PROLOGUE DATV -C - INTEGER NEQ, IRES, IWP, IER, NRE, NPSL, IPAR - DOUBLE PRECISION Y, TN, YPRIME, SAVR, V, WGHT, YPTEM, Z, VTEM, - 1 WP, CJ, RPAR - DIMENSION Y(*), YPRIME(*), SAVR(*), V(*), WGHT(*), YPTEM(*), - 1 Z(*), VTEM(*), WP(*), IWP(*), RPAR(*), IPAR(*) - INTEGER I - DOUBLE PRECISION EPLIN - EXTERNAL RES, PSOL -C - IRES = 0 -C----------------------------------------------------------------------- -C Set VTEM = D * V. -C----------------------------------------------------------------------- - DO 10 I = 1,NEQ - 10 VTEM(I) = V(I)/WGHT(I) - IER = 0 -C----------------------------------------------------------------------- -C Store Y in Z and increment Z by VTEM. -C Store YPRIME in YPTEM and increment YPTEM by VTEM*CJ. -C----------------------------------------------------------------------- - DO 20 I = 1,NEQ - YPTEM(I) = YPRIME(I) + VTEM(I)*CJ - 20 Z(I) = Y(I) + VTEM(I) -C----------------------------------------------------------------------- -C Call RES with incremented Y, YPRIME arguments -C stored in Z, YPTEM. VTEM is overwritten with new residual. -C----------------------------------------------------------------------- - CONTINUE - CALL RES(TN,Z,YPTEM,CJ,VTEM,IRES,RPAR,IPAR) - NRE = NRE + 1 - IF (IRES .LT. 0) RETURN -C----------------------------------------------------------------------- -C Set Z = (dF/dY) * VBAR using difference quotient. -C (VBAR is old value of VTEM before calling RES) -C----------------------------------------------------------------------- - DO 70 I = 1,NEQ - 70 Z(I) = VTEM(I) - SAVR(I) -C----------------------------------------------------------------------- -C Apply inverse of left preconditioner to Z. -C----------------------------------------------------------------------- - CALL PSOL (NEQ, TN, Y, YPRIME, SAVR, YPTEM, CJ, WGHT, WP, IWP, - 1 Z, EPLIN, IER, RPAR, IPAR) - NPSL = NPSL + 1 - IF (IER .NE. 0) RETURN -C----------------------------------------------------------------------- -C Apply D-inverse to Z and return. -C----------------------------------------------------------------------- - DO 90 I = 1,NEQ - 90 Z(I) = Z(I)*WGHT(I) - RETURN -C -C------END OF SUBROUTINE DATV------------------------------------------- - END - SUBROUTINE DORTH (VNEW, V, HES, N, LL, LDHES, KMP, SNORMW) -C -C***BEGIN PROLOGUE DORTH -C***DATE WRITTEN 890101 (YYMMDD) -C***REVISION DATE 900926 (YYMMDD) -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C This routine orthogonalizes the vector VNEW against the previous -C KMP vectors in the V array. It uses a modified Gram-Schmidt -C orthogonalization procedure with conditional reorthogonalization. -C -C On entry -C -C VNEW = The vector of length N containing a scaled product -C OF The Jacobian and the vector V(*,LL). -C -C V = The N x LL array containing the previous LL -C orthogonal vectors V(*,1) to V(*,LL). -C -C HES = An LL x LL upper Hessenberg matrix containing, -C in HES(I,K), K.LT.LL, scaled inner products of -C A*V(*,K) and V(*,I). -C -C LDHES = The leading dimension of the HES array. -C -C N = The order of the matrix A, and the length of VNEW. -C -C LL = The current order of the matrix HES. -C -C KMP = The number of previous vectors the new vector VNEW -C must be made orthogonal to (KMP .LE. MAXL). -C -C -C On return -C -C VNEW = The new vector orthogonal to V(*,I0), -C where I0 = MAX(1, LL-KMP+1). -C -C HES = Upper Hessenberg matrix with column LL filled in with -C scaled inner products of A*V(*,LL) and V(*,I). -C -C SNORMW = L-2 norm of VNEW. -C -C----------------------------------------------------------------------- -C***ROUTINES CALLED -C DDOT, DNRM2, DAXPY -C -C***END PROLOGUE DORTH -C - INTEGER N, LL, LDHES, KMP - DOUBLE PRECISION VNEW, V, HES, SNORMW - DIMENSION VNEW(*), V(N,*), HES(LDHES,*) - INTEGER I, I0 - DOUBLE PRECISION ARG, DDOT, DNRM2, SUMDSQ, TEM, VNRM -C -C----------------------------------------------------------------------- -C Get norm of unaltered VNEW for later use. -C----------------------------------------------------------------------- - VNRM = DNRM2 (N, VNEW, 1) -C----------------------------------------------------------------------- -C Do Modified Gram-Schmidt on VNEW = A*V(LL). -C Scaled inner products give new column of HES. -C Projections of earlier vectors are subtracted from VNEW. -C----------------------------------------------------------------------- - I0 = MAX0(1,LL-KMP+1) - DO 10 I = I0,LL - HES(I,LL) = DDOT (N, V(1,I), 1, VNEW, 1) - TEM = -HES(I,LL) - CALL DAXPY (N, TEM, V(1,I), 1, VNEW, 1) - 10 CONTINUE -C----------------------------------------------------------------------- -C Compute SNORMW = norm of VNEW. -C If VNEW is small compared to its input value (in norm), then -C Reorthogonalize VNEW to V(*,1) through V(*,LL). -C Correct if relative correction exceeds 1000*(unit roundoff). -C Finally, correct SNORMW using the dot products involved. -C----------------------------------------------------------------------- - SNORMW = DNRM2 (N, VNEW, 1) - IF (VNRM + 0.001D0*SNORMW .NE. VNRM) RETURN - SUMDSQ = 0.0D0 - DO 30 I = I0,LL - TEM = -DDOT (N, V(1,I), 1, VNEW, 1) - IF (HES(I,LL) + 0.001D0*TEM .EQ. HES(I,LL)) GO TO 30 - HES(I,LL) = HES(I,LL) - TEM - CALL DAXPY (N, TEM, V(1,I), 1, VNEW, 1) - SUMDSQ = SUMDSQ + TEM**2 - 30 CONTINUE - IF (SUMDSQ .EQ. 0.0D0) RETURN - ARG = MAX(0.0D0,SNORMW**2 - SUMDSQ) - SNORMW = SQRT(ARG) - RETURN -C -C------END OF SUBROUTINE DORTH------------------------------------------ - END - SUBROUTINE DHEQR (A, LDA, N, Q, INFO, IJOB) -C -C***BEGIN PROLOGUE DHEQR -C***DATE WRITTEN 890101 (YYMMDD) -C***REVISION DATE 900926 (YYMMDD) -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C This routine performs a QR decomposition of an upper -C Hessenberg matrix A. There are two options available: -C -C (1) performing a fresh decomposition -C (2) updating the QR factors by adding a row and A -C column to the matrix A. -C -C DHEQR decomposes an upper Hessenberg matrix by using Givens -C rotations. -C -C On entry -C -C A DOUBLE PRECISION(LDA, N) -C The matrix to be decomposed. -C -C LDA INTEGER -C The leading dimension of the array A. -C -C N INTEGER -C A is an (N+1) by N Hessenberg matrix. -C -C IJOB INTEGER -C = 1 Means that a fresh decomposition of the -C matrix A is desired. -C .GE. 2 Means that the current decomposition of A -C will be updated by the addition of a row -C and a column. -C On return -C -C A The upper triangular matrix R. -C The factorization can be written Q*A = R, where -C Q is a product of Givens rotations and R is upper -C triangular. -C -C Q DOUBLE PRECISION(2*N) -C The factors C and S of each Givens rotation used -C in decomposing A. -C -C INFO INTEGER -C = 0 normal value. -C = K If A(K,K) .EQ. 0.0. This is not an error -C condition for this subroutine, but it does -C indicate that DHELS will divide by zero -C if called. -C -C Modification of LINPACK. -C Peter Brown, Lawrence Livermore Natl. Lab. -C -C----------------------------------------------------------------------- -C***ROUTINES CALLED (NONE) -C -C***END PROLOGUE DHEQR -C - INTEGER LDA, N, INFO, IJOB - DOUBLE PRECISION A(LDA,*), Q(*) - INTEGER I, IQ, J, K, KM1, KP1, NM1 - DOUBLE PRECISION C, S, T, T1, T2 -C - IF (IJOB .GT. 1) GO TO 70 -C----------------------------------------------------------------------- -C A new factorization is desired. -C----------------------------------------------------------------------- -C -C QR decomposition without pivoting. -C - INFO = 0 - DO 60 K = 1, N - KM1 = K - 1 - KP1 = K + 1 -C -C Compute Kth column of R. -C First, multiply the Kth column of A by the previous -C K-1 Givens rotations. -C - IF (KM1 .LT. 1) GO TO 20 - DO 10 J = 1, KM1 - I = 2*(J-1) + 1 - T1 = A(J,K) - T2 = A(J+1,K) - C = Q(I) - S = Q(I+1) - A(J,K) = C*T1 - S*T2 - A(J+1,K) = S*T1 + C*T2 - 10 CONTINUE -C -C Compute Givens components C and S. -C - 20 CONTINUE - IQ = 2*KM1 + 1 - T1 = A(K,K) - T2 = A(KP1,K) - IF (T2 .NE. 0.0D0) GO TO 30 - C = 1.0D0 - S = 0.0D0 - GO TO 50 - 30 CONTINUE - IF (ABS(T2) .LT. ABS(T1)) GO TO 40 - T = T1/T2 - S = -1.0D0/SQRT(1.0D0+T*T) - C = -S*T - GO TO 50 - 40 CONTINUE - T = T2/T1 - C = 1.0D0/SQRT(1.0D0+T*T) - S = -C*T - 50 CONTINUE - Q(IQ) = C - Q(IQ+1) = S - A(K,K) = C*T1 - S*T2 - IF (A(K,K) .EQ. 0.0D0) INFO = K - 60 CONTINUE - RETURN -C----------------------------------------------------------------------- -C The old factorization of A will be updated. A row and a column -C has been added to the matrix A. -C N by N-1 is now the old size of the matrix. -C----------------------------------------------------------------------- - 70 CONTINUE - NM1 = N - 1 -C----------------------------------------------------------------------- -C Multiply the new column by the N previous Givens rotations. -C----------------------------------------------------------------------- - DO 100 K = 1,NM1 - I = 2*(K-1) + 1 - T1 = A(K,N) - T2 = A(K+1,N) - C = Q(I) - S = Q(I+1) - A(K,N) = C*T1 - S*T2 - A(K+1,N) = S*T1 + C*T2 - 100 CONTINUE -C----------------------------------------------------------------------- -C Complete update of decomposition by forming last Givens rotation, -C and multiplying it times the column vector (A(N,N),A(NP1,N)). -C----------------------------------------------------------------------- - INFO = 0 - T1 = A(N,N) - T2 = A(N+1,N) - IF (T2 .NE. 0.0D0) GO TO 110 - C = 1.0D0 - S = 0.0D0 - GO TO 130 - 110 CONTINUE - IF (ABS(T2) .LT. ABS(T1)) GO TO 120 - T = T1/T2 - S = -1.0D0/SQRT(1.0D0+T*T) - C = -S*T - GO TO 130 - 120 CONTINUE - T = T2/T1 - C = 1.0D0/SQRT(1.0D0+T*T) - S = -C*T - 130 CONTINUE - IQ = 2*N - 1 - Q(IQ) = C - Q(IQ+1) = S - A(N,N) = C*T1 - S*T2 - IF (A(N,N) .EQ. 0.0D0) INFO = N - RETURN -C -C------END OF SUBROUTINE DHEQR------------------------------------------ - END - SUBROUTINE DHELS (A, LDA, N, Q, B) -C -C***BEGIN PROLOGUE DHELS -C***DATE WRITTEN 890101 (YYMMDD) -C***REVISION DATE 900926 (YYMMDD) -C -C -C----------------------------------------------------------------------- -C***DESCRIPTION -C -C This is similar to the LINPACK routine DGESL except that -C A is an upper Hessenberg matrix. -C -C DHELS solves the least squares problem -C -C MIN (B-A*X,B-A*X) -C -C using the factors computed by DHEQR. -C -C On entry -C -C A DOUBLE PRECISION (LDA, N) -C The output from DHEQR which contains the upper -C triangular factor R in the QR decomposition of A. -C -C LDA INTEGER -C The leading dimension of the array A . -C -C N INTEGER -C A is originally an (N+1) by N matrix. -C -C Q DOUBLE PRECISION(2*N) -C The coefficients of the N givens rotations -C used in the QR factorization of A. -C -C B DOUBLE PRECISION(N+1) -C The right hand side vector. -C -C -C On return -C -C B The solution vector X. -C -C -C Modification of LINPACK. -C Peter Brown, Lawrence Livermore Natl. Lab. -C -C----------------------------------------------------------------------- -C***ROUTINES CALLED -C DAXPY -C -C***END PROLOGUE DHELS -C - INTEGER LDA, N - DOUBLE PRECISION A(LDA,*), B(*), Q(*) - INTEGER IQ, K, KB, KP1 - DOUBLE PRECISION C, S, T, T1, T2 -C -C Minimize (B-A*X,B-A*X). -C First form Q*B. -C - DO 20 K = 1, N - KP1 = K + 1 - IQ = 2*(K-1) + 1 - C = Q(IQ) - S = Q(IQ+1) - T1 = B(K) - T2 = B(KP1) - B(K) = C*T1 - S*T2 - B(KP1) = S*T1 + C*T2 - 20 CONTINUE -C -C Now solve R*X = Q*B. -C - DO 40 KB = 1, N - K = N + 1 - KB - B(K) = B(K)/A(K,K) - T = -B(K) - CALL DAXPY (K-1, T, A(1,K), 1, B(1), 1) - 40 CONTINUE - RETURN -C -C------END OF SUBROUTINE DHELS------------------------------------------ - END diff --git a/Cantera/ext/math/dgbefa.f b/Cantera/ext/math/dgbefa.f deleted file mode 100644 index c26e6f579..000000000 --- a/Cantera/ext/math/dgbefa.f +++ /dev/null @@ -1,174 +0,0 @@ - subroutine dgbfa(abd,lda,n,ml,mu,ipvt,info) - integer lda,n,ml,mu,ipvt(1),info - double precision abd(lda,1) -c -c dgbfa factors a double precision band matrix by elimination. -c -c dgbfa is usually called by dgbco, but it can be called -c directly with a saving in time if rcond is not needed. -c -c on entry -c -c abd double precision(lda, n) -c contains the matrix in band storage. the columns -c of the matrix are stored in the columns of abd and -c the diagonals of the matrix are stored in rows -c ml+1 through 2*ml+mu+1 of abd . -c see the comments below for details. -c -c lda integer -c the leading dimension of the array abd . -c lda must be .ge. 2*ml + mu + 1 . -c -c n integer -c the order of the original matrix. -c -c ml integer -c number of diagonals below the main diagonal. -c 0 .le. ml .lt. n . -c -c mu integer -c number of diagonals above the main diagonal. -c 0 .le. mu .lt. n . -c more efficient if ml .le. mu . -c on return -c -c abd an upper triangular matrix in band storage and -c the multipliers which were used to obtain it. -c the factorization can be written a = l*u where -c l is a product of permutation and unit lower -c triangular matrices and u is upper triangular. -c -c ipvt integer(n) -c an integer vector of pivot indices. -c -c info integer -c = 0 normal value. -c = k if u(k,k) .eq. 0.0 . this is not an error -c condition for this subroutine, but it does -c indicate that dgbsl will divide by zero if -c called. use rcond in dgbco for a reliable -c indication of singularity. -c -c band storage -c -c if a is a band matrix, the following program segment -c will set up the input. -c -c ml = (band width below the diagonal) -c mu = (band width above the diagonal) -c m = ml + mu + 1 -c do 20 j = 1, n -c i1 = max0(1, j-mu) -c i2 = min0(n, j+ml) -c do 10 i = i1, i2 -c k = i - j + m -c abd(k,j) = a(i,j) -c 10 continue -c 20 continue -c -c this uses rows ml+1 through 2*ml+mu+1 of abd . -c in addition, the first ml rows in abd are used for -c elements generated during the triangularization. -c the total number of rows needed in abd is 2*ml+mu+1 . -c the ml+mu by ml+mu upper left triangle and the -c ml by ml lower right triangle are not referenced. -c -c linpack. this version dated 08/14/78 . -c cleve moler, university of new mexico, argonne national lab. -c -c subroutines and functions -c -c blas daxpy,dscal,idamax -c fortran max0,min0 -c -c internal variables -c - double precision t - integer i,idamax,i0,j,ju,jz,j0,j1,k,kp1,l,lm,m,mm,nm1 -c -c - m = ml + mu + 1 - info = 0 -c -c zero initial fill-in columns -c - j0 = mu + 2 - j1 = min0(n,m) - 1 - if (j1 .lt. j0) go to 30 - do 20 jz = j0, j1 - i0 = m + 1 - jz - do 10 i = i0, ml - abd(i,jz) = 0.0d0 - 10 continue - 20 continue - 30 continue - jz = j1 - ju = 0 -c -c gaussian elimination with partial pivoting -c - nm1 = n - 1 - if (nm1 .lt. 1) go to 130 - do 120 k = 1, nm1 - kp1 = k + 1 -c -c zero next fill-in column -c - jz = jz + 1 - if (jz .gt. n) go to 50 - if (ml .lt. 1) go to 50 - do 40 i = 1, ml - abd(i,jz) = 0.0d0 - 40 continue - 50 continue -c -c find l = pivot index -c - lm = min0(ml,n-k) - l = idamax(lm+1,abd(m,k),1) + m - 1 - ipvt(k) = l + k - m -c -c zero pivot implies this column already triangularized -c - if (abd(l,k) .eq. 0.0d0) go to 100 -c -c interchange if necessary -c - if (l .eq. m) go to 60 - t = abd(l,k) - abd(l,k) = abd(m,k) - abd(m,k) = t - 60 continue -c -c compute multipliers -c - t = -1.0d0/abd(m,k) - call dscal(lm,t,abd(m+1,k),1) -c -c row elimination with column indexing -c - ju = min0(max0(ju,mu+ipvt(k)),n) - mm = m - if (ju .lt. kp1) go to 90 - do 80 j = kp1, ju - l = l - 1 - mm = mm - 1 - t = abd(l,j) - if (l .eq. mm) go to 70 - abd(l,j) = abd(mm,j) - abd(mm,j) = t - 70 continue - call daxpy(lm,t,abd(m+1,k),1,abd(mm+1,j),1) - 80 continue - 90 continue - go to 110 - 100 continue - info = k - 110 continue - 120 continue - 130 continue - ipvt(n) = n - if (abd(m,n) .eq. 0.0d0) info = n - return - end diff --git a/Cantera/ext/math/dgbfa.f b/Cantera/ext/math/dgbfa.f deleted file mode 100644 index c26e6f579..000000000 --- a/Cantera/ext/math/dgbfa.f +++ /dev/null @@ -1,174 +0,0 @@ - subroutine dgbfa(abd,lda,n,ml,mu,ipvt,info) - integer lda,n,ml,mu,ipvt(1),info - double precision abd(lda,1) -c -c dgbfa factors a double precision band matrix by elimination. -c -c dgbfa is usually called by dgbco, but it can be called -c directly with a saving in time if rcond is not needed. -c -c on entry -c -c abd double precision(lda, n) -c contains the matrix in band storage. the columns -c of the matrix are stored in the columns of abd and -c the diagonals of the matrix are stored in rows -c ml+1 through 2*ml+mu+1 of abd . -c see the comments below for details. -c -c lda integer -c the leading dimension of the array abd . -c lda must be .ge. 2*ml + mu + 1 . -c -c n integer -c the order of the original matrix. -c -c ml integer -c number of diagonals below the main diagonal. -c 0 .le. ml .lt. n . -c -c mu integer -c number of diagonals above the main diagonal. -c 0 .le. mu .lt. n . -c more efficient if ml .le. mu . -c on return -c -c abd an upper triangular matrix in band storage and -c the multipliers which were used to obtain it. -c the factorization can be written a = l*u where -c l is a product of permutation and unit lower -c triangular matrices and u is upper triangular. -c -c ipvt integer(n) -c an integer vector of pivot indices. -c -c info integer -c = 0 normal value. -c = k if u(k,k) .eq. 0.0 . this is not an error -c condition for this subroutine, but it does -c indicate that dgbsl will divide by zero if -c called. use rcond in dgbco for a reliable -c indication of singularity. -c -c band storage -c -c if a is a band matrix, the following program segment -c will set up the input. -c -c ml = (band width below the diagonal) -c mu = (band width above the diagonal) -c m = ml + mu + 1 -c do 20 j = 1, n -c i1 = max0(1, j-mu) -c i2 = min0(n, j+ml) -c do 10 i = i1, i2 -c k = i - j + m -c abd(k,j) = a(i,j) -c 10 continue -c 20 continue -c -c this uses rows ml+1 through 2*ml+mu+1 of abd . -c in addition, the first ml rows in abd are used for -c elements generated during the triangularization. -c the total number of rows needed in abd is 2*ml+mu+1 . -c the ml+mu by ml+mu upper left triangle and the -c ml by ml lower right triangle are not referenced. -c -c linpack. this version dated 08/14/78 . -c cleve moler, university of new mexico, argonne national lab. -c -c subroutines and functions -c -c blas daxpy,dscal,idamax -c fortran max0,min0 -c -c internal variables -c - double precision t - integer i,idamax,i0,j,ju,jz,j0,j1,k,kp1,l,lm,m,mm,nm1 -c -c - m = ml + mu + 1 - info = 0 -c -c zero initial fill-in columns -c - j0 = mu + 2 - j1 = min0(n,m) - 1 - if (j1 .lt. j0) go to 30 - do 20 jz = j0, j1 - i0 = m + 1 - jz - do 10 i = i0, ml - abd(i,jz) = 0.0d0 - 10 continue - 20 continue - 30 continue - jz = j1 - ju = 0 -c -c gaussian elimination with partial pivoting -c - nm1 = n - 1 - if (nm1 .lt. 1) go to 130 - do 120 k = 1, nm1 - kp1 = k + 1 -c -c zero next fill-in column -c - jz = jz + 1 - if (jz .gt. n) go to 50 - if (ml .lt. 1) go to 50 - do 40 i = 1, ml - abd(i,jz) = 0.0d0 - 40 continue - 50 continue -c -c find l = pivot index -c - lm = min0(ml,n-k) - l = idamax(lm+1,abd(m,k),1) + m - 1 - ipvt(k) = l + k - m -c -c zero pivot implies this column already triangularized -c - if (abd(l,k) .eq. 0.0d0) go to 100 -c -c interchange if necessary -c - if (l .eq. m) go to 60 - t = abd(l,k) - abd(l,k) = abd(m,k) - abd(m,k) = t - 60 continue -c -c compute multipliers -c - t = -1.0d0/abd(m,k) - call dscal(lm,t,abd(m+1,k),1) -c -c row elimination with column indexing -c - ju = min0(max0(ju,mu+ipvt(k)),n) - mm = m - if (ju .lt. kp1) go to 90 - do 80 j = kp1, ju - l = l - 1 - mm = mm - 1 - t = abd(l,j) - if (l .eq. mm) go to 70 - abd(l,j) = abd(mm,j) - abd(mm,j) = t - 70 continue - call daxpy(lm,t,abd(m+1,k),1,abd(mm+1,j),1) - 80 continue - 90 continue - go to 110 - 100 continue - info = k - 110 continue - 120 continue - 130 continue - ipvt(n) = n - if (abd(m,n) .eq. 0.0d0) info = n - return - end diff --git a/Cantera/ext/math/dgbsl.f b/Cantera/ext/math/dgbsl.f deleted file mode 100644 index 1b1b6ed54..000000000 --- a/Cantera/ext/math/dgbsl.f +++ /dev/null @@ -1,135 +0,0 @@ - subroutine dgbsl(abd,lda,n,ml,mu,ipvt,b,job) - integer lda,n,ml,mu,ipvt(1),job - double precision abd(lda,1),b(1) -c -c dgbsl solves the double precision band system -c a * x = b or trans(a) * x = b -c using the factors computed by dgbco or dgbfa. -c -c on entry -c -c abd double precision(lda, n) -c the output from dgbco or dgbfa. -c -c lda integer -c the leading dimension of the array abd . -c -c n integer -c the order of the original matrix. -c -c ml integer -c number of diagonals below the main diagonal. -c -c mu integer -c number of diagonals above the main diagonal. -c -c ipvt integer(n) -c the pivot vector from dgbco or dgbfa. -c -c b double precision(n) -c the right hand side vector. -c -c job integer -c = 0 to solve a*x = b , -c = nonzero to solve trans(a)*x = b , where -c trans(a) is the transpose. -c -c on return -c -c b the solution vector x . -c -c error condition -c -c a division by zero will occur if the input factor contains a -c zero on the diagonal. technically this indicates singularity -c but it is often caused by improper arguments or improper -c setting of lda . it will not occur if the subroutines are -c called correctly and if dgbco has set rcond .gt. 0.0 -c or dgbfa has set info .eq. 0 . -c -c to compute inverse(a) * c where c is a matrix -c with p columns -c call dgbco(abd,lda,n,ml,mu,ipvt,rcond,z) -c if (rcond is too small) go to ... -c do 10 j = 1, p -c call dgbsl(abd,lda,n,ml,mu,ipvt,c(1,j),0) -c 10 continue -c -c linpack. this version dated 08/14/78 . -c cleve moler, university of new mexico, argonne national lab. -c -c subroutines and functions -c -c blas daxpy,ddot -c fortran min0 -c -c internal variables -c - double precision ddot,t - integer k,kb,l,la,lb,lm,m,nm1 -c - m = mu + ml + 1 - nm1 = n - 1 - if (job .ne. 0) go to 50 -c -c job = 0 , solve a * x = b -c first solve l*y = b -c - if (ml .eq. 0) go to 30 - if (nm1 .lt. 1) go to 30 - do 20 k = 1, nm1 - lm = min0(ml,n-k) - l = ipvt(k) - t = b(l) - if (l .eq. k) go to 10 - b(l) = b(k) - b(k) = t - 10 continue - call daxpy(lm,t,abd(m+1,k),1,b(k+1),1) - 20 continue - 30 continue -c -c now solve u*x = y -c - do 40 kb = 1, n - k = n + 1 - kb - b(k) = b(k)/abd(m,k) - lm = min0(k,m) - 1 - la = m - lm - lb = k - lm - t = -b(k) - call daxpy(lm,t,abd(la,k),1,b(lb),1) - 40 continue - go to 100 - 50 continue -c -c job = nonzero, solve trans(a) * x = b -c first solve trans(u)*y = b -c - do 60 k = 1, n - lm = min0(k,m) - 1 - la = m - lm - lb = k - lm - t = ddot(lm,abd(la,k),1,b(lb),1) - b(k) = (b(k) - t)/abd(m,k) - 60 continue -c -c now solve trans(l)*x = y -c - if (ml .eq. 0) go to 90 - if (nm1 .lt. 1) go to 90 - do 80 kb = 1, nm1 - k = n - kb - lm = min0(ml,n-k) - b(k) = b(k) + ddot(lm,abd(m+1,k),1,b(k+1),1) - l = ipvt(k) - if (l .eq. k) go to 70 - t = b(l) - b(l) = b(k) - b(k) = t - 70 continue - 80 continue - 90 continue - 100 continue - return - end diff --git a/Cantera/ext/math/dgefa.f b/Cantera/ext/math/dgefa.f deleted file mode 100644 index 14f266a9c..000000000 --- a/Cantera/ext/math/dgefa.f +++ /dev/null @@ -1,104 +0,0 @@ - - subroutine dgefa(a,lda,n,ipvt,info) - integer lda,n,ipvt(1),info - double precision a(lda,1) -c -c dgefa factors a double precision matrix by gaussian elimination. -c -c dgefa is usually called by dgeco, but it can be called -c directly with a saving in time if rcond is not needed. -c (time for dgeco) = (1 + 9/n)*(time for dgefa) . -c -c on entry -c -c a double precision(lda, n) -c the matrix to be factored. -c -c lda integer -c the leading dimension of the array a . -c -c n integer -c the order of the matrix a . -c -c on return -c -c a an upper triangular matrix and the multipliers -c which were used to obtain it. -c the factorization can be written a = l*u where -c l is a product of permutation and unit lower -c triangular matrices and u is upper triangular. -c -c ipvt integer(n) -c an integer vector of pivot indices. -c -c info integer -c = 0 normal value. -c = k if u(k,k) .eq. 0.0 . this is not an error -c condition for this subroutine, but it does -c indicate that dgesl or dgedi will divide by zero -c if called. use rcond in dgeco for a reliable -c indication of singularity. -c -c linpack. this version dated 08/14/78 . -c cleve moler, university of new mexico, argonne national lab. -c -c subroutines and functions -c -c blas daxpy,dscal,idamax -c -c internal variables -c - double precision t - integer idamax,j,k,kp1,l,nm1 -c -c -c gaussian elimination with partial pivoting -c - info = 0 - nm1 = n - 1 - if (nm1 .lt. 1) go to 70 - do 60 k = 1, nm1 - kp1 = k + 1 -c -c find l = pivot index -c - l = idamax(n-k+1,a(k,k),1) + k - 1 - ipvt(k) = l -c -c zero pivot implies this column already triangularized -c - if (a(l,k) .eq. 0.0d0) go to 40 -c -c interchange if necessary -c - if (l .eq. k) go to 10 - t = a(l,k) - a(l,k) = a(k,k) - a(k,k) = t - 10 continue -c -c compute multipliers -c - t = -1.0d0/a(k,k) - call dscal(n-k,t,a(k+1,k),1) -c -c row elimination with column indexing -c - do 30 j = kp1, n - t = a(l,j) - if (l .eq. k) go to 20 - a(l,j) = a(k,j) - a(k,j) = t - 20 continue - call daxpy(n-k,t,a(k+1,k),1,a(k+1,j),1) - 30 continue - go to 50 - 40 continue - info = k - 50 continue - 60 continue - 70 continue - ipvt(n) = n - if (a(n,n) .eq. 0.0d0) info = n - return - end diff --git a/Cantera/ext/math/dgesl.f b/Cantera/ext/math/dgesl.f deleted file mode 100644 index 093fa5182..000000000 --- a/Cantera/ext/math/dgesl.f +++ /dev/null @@ -1,117 +0,0 @@ - subroutine dgesl(a,lda,n,ipvt,b,job) - integer lda,n,ipvt(1),job - double precision a(lda,1),b(1) -c -c dgesl solves the double precision system -c a * x = b or trans(a) * x = b -c using the factors computed by dgeco or dgefa. -c -c on entry -c -c a double precision(lda, n) -c the output from dgeco or dgefa. -c -c lda integer -c the leading dimension of the array a . -c -c n integer -c the order of the matrix a . -c -c ipvt integer(n) -c the pivot vector from dgeco or dgefa. -c -c b double precision(n) -c the right hand side vector. -c -c job integer -c = 0 to solve a*x = b , -c = nonzero to solve trans(a)*x = b where -c trans(a) is the transpose. -c -c on return -c -c b the solution vector x . -c -c error condition -c -c a division by zero will occur if the input factor contains a -c zero on the diagonal. technically this indicates singularity -c but it is often caused by improper arguments or improper -c setting of lda . it will not occur if the subroutines are -c called correctly and if dgeco has set rcond .gt. 0.0 -c or dgefa has set info .eq. 0 . -c -c to compute inverse(a) * c where c is a matrix -c with p columns -c call dgeco(a,lda,n,ipvt,rcond,z) -c if (rcond is too small) go to ... -c do 10 j = 1, p -c call dgesl(a,lda,n,ipvt,c(1,j),0) -c 10 continue -c -c linpack. this version dated 08/14/78 . -c cleve moler, university of new mexico, argonne national lab. -c -c subroutines and functions -c -c blas daxpy,ddot -c -c internal variables -c - double precision ddot,t - integer k,kb,l,nm1 -c - nm1 = n - 1 - if (job .ne. 0) go to 50 -c -c job = 0 , solve a * x = b -c first solve l*y = b -c - if (nm1 .lt. 1) go to 30 - do 20 k = 1, nm1 - l = ipvt(k) - t = b(l) - if (l .eq. k) go to 10 - b(l) = b(k) - b(k) = t - 10 continue - call daxpy(n-k,t,a(k+1,k),1,b(k+1),1) - 20 continue - 30 continue -c -c now solve u*x = y -c - do 40 kb = 1, n - k = n + 1 - kb - b(k) = b(k)/a(k,k) - t = -b(k) - call daxpy(k-1,t,a(1,k),1,b(1),1) - 40 continue - go to 100 - 50 continue -c -c job = nonzero, solve trans(a) * x = b -c first solve trans(u)*y = b -c - do 60 k = 1, n - t = ddot(k-1,a(1,k),1,b(1),1) - b(k) = (b(k) - t)/a(k,k) - 60 continue -c -c now solve trans(l)*x = y -c - if (nm1 .lt. 1) go to 90 - do 80 kb = 1, nm1 - k = n - kb - b(k) = b(k) + ddot(n-k,a(k+1,k),1,b(k+1),1) - l = ipvt(k) - if (l .eq. k) go to 70 - t = b(l) - b(l) = b(k) - b(k) = t - 70 continue - 80 continue - 90 continue - 100 continue - return - end diff --git a/Cantera/ext/math/dp1vlu.f b/Cantera/ext/math/dp1vlu.f deleted file mode 100644 index 1af92d209..000000000 --- a/Cantera/ext/math/dp1vlu.f +++ /dev/null @@ -1,151 +0,0 @@ -*DECK DP1VLU - SUBROUTINE DP1VLU (L, NDER, X, YFIT, YP, A) -C***BEGIN PROLOGUE DP1VLU -C***PURPOSE Use the coefficients generated by DPOLFT to evaluate the -C polynomial fit of degree L, along with the first NDER of -C its derivatives, at a specified point. -C***LIBRARY SLATEC -C***CATEGORY K6 -C***TYPE DOUBLE PRECISION (PVALUE-S, DP1VLU-D) -C***KEYWORDS CURVE FITTING, LEAST SQUARES, POLYNOMIAL APPROXIMATION -C***AUTHOR Shampine, L. F., (SNLA) -C Davenport, S. M., (SNLA) -C***DESCRIPTION -C -C Abstract -C -C The subroutine DP1VLU uses the coefficients generated by DPOLFT -C to evaluate the polynomial fit of degree L , along with the first -C NDER of its derivatives, at a specified point. Computationally -C stable recurrence relations are used to perform this task. -C -C The parameters for DP1VLU are -C -C Input -- ALL TYPE REAL variables are DOUBLE PRECISION -C L - the degree of polynomial to be evaluated. L may be -C any non-negative integer which is less than or equal -C to NDEG , the highest degree polynomial provided -C by DPOLFT . -C NDER - the number of derivatives to be evaluated. NDER -C may be 0 or any positive value. If NDER is less -C than 0, it will be treated as 0. -C X - the argument at which the polynomial and its -C derivatives are to be evaluated. -C A - work and output array containing values from last -C call to DPOLFT . -C -C Output -- ALL TYPE REAL variables are DOUBLE PRECISION -C YFIT - value of the fitting polynomial of degree L at X -C YP - array containing the first through NDER derivatives -C of the polynomial of degree L . YP must be -C dimensioned at least NDER in the calling program. -C -C***REFERENCES L. F. Shampine, S. M. Davenport and R. E. Huddleston, -C Curve fitting by polynomials in one variable, Report -C SLA-74-0270, Sandia Laboratories, June 1974. -C***ROUTINES CALLED XERMSG -C***REVISION HISTORY (YYMMDD) -C 740601 DATE WRITTEN -C 890531 Changed all specific intrinsics to generic. (WRB) -C 890911 Removed unnecessary intrinsics. (WRB) -C 891006 Cosmetic changes to prologue. (WRB) -C 891006 REVISION DATE from Version 3.2 -C 891214 Prologue converted to Version 4.0 format. (BAB) -C 900315 CALLs to XERROR changed to CALLs to XERMSG. (THJ) -C 900510 Convert XERRWV calls to XERMSG calls. (RWC) -C 920501 Reformatted the REFERENCES section. (WRB) -C***END PROLOGUE DP1VLU - IMPLICIT DOUBLE PRECISION (A-H,O-Z) - INTEGER I,IC,ILO,IN,INP1,IUP,K1,K1I,K2,K3,K3P1,K3PN,K4,K4P1,K4PN, - * KC,L,LM1,LP1,MAXORD,N,NDER,NDO,NDP1,NORD - DOUBLE PRECISION A(*),CC,DIF,VAL,X,YFIT,YP(*) - CHARACTER*8 XERN1, XERN2 -C***FIRST EXECUTABLE STATEMENT DP1VLU - IF (L .LT. 0) GO TO 12 - NDO = MAX(NDER,0) - NDO = MIN(NDO,L) - MAXORD = A(1) + 0.5D0 - K1 = MAXORD + 1 - K2 = K1 + MAXORD - K3 = K2 + MAXORD + 2 - NORD = A(K3) + 0.5D0 - IF (L .GT. NORD) GO TO 11 - K4 = K3 + L + 1 - IF (NDER .LT. 1) GO TO 2 - DO 1 I = 1,NDER - 1 YP(I) = 0.0D0 - 2 IF (L .GE. 2) GO TO 4 - IF (L .EQ. 1) GO TO 3 -C -C L IS 0 -C - VAL = A(K2+1) - GO TO 10 -C -C L IS 1 -C - 3 CC = A(K2+2) - VAL = A(K2+1) + (X-A(2))*CC - IF (NDER .GE. 1) YP(1) = CC - GO TO 10 -C -C L IS GREATER THAN 1 -C - 4 NDP1 = NDO + 1 - K3P1 = K3 + 1 - K4P1 = K4 + 1 - LP1 = L + 1 - LM1 = L - 1 - ILO = K3 + 3 - IUP = K4 + NDP1 - DO 5 I = ILO,IUP - 5 A(I) = 0.0D0 - DIF = X - A(LP1) - KC = K2 + LP1 - A(K4P1) = A(KC) - A(K3P1) = A(KC-1) + DIF*A(K4P1) - A(K3+2) = A(K4P1) -C -C EVALUATE RECURRENCE RELATIONS FOR FUNCTION VALUE AND DERIVATIVES -C - DO 9 I = 1,LM1 - IN = L - I - INP1 = IN + 1 - K1I = K1 + INP1 - IC = K2 + IN - DIF = X - A(INP1) - VAL = A(IC) + DIF*A(K3P1) - A(K1I)*A(K4P1) - IF (NDO .LE. 0) GO TO 8 - DO 6 N = 1,NDO - K3PN = K3P1 + N - K4PN = K4P1 + N - 6 YP(N) = DIF*A(K3PN) + N*A(K3PN-1) - A(K1I)*A(K4PN) -C -C SAVE VALUES NEEDED FOR NEXT EVALUATION OF RECURRENCE RELATIONS -C - DO 7 N = 1,NDO - K3PN = K3P1 + N - K4PN = K4P1 + N - A(K4PN) = A(K3PN) - 7 A(K3PN) = YP(N) - 8 A(K4P1) = A(K3P1) - 9 A(K3P1) = VAL -C -C NORMAL RETURN OR ABORT DUE TO ERROR -C - 10 YFIT = VAL - RETURN -C - 11 WRITE (XERN1, '(I8)') L - WRITE (XERN2, '(I8)') NORD - CALL XERMSG ('SLATEC', 'DP1VLU', - * 'THE ORDER OF POLYNOMIAL EVALUATION, L = ' // XERN1 // - * ' REQUESTED EXCEEDS THE HIGHEST ORDER FIT, NORD = ' // XERN2 // - * ', COMPUTED BY DPOLFT -- EXECUTION TERMINATED.', 8, 2) - RETURN -C - 12 CALL XERMSG ('SLATEC', 'DP1VLU', - + 'INVALID INPUT PARAMETER. ORDER OF POLYNOMIAL EVALUATION ' // - + 'REQUESTED IS NEGATIVE.', 2, 2) - RETURN - END diff --git a/Cantera/ext/math/dpcoef.f b/Cantera/ext/math/dpcoef.f deleted file mode 100644 index 074a3426f..000000000 --- a/Cantera/ext/math/dpcoef.f +++ /dev/null @@ -1,78 +0,0 @@ -*DECK DPCOEF - SUBROUTINE DPCOEF (L, C, TC, A) -C***BEGIN PROLOGUE DPCOEF -C***PURPOSE Convert the DPOLFT coefficients to Taylor series form. -C***LIBRARY SLATEC -C***CATEGORY K1A1A2 -C***TYPE DOUBLE PRECISION (PCOEF-S, DPCOEF-D) -C***KEYWORDS CURVE FITTING, DATA FITTING, LEAST SQUARES, POLYNOMIAL FIT -C***AUTHOR Shampine, L. F., (SNLA) -C Davenport, S. M., (SNLA) -C***DESCRIPTION -C -C Abstract -C -C DPOLFT computes the least squares polynomial fit of degree L as -C a sum of orthogonal polynomials. DPCOEF changes this fit to its -C Taylor expansion about any point C , i.e. writes the polynomial -C as a sum of powers of (X-C). Taking C=0. gives the polynomial -C in powers of X, but a suitable non-zero C often leads to -C polynomials which are better scaled and more accurately evaluated. -C -C The parameters for DPCOEF are -C -C INPUT -- All TYPE REAL variables are DOUBLE PRECISION -C L - Indicates the degree of polynomial to be changed to -C its Taylor expansion. To obtain the Taylor -C coefficients in reverse order, input L as the -C negative of the degree desired. The absolute value -C of L must be less than or equal to NDEG, the highest -C degree polynomial fitted by DPOLFT . -C C - The point about which the Taylor expansion is to be -C made. -C A - Work and output array containing values from last -C call to DPOLFT . -C -C OUTPUT -- All TYPE REAL variables are DOUBLE PRECISION -C TC - Vector containing the first LL+1 Taylor coefficients -C where LL=ABS(L). If L.GT.0 , the coefficients are -C in the usual Taylor series order, i.e. -C P(X) = TC(1) + TC(2)*(X-C) + ... + TC(N+1)*(X-C)**N -C If L .LT. 0, the coefficients are in reverse order, -C i.e. -C P(X) = TC(1)*(X-C)**N + ... + TC(N)*(X-C) + TC(N+1) -C -C***REFERENCES L. F. Shampine, S. M. Davenport and R. E. Huddleston, -C Curve fitting by polynomials in one variable, Report -C SLA-74-0270, Sandia Laboratories, June 1974. -C***ROUTINES CALLED DP1VLU -C***REVISION HISTORY (YYMMDD) -C 740601 DATE WRITTEN -C 890531 Changed all specific intrinsics to generic. (WRB) -C 891006 Cosmetic changes to prologue. (WRB) -C 891006 REVISION DATE from Version 3.2 -C 891214 Prologue converted to Version 4.0 format. (BAB) -C 920501 Reformatted the REFERENCES section. (WRB) -C***END PROLOGUE DPCOEF -C - INTEGER I,L,LL,LLP1,LLP2,NEW,NR - DOUBLE PRECISION A(*),C,FAC,SAVE,TC(*) -C***FIRST EXECUTABLE STATEMENT DPCOEF - LL = ABS(L) - LLP1 = LL + 1 - CALL DP1VLU (LL,LL,C,TC(1),TC(2),A) - IF (LL .LT. 2) GO TO 2 - FAC = 1.0D0 - DO 1 I = 3,LLP1 - FAC = FAC*(I-1) - 1 TC(I) = TC(I)/FAC - 2 IF (L .GE. 0) GO TO 4 - NR = LLP1/2 - LLP2 = LL + 2 - DO 3 I = 1,NR - SAVE = TC(I) - NEW = LLP2 - I - TC(I) = TC(NEW) - 3 TC(NEW) = SAVE - 4 RETURN - END diff --git a/Cantera/ext/math/dpolft.f b/Cantera/ext/math/dpolft.f deleted file mode 100644 index bbebb3dbd..000000000 --- a/Cantera/ext/math/dpolft.f +++ /dev/null @@ -1,364 +0,0 @@ -*DECK DPOLFT - SUBROUTINE DPOLFT (N, X, Y, W, MAXDEG, NDEG, EPS, R, IERR, A) -C***BEGIN PROLOGUE DPOLFT -C***PURPOSE Fit discrete data in a least squares sense by polynomials -C in one variable. -C***LIBRARY SLATEC -C***CATEGORY K1A1A2 -C***TYPE DOUBLE PRECISION (POLFIT-S, DPOLFT-D) -C***KEYWORDS CURVE FITTING, DATA FITTING, LEAST SQUARES, POLYNOMIAL FIT -C***AUTHOR Shampine, L. F., (SNLA) -C Davenport, S. M., (SNLA) -C Huddleston, R. E., (SNLL) -C***DESCRIPTION -C -C Abstract -C -C Given a collection of points X(I) and a set of values Y(I) which -C correspond to some function or measurement at each of the X(I), -C subroutine DPOLFT computes the weighted least-squares polynomial -C fits of all degrees up to some degree either specified by the user -C or determined by the routine. The fits thus obtained are in -C orthogonal polynomial form. Subroutine DP1VLU may then be -C called to evaluate the fitted polynomials and any of their -C derivatives at any point. The subroutine DPCOEF may be used to -C express the polynomial fits as powers of (X-C) for any specified -C point C. -C -C The parameters for DPOLFT are -C -C Input -- All TYPE REAL variables are DOUBLE PRECISION -C N - the number of data points. The arrays X, Y and W -C must be dimensioned at least N (N .GE. 1). -C X - array of values of the independent variable. These -C values may appear in any order and need not all be -C distinct. -C Y - array of corresponding function values. -C W - array of positive values to be used as weights. If -C W(1) is negative, DPOLFT will set all the weights -C to 1.0, which means unweighted least squares error -C will be minimized. To minimize relative error, the -C user should set the weights to: W(I) = 1.0/Y(I)**2, -C I = 1,...,N . -C MAXDEG - maximum degree to be allowed for polynomial fit. -C MAXDEG may be any non-negative integer less than N. -C Note -- MAXDEG cannot be equal to N-1 when a -C statistical test is to be used for degree selection, -C i.e., when input value of EPS is negative. -C EPS - specifies the criterion to be used in determining -C the degree of fit to be computed. -C (1) If EPS is input negative, DPOLFT chooses the -C degree based on a statistical F test of -C significance. One of three possible -C significance levels will be used: .01, .05 or -C .10. If EPS=-1.0 , the routine will -C automatically select one of these levels based -C on the number of data points and the maximum -C degree to be considered. If EPS is input as -C -.01, -.05, or -.10, a significance level of -C .01, .05, or .10, respectively, will be used. -C (2) If EPS is set to 0., DPOLFT computes the -C polynomials of degrees 0 through MAXDEG . -C (3) If EPS is input positive, EPS is the RMS -C error tolerance which must be satisfied by the -C fitted polynomial. DPOLFT will increase the -C degree of fit until this criterion is met or -C until the maximum degree is reached. -C -C Output -- All TYPE REAL variables are DOUBLE PRECISION -C NDEG - degree of the highest degree fit computed. -C EPS - RMS error of the polynomial of degree NDEG . -C R - vector of dimension at least NDEG containing values -C of the fit of degree NDEG at each of the X(I) . -C Except when the statistical test is used, these -C values are more accurate than results from subroutine -C DP1VLU normally are. -C IERR - error flag with the following possible values. -C 1 -- indicates normal execution, i.e., either -C (1) the input value of EPS was negative, and the -C computed polynomial fit of degree NDEG -C satisfies the specified F test, or -C (2) the input value of EPS was 0., and the fits of -C all degrees up to MAXDEG are complete, or -C (3) the input value of EPS was positive, and the -C polynomial of degree NDEG satisfies the RMS -C error requirement. -C 2 -- invalid input parameter. At least one of the input -C parameters has an illegal value and must be corrected -C before DPOLFT can proceed. Valid input results -C when the following restrictions are observed -C N .GE. 1 -C 0 .LE. MAXDEG .LE. N-1 for EPS .GE. 0. -C 0 .LE. MAXDEG .LE. N-2 for EPS .LT. 0. -C W(1)=-1.0 or W(I) .GT. 0., I=1,...,N . -C 3 -- cannot satisfy the RMS error requirement with a -C polynomial of degree no greater than MAXDEG . Best -C fit found is of degree MAXDEG . -C 4 -- cannot satisfy the test for significance using -C current value of MAXDEG . Statistically, the -C best fit found is of order NORD . (In this case, -C NDEG will have one of the values: MAXDEG-2, -C MAXDEG-1, or MAXDEG). Using a higher value of -C MAXDEG may result in passing the test. -C A - work and output array having at least 3N+3MAXDEG+3 -C locations -C -C Note - DPOLFT calculates all fits of degrees up to and including -C NDEG . Any or all of these fits can be evaluated or -C expressed as powers of (X-C) using DP1VLU and DPCOEF -C after just one call to DPOLFT . -C -C***REFERENCES L. F. Shampine, S. M. Davenport and R. E. Huddleston, -C Curve fitting by polynomials in one variable, Report -C SLA-74-0270, Sandia Laboratories, June 1974. -C***ROUTINES CALLED DP1VLU, XERMSG -C***REVISION HISTORY (YYMMDD) -C 740601 DATE WRITTEN -C 890531 Changed all specific intrinsics to generic. (WRB) -C 891006 Cosmetic changes to prologue. (WRB) -C 891006 REVISION DATE from Version 3.2 -C 891214 Prologue converted to Version 4.0 format. (BAB) -C 900315 CALLs to XERROR changed to CALLs to XERMSG. (THJ) -C 900911 Added variable YP to DOUBLE PRECISION declaration. (WRB) -C 920501 Reformatted the REFERENCES section. (WRB) -C 920527 Corrected erroneous statements in DESCRIPTION. (WRB) -C***END PROLOGUE DPOLFT - INTEGER I,IDEGF,IERR,J,JP1,JPAS,K1,K1PJ,K2,K2PJ,K3,K3PI,K4, - * K4PI,K5,K5PI,KSIG,M,MAXDEG,MOP1,NDEG,NDER,NFAIL - DOUBLE PRECISION TEMD1,TEMD2 - DOUBLE PRECISION A(*),DEGF,DEN,EPS,ETST,F,FCRIT,R(*),SIG,SIGJ, - * SIGJM1,SIGPAS,TEMP,X(*),XM,Y(*),YP,W(*),W1,W11 - DOUBLE PRECISION CO(4,3) -c SAVE CO -c DATA CO(1,1), CO(2,1), CO(3,1), CO(4,1), CO(1,2), CO(2,2), -c 1 CO(3,2), CO(4,2), CO(1,3), CO(2,3), CO(3,3), -c 2 CO(4,3)/-13.086850D0,-2.4648165D0,-3.3846535D0,-1.2973162D0, -c 3 -3.3381146D0,-1.7812271D0,-3.2578406D0,-1.6589279D0, -c 4 -1.6282703D0,-1.3152745D0,-3.2640179D0,-1.9829776D0/ -C***FIRST EXECUTABLE STATEMENT DPOLFT - -c write(*,*) 'DPOLFT n = ',n -c do ii = 1,n -c write(*,*) x(ii), y(ii), w(ii) -c end do -c write(*,*) ' maxdeg, eps = ',maxdeg,eps - - M = ABS(N) - IF (M .EQ. 0) GO TO 30 - IF (MAXDEG .LT. 0) GO TO 30 - A(1) = MAXDEG - MOP1 = MAXDEG + 1 - IF (M .LT. MOP1) GO TO 30 - IF (EPS .LT. 0.0D0 .AND. M .EQ. MOP1) GO TO 30 - XM = M - ETST = EPS*EPS*XM - IF (W(1) .LT. 0.0D0) GO TO 2 - DO 1 I = 1,M - IF (W(I) .LE. 0.0D0) GO TO 30 - 1 CONTINUE - GO TO 4 - 2 DO 3 I = 1,M - 3 W(I) = 1.0D0 - 4 IF (EPS .GE. 0.0D0) GO TO 8 -C -C DETERMINE SIGNIFICANCE LEVEL INDEX TO BE USED IN STATISTICAL TEST FOR -C CHOOSING DEGREE OF POLYNOMIAL FIT -C - IF (EPS .GT. (-.55D0)) GO TO 5 - IDEGF = M - MAXDEG - 1 - KSIG = 1 - IF (IDEGF .LT. 10) KSIG = 2 - IF (IDEGF .LT. 5) KSIG = 3 - GO TO 8 - 5 KSIG = 1 - IF (EPS .LT. (-.03D0)) KSIG = 2 - IF (EPS .LT. (-.07D0)) KSIG = 3 -C -C INITIALIZE INDEXES AND COEFFICIENTS FOR FITTING -C - 8 K1 = MAXDEG + 1 - K2 = K1 + MAXDEG - K3 = K2 + MAXDEG + 2 - K4 = K3 + M - K5 = K4 + M - DO 9 I = 2,K4 - 9 A(I) = 0.0D0 - W11 = 0.0D0 - IF (N .LT. 0) GO TO 11 -C -C UNCONSTRAINED CASE -C - DO 10 I = 1,M - K4PI = K4 + I - A(K4PI) = 1.0D0 - 10 W11 = W11 + W(I) - GO TO 13 -C -C CONSTRAINED CASE -C - 11 DO 12 I = 1,M - K4PI = K4 + I - 12 W11 = W11 + W(I)*A(K4PI)**2 -C -C COMPUTE FIT OF DEGREE ZERO -C - 13 TEMD1 = 0.0D0 - DO 14 I = 1,M - K4PI = K4 + I - TEMD1 = TEMD1 + W(I)*Y(I)*A(K4PI) - 14 CONTINUE - TEMD1 = TEMD1/W11 - A(K2+1) = TEMD1 - SIGJ = 0.0D0 - DO 15 I = 1,M - K4PI = K4 + I - K5PI = K5 + I - TEMD2 = TEMD1*A(K4PI) - R(I) = TEMD2 - A(K5PI) = TEMD2 - R(I) - 15 SIGJ = SIGJ + W(I)*((Y(I)-R(I)) - A(K5PI))**2 - J = 0 -C -C SEE IF POLYNOMIAL OF DEGREE 0 SATISFIES THE DEGREE SELECTION CRITERION -C - IF (EPS) 24,26,27 -C -C INCREMENT DEGREE -C - 16 J = J + 1 - JP1 = J + 1 - K1PJ = K1 + J - K2PJ = K2 + J - SIGJM1 = SIGJ -C -C COMPUTE NEW B COEFFICIENT EXCEPT WHEN J = 1 -C - IF (J .GT. 1) A(K1PJ) = W11/W1 -C -C COMPUTE NEW A COEFFICIENT -C - TEMD1 = 0.0D0 - DO 18 I = 1,M - K4PI = K4 + I - TEMD2 = A(K4PI) - TEMD1 = TEMD1 + X(I)*W(I)*TEMD2*TEMD2 - 18 CONTINUE - A(JP1) = TEMD1/W11 -C -C EVALUATE ORTHOGONAL POLYNOMIAL AT DATA POINTS -C - W1 = W11 - W11 = 0.0D0 - DO 19 I = 1,M - K3PI = K3 + I - K4PI = K4 + I - TEMP = A(K3PI) - A(K3PI) = A(K4PI) - A(K4PI) = (X(I)-A(JP1))*A(K3PI) - A(K1PJ)*TEMP - 19 W11 = W11 + W(I)*A(K4PI)**2 -C -C GET NEW ORTHOGONAL POLYNOMIAL COEFFICIENT USING PARTIAL DOUBLE -C PRECISION -C - TEMD1 = 0.0D0 - DO 20 I = 1,M - K4PI = K4 + I - K5PI = K5 + I - TEMD2 = W(I)*((Y(I)-R(I))-A(K5PI))*A(K4PI) - 20 TEMD1 = TEMD1 + TEMD2 - TEMD1 = TEMD1/W11 - A(K2PJ+1) = TEMD1 -C -C UPDATE POLYNOMIAL EVALUATIONS AT EACH OF THE DATA POINTS, AND -C ACCUMULATE SUM OF SQUARES OF ERRORS. THE POLYNOMIAL EVALUATIONS ARE -C COMPUTED AND STORED IN EXTENDED PRECISION. FOR THE I-TH DATA POINT, -C THE MOST SIGNIFICANT BITS ARE STORED IN R(I) , AND THE LEAST -C SIGNIFICANT BITS ARE IN A(K5PI) . -C - SIGJ = 0.0D0 - DO 21 I = 1,M - K4PI = K4 + I - K5PI = K5 + I - TEMD2 = R(I) + A(K5PI) + TEMD1*A(K4PI) - R(I) = TEMD2 - A(K5PI) = TEMD2 - R(I) - 21 SIGJ = SIGJ + W(I)*((Y(I)-R(I)) - A(K5PI))**2 -C -C SEE IF DEGREE SELECTION CRITERION HAS BEEN SATISFIED OR IF DEGREE -C MAXDEG HAS BEEN REACHED -C - IF (EPS) 23,26,27 -C -C COMPUTE F STATISTICS (INPUT EPS .LT. 0.) -C - 23 IF (SIGJ .EQ. 0.0D0) GO TO 29 - DEGF = M - J - 1 - DEN = (CO(4,KSIG)*DEGF + 1.0D0)*DEGF - FCRIT = (((CO(3,KSIG)*DEGF) + CO(2,KSIG))*DEGF + CO(1,KSIG))/DEN - FCRIT = FCRIT*FCRIT - F = (SIGJM1 - SIGJ)*DEGF/SIGJ - IF (F .LT. FCRIT) GO TO 25 -C -C POLYNOMIAL OF DEGREE J SATISFIES F TEST -C - 24 SIGPAS = SIGJ - JPAS = J - NFAIL = 0 - IF (MAXDEG .EQ. J) GO TO 32 - GO TO 16 -C -C POLYNOMIAL OF DEGREE J FAILS F TEST. IF THERE HAVE BEEN THREE -C SUCCESSIVE FAILURES, A STATISTICALLY BEST DEGREE HAS BEEN FOUND. -C - 25 NFAIL = NFAIL + 1 - IF (NFAIL .GE. 3) GO TO 29 - IF (MAXDEG .EQ. J) GO TO 32 - GO TO 16 -C -C RAISE THE DEGREE IF DEGREE MAXDEG HAS NOT YET BEEN REACHED (INPUT -C EPS = 0.) -C - 26 IF (MAXDEG .EQ. J) GO TO 28 - GO TO 16 -C -C SEE IF RMS ERROR CRITERION IS SATISFIED (INPUT EPS .GT. 0.) -C - 27 IF (SIGJ .LE. ETST) GO TO 28 - IF (MAXDEG .EQ. J) GO TO 31 - GO TO 16 -C -C RETURNS -C - 28 IERR = 1 - NDEG = J - SIG = SIGJ - GO TO 33 - 29 IERR = 1 - NDEG = JPAS - SIG = SIGPAS - GO TO 33 - 30 IERR = 2 - CALL XERMSG ('SLATEC', 'DPOLFT', 'INVALID INPUT PARAMETER.', 2, - + 1) - GO TO 37 - 31 IERR = 3 - NDEG = MAXDEG - SIG = SIGJ - GO TO 33 - 32 IERR = 4 - NDEG = JPAS - SIG = SIGPAS -C - 33 A(K3) = NDEG -C -C WHEN STATISTICAL TEST HAS BEEN USED, EVALUATE THE BEST POLYNOMIAL AT -C ALL THE DATA POINTS IF R DOES NOT ALREADY CONTAIN THESE VALUES -C - IF(EPS .GE. 0.0 .OR. NDEG .EQ. MAXDEG) GO TO 36 - NDER = 0 - DO 35 I = 1,M - CALL DP1VLU (NDEG,NDER,X(I),R(I),YP,A) - 35 CONTINUE - 36 EPS = SQRT(SIG/XM) - 37 RETURN - END diff --git a/Cantera/ext/math/fdump.f b/Cantera/ext/math/fdump.f deleted file mode 100644 index c649f252b..000000000 --- a/Cantera/ext/math/fdump.f +++ /dev/null @@ -1,72 +0,0 @@ -*DECK FDUMP - SUBROUTINE FDUMP -C***BEGIN PROLOGUE FDUMP -C***PURPOSE Symbolic dump (should be locally written). -C***LIBRARY SLATEC (XERMSG) -C***CATEGORY R3 -C***TYPE ALL (FDUMP-A) -C***KEYWORDS ERROR, XERMSG -C***AUTHOR Jones, R. E., (SNLA) -C***DESCRIPTION -C -C ***Note*** Machine Dependent Routine -C FDUMP is intended to be replaced by a locally written -C version which produces a symbolic dump. Failing this, -C it should be replaced by a version which prints the -C subprogram nesting list. Note that this dump must be -C printed on each of up to five files, as indicated by the -C XGETUA routine. See XSETUA and XGETUA for details. -C -C Written by Ron Jones, with SLATEC Common Math Library Subcommittee -C -C***REFERENCES (NONE) -C***ROUTINES CALLED (NONE) -C***REVISION HISTORY (YYMMDD) -C 790801 DATE WRITTEN -C 861211 REVISION DATE from Version 3.2 -C 891214 Prologue converted to Version 4.0 format. (BAB) -C***END PROLOGUE FDUMP -C***FIRST EXECUTABLE STATEMENT FDUMP - RETURN - END - -c$$$ -c$$$ integer function isamax(n,sx,incx) -c$$$c -c$$$c finds the index of element having max. absolute value. -c$$$c jack dongarra, linpack, 3/11/78. -c$$$c modified 3/93 to return if incx .le. 0. -c$$$c -c$$$ real sx(1),smax -c$$$ integer i,incx,ix,n -c$$$c -c$$$ isamax = 0 -c$$$ if( n.lt.1 .or. incx.le.0 ) return -c$$$ isamax = 1 -c$$$ if(n.eq.1)return -c$$$ if(incx.eq.1)go to 20 -c$$$c -c$$$c code for increment not equal to 1 -c$$$c -c$$$ ix = 1 -c$$$ smax = abs(sx(1)) -c$$$ ix = ix + incx -c$$$ do 10 i = 2,n -c$$$ if(abs(sx(ix)).le.smax) go to 5 -c$$$ isamax = i -c$$$ smax = abs(sx(ix)) -c$$$ 5 ix = ix + incx -c$$$ 10 continue -c$$$ return -c$$$c -c$$$c code for increment equal to 1 -c$$$c -c$$$ 20 smax = abs(sx(1)) -c$$$ do 30 i = 2,n -c$$$ if(abs(sx(i)).le.smax) go to 30 -c$$$ isamax = i -c$$$ smax = abs(sx(i)) -c$$$ 30 continue -c$$$ return -c$$$ end -c$$$ diff --git a/Cantera/ext/math/gmres.h b/Cantera/ext/math/gmres.h deleted file mode 100755 index 1f6a044d5..000000000 --- a/Cantera/ext/math/gmres.h +++ /dev/null @@ -1,144 +0,0 @@ -// -*- C++ -*- - -#ifndef GMRES_BLAS_H -#define GMRES_BLAS_H - -// ============================================================================ -// -// GMRES nach Saad, Schultz -// GMRES: a generalized minimal residual algorithm for solving nonsymmetric -// linear systems -// SIAM J Sci Stat Comput 7, 856-869 (1986) -// -// ---------------------------- -// Christian Badura, Mai 1998 -// -// ============================================================================ - - -template< class Matrix > -inline int -gmres( int m, int N, const Matrix &A, const doublereal *b, doublereal *x, doublereal eps ); - - -template< class Matrix > -inline int -gmres( int m, int N, const Matrix &A, const doublereal *b, doublereal *x, doublereal eps, - bool detailed ); - - -// ============================================================================ - -// #include "../../Cantera/src/blas.h" - -#include "cblas.h" -#include "../../Cantera/src/ctlapack.h" -using namespace Cantera; - -template< class Matrix > -inline int -gmres( int m, int n, const Matrix &A, const doublereal *b, doublereal *x, doublereal eps, - bool detailed ) { - if ( n<=0 ) - return -1; - typedef doublereal *doublerealP; - doublereal *V = new doublereal[n*(m+1)]; - doublereal *U = new doublereal[m*(m+1)/2]; - doublereal *r = new doublereal[n]; - doublereal *y = new doublereal[m+1]; - doublereal *c = new doublereal[m]; - doublereal *s = new doublereal[m]; - doublereal **v = new doublerealP[m+1]; - for ( int i=0; i<=m; ++i ) v[i]=V+i*n; - int its=-1; - { - doublereal beta, h, rd, dd, nrm2b; - int j, io, uij, u0j; - nrm2b=dnrm2(n,b,1); - cout << " norm = " << nrm2b << endl; - io=0; - do { // "aussere Iteration - ++io; - //mult(A,x,r); - A.mult(x,r); - daxpy(n,-1.,b,1,r,1); - beta=dnrm2(n,r,1); - dcopy(n,r,1,v[0],1); - dscal(n,1./beta,v[0],1); - - y[0]=beta; - j=0; - uij=0; - do { // innere Iteration j=0,...,m-1 - u0j=uij; - //mult(A,v[j],v[j+1]); - A.mult(v[j],v[j+1]); - - ct_dgemv(ctlapack::ColMajor, ctlapack::Transpose, n, j+1, 1.0, V, n, v[j+1], 1, 0.0, U+u0j, 1); - ct_dgemv(ctlapack::ColMajor, ctlapack::NoTranspose, n, j+1, -1.0, V, n, U+u0j, 1, 1.0, v[j+1], 1); - - //dgemv(Transpose,n,j+1,1.,V,n,v[j+1],1,0.,U+u0j,1); - //dgemv(NoTranspose,n,j+1,-1.,V,n,U+u0j,1,1.,v[j+1],1); - - h=dnrm2(n,v[j+1],1); - - dscal(n,1./h,v[j+1],1); - - for ( int i=0; i=eps*nrm2b ); - { // minimiere bzgl Y - dtpsv(UpperTriangle,NoTranspose,NotUnitTriangular,j,U,y,1); - // korrigiere X - dgemv(NoTranspose,n,j,-1.,V,n,y,1,1.,x,1); - } - } while ( fabs(y[j])>=eps*nrm2b ); - - // R"uckgabe: Zahl der inneren Iterationen - its = m*(io-1)+j; - } - - delete[] V; - delete[] U; - delete[] r; - delete[] y; - delete[] c; - delete[] s; - delete[] v; - return its; -} - - -// ============================================================================ - - -template< class Matrix > -inline int -gmres( int m, int n, const Matrix &A, const doublereal *b, doublereal *x, doublereal eps ){ - return gmres(m,n,A,b,x,eps,false); -} - -// ============================================================================ - - -#endif // GMRES_BLAS_H diff --git a/Cantera/ext/math/idamax.f b/Cantera/ext/math/idamax.f deleted file mode 100755 index eb0de47a7..000000000 --- a/Cantera/ext/math/idamax.f +++ /dev/null @@ -1,39 +0,0 @@ - - integer function idamax(n,dx,incx) -c -c finds the index of element having max. absolute value. -c jack dongarra, linpack, 3/11/78. -c modified 3/93 to return if incx .le. 0. -c - double precision dx(1),dmax - integer i,incx,ix,n -c - idamax = 0 - if( n.lt.1 .or. incx.le.0 ) return - idamax = 1 - if(n.eq.1)return - if(incx.eq.1)go to 20 -c -c code for increment not equal to 1 -c - ix = 1 - dmax = dabs(dx(1)) - ix = ix + incx - do 10 i = 2,n - if(dabs(dx(ix)).le.dmax) go to 5 - idamax = i - dmax = dabs(dx(ix)) - 5 ix = ix + incx - 10 continue - return -c -c code for increment equal to 1 -c - 20 dmax = dabs(dx(1)) - do 30 i = 2,n - if(dabs(dx(i)).le.dmax) go to 30 - idamax = i - dmax = dabs(dx(i)) - 30 continue - return - end diff --git a/Cantera/ext/math/j4save.f b/Cantera/ext/math/j4save.f deleted file mode 100644 index 46b42a7b8..000000000 --- a/Cantera/ext/math/j4save.f +++ /dev/null @@ -1,65 +0,0 @@ -*DECK J4SAVE - FUNCTION J4SAVE (IWHICH, IVALUE, ISET) -C***BEGIN PROLOGUE J4SAVE -C***SUBSIDIARY -C***PURPOSE Save or recall global variables needed by error -C handling routines. -C***LIBRARY SLATEC (XERROR) -C***TYPE INTEGER (J4SAVE-I) -C***KEYWORDS ERROR MESSAGES, ERROR NUMBER, RECALL, SAVE, XERROR -C***AUTHOR Jones, R. E., (SNLA) -C***DESCRIPTION -C -C Abstract -C J4SAVE saves and recalls several global variables needed -C by the library error handling routines. -C -C Description of Parameters -C --Input-- -C IWHICH - Index of item desired. -C = 1 Refers to current error number. -C = 2 Refers to current error control flag. -C = 3 Refers to current unit number to which error -C messages are to be sent. (0 means use standard.) -C = 4 Refers to the maximum number of times any -C message is to be printed (as set by XERMAX). -C = 5 Refers to the total number of units to which -C each error message is to be written. -C = 6 Refers to the 2nd unit for error messages -C = 7 Refers to the 3rd unit for error messages -C = 8 Refers to the 4th unit for error messages -C = 9 Refers to the 5th unit for error messages -C IVALUE - The value to be set for the IWHICH-th parameter, -C if ISET is .TRUE. . -C ISET - If ISET=.TRUE., the IWHICH-th parameter will BE -C given the value, IVALUE. If ISET=.FALSE., the -C IWHICH-th parameter will be unchanged, and IVALUE -C is a dummy parameter. -C --Output-- -C The (old) value of the IWHICH-th parameter will be returned -C in the function value, J4SAVE. -C -C***SEE ALSO XERMSG -C***REFERENCES R. E. Jones and D. K. Kahaner, XERROR, the SLATEC -C Error-handling Package, SAND82-0800, Sandia -C Laboratories, 1982. -C***ROUTINES CALLED (NONE) -C***REVISION HISTORY (YYMMDD) -C 790801 DATE WRITTEN -C 891214 Prologue converted to Version 4.0 format. (BAB) -C 900205 Minor modifications to prologue. (WRB) -C 900402 Added TYPE section. (WRB) -C 910411 Added KEYWORDS section. (WRB) -C 920501 Reformatted the REFERENCES section. (WRB) -C***END PROLOGUE J4SAVE - LOGICAL ISET - INTEGER IPARAM(9) -c SAVE IPARAM - DATA IPARAM(1),IPARAM(2),IPARAM(3),IPARAM(4)/0,2,0,10/ - DATA IPARAM(5)/1/ - DATA IPARAM(6),IPARAM(7),IPARAM(8),IPARAM(9)/0,0,0,0/ -C***FIRST EXECUTABLE STATEMENT J4SAVE - J4SAVE = IPARAM(IWHICH) - IF (ISET) IPARAM(IWHICH) = IVALUE - RETURN - END diff --git a/Cantera/ext/math/mach.cpp b/Cantera/ext/math/mach.cpp deleted file mode 100755 index 7718be97a..000000000 --- a/Cantera/ext/math/mach.cpp +++ /dev/null @@ -1,60 +0,0 @@ - - /* Standard C source for D1MACH -- remove the * in column 1 */ -#include -#include -#include -#include -#include - -extern "C" { - -double d1mach_(long *i) -{ - switch(*i){ - case 1: return DBL_MIN; - case 2: return DBL_MAX; - case 3: return DBL_EPSILON/FLT_RADIX; - case 4: return DBL_EPSILON; - case 5: return log10((double)FLT_RADIX); - } - fprintf(stderr, "invalid argument: d1mach(%ld)\n", *i); - exit(1); - return 0; /* some compilers demand return values */ -} - -double d1mach(long *i) {return d1mach_(i);} - - -long i1mach_(long *i) -{ - switch(*i){ - case 1: return 5; /* standard input */ - case 2: return 6; /* standard output */ - case 3: return 7; /* standard punch */ - case 4: return 0; /* standard error */ - case 5: return 32; /* bits per integer */ - case 6: return sizeof(int); - case 7: return 2; /* base for integers */ - case 8: return 31; /* digits of integer base */ - case 9: return LONG_MAX; - case 10: return FLT_RADIX; - case 11: return FLT_MANT_DIG; - case 12: return FLT_MIN_EXP; - case 13: return FLT_MAX_EXP; - case 14: return DBL_MANT_DIG; - case 15: return DBL_MIN_EXP; - case 16: return DBL_MAX_EXP; - } - fprintf(stderr, "invalid argument: i1mach(%ld)\n", *i); - exit(1); - return 0; /* some compilers demand return values */ -} - -long i1mach(long *i) { return i1mach_(i); } - -long _i1mach_(long *i) { - return i1mach_(i); -} - -} - diff --git a/Cantera/ext/math/mkl_cblas.h b/Cantera/ext/math/mkl_cblas.h deleted file mode 100755 index dc5b45a71..000000000 --- a/Cantera/ext/math/mkl_cblas.h +++ /dev/null @@ -1,644 +0,0 @@ -/* -// INTEL CORPORATION PROPRIETARY INFORMATION -// This software is supplied under the terms of a license agreement or -// nondisclosure agreement with Intel Corporation and may not be copied -// or disclosed except in accordance with the terms of that agreement. -// Copyright 1999, 2000 Intel Corporation. All Rights Reserved. -// -// File : mkl_cblas.h -// Purpose : MKL CBLAS interface -// Author : Shemyakin Andrey -*/ - -#ifndef __MKL_CBLAS_H__ -#define __MKL_CBLAS_H__ -#include - -#ifdef __cplusplus -extern "C" { /* Assume C declarations for C++ */ -#endif /* __cplusplus */ - -/* - * Enumerated and derived types - */ -#define CBLAS_INDEX size_t /* this may vary between platforms */ - -typedef enum {CblasRowMajor=101, CblasColMajor=102} CBLAS_ORDER; -typedef enum {CblasNoTrans=111, CblasTrans=112, CblasConjTrans=113} CBLAS_TRANSPOSE; -typedef enum {CblasUpper=121, CblasLower=122} CBLAS_UPLO; -typedef enum {CblasNonUnit=131, CblasUnit=132} CBLAS_DIAG; -typedef enum {CblasLeft=141, CblasRight=142} CBLAS_SIDE; - -/* - * =========================================================================== - * Prototypes for level 1 BLAS functions (complex are recast as routines) - * =========================================================================== - */ - -float cblas_sdot(const int N, const float *X, const int incX, - const float *Y, const int incY); -float cblas_sdoti(const int N, const float *X, const int *indx, - const float *Y); -double cblas_ddot(const int N, const double *X, const int incX, - const double *Y, const int incY); -double cblas_ddoti(const int N, const double *X, const int *indx, - const double *Y); - -/* - * Functions having prefixes Z and C only - */ -void cblas_cdotu_sub(const int N, const void *X, const int incX, - const void *Y, const int incY, void *dotu); -void cblas_cdotui_sub(const int N, const void *X, const int *indx, - const void *Y, void *dotui); -void cblas_cdotc_sub(const int N, const void *X, const int incX, - const void *Y, const int incY, void *dotc); -void cblas_cdotci_sub(const int N, const void *X, const int *indx, - const void *Y, void *dotui); - -void cblas_zdotu_sub(const int N, const void *X, const int incX, - const void *Y, const int incY, void *dotu); -void cblas_zdotui_sub(const int N, const void *X, const int *indx, - const void *Y, void *dotui); -void cblas_zdotc_sub(const int N, const void *X, const int incX, - const void *Y, const int incY, void *dotc); -void cblas_zdotci_sub(const int N, const void *X, const int *indx, - const void *Y, void *dotui); - - -/* - * Functions having prefixes S D SC DZ - */ -float cblas_snrm2(const int N, const float *X, const int incX); -float cblas_sasum(const int N, const float *X, const int incX); - -double cblas_dnrm2(const int N, const double *X, const int incX); -double cblas_dasum(const int N, const double *X, const int incX); - -float cblas_scnrm2(const int N, const void *X, const int incX); -float cblas_scasum(const int N, const void *X, const int incX); - -double cblas_dznrm2(const int N, const void *X, const int incX); -double cblas_dzasum(const int N, const void *X, const int incX); - - -/* - * Functions having standard 4 prefixes (S D C Z) - */ -CBLAS_INDEX cblas_isamax(const int N, const float *X, const int incX); -CBLAS_INDEX cblas_idamax(const int N, const double *X, const int incX); -CBLAS_INDEX cblas_icamax(const int N, const void *X, const int incX); -CBLAS_INDEX cblas_izamax(const int N, const void *X, const int incX); -CBLAS_INDEX cblas_isamin(const int N, const float *X, const int incX); -CBLAS_INDEX cblas_idamin(const int N, const double *X, const int incX); -CBLAS_INDEX cblas_icamin(const int N, const void *X, const int incX); -CBLAS_INDEX cblas_izamin(const int N, const void *X, const int incX); - -/* - * =========================================================================== - * Prototypes for level 1 BLAS routines - * =========================================================================== - */ - -/* - * Routines with standard 4 prefixes (s, d, c, z) - */ -void cblas_sswap(const int N, float *X, const int incX, - float *Y, const int incY); -void cblas_scopy(const int N, const float *X, const int incX, - float *Y, const int incY); -void cblas_saxpy(const int N, const float alpha, const float *X, - const int incX, float *Y, const int incY); -void cblas_saxpyi(const int N, const float alpha, const float *X, - const int *indx, float *Y); -void cblas_sgthr(const int N, const float *Y, float *X, - const int *indx); -void cblas_sgthrz(const int N, float *Y, float *X, - const int *indx); -void cblas_ssctr(const int N, const float *X, const int *indx, - float *Y); -void cblas_srotg(float *a, float *b, float *c, float *s); - -void cblas_dswap(const int N, double *X, const int incX, - double *Y, const int incY); -void cblas_dcopy(const int N, const double *X, const int incX, - double *Y, const int incY); -void cblas_daxpy(const int N, const double alpha, const double *X, - const int incX, double *Y, const int incY); -void cblas_daxpyi(const int N, const double alpha, const double *X, - const int *indx, double *Y); -void cblas_dgthr(const int N, const double *Y, double *X, - const int *indx); -void cblas_dgthrz(const int N, double *Y, double *X, - const int *indx); -void cblas_dsctr(const int N, const double *X, const int *indx, - double *Y); -void cblas_drotg(double *a, double *b, double *c, double *s); - -void cblas_cswap(const int N, void *X, const int incX, - void *Y, const int incY); -void cblas_ccopy(const int N, const void *X, const int incX, - void *Y, const int incY); -void cblas_caxpy(const int N, const void *alpha, const void *X, - const int incX, void *Y, const int incY); -void cblas_caxpyi(const int N, const void *alpha, const void *X, - const int *indx, void *Y); -void cblas_cgthr(const int N, const void *Y, void *X, - const int *indx); -void cblas_cgthrz(const int N, void *Y, void *X, - const int *indx); -void cblas_csctr(const int N, const void *X, const int *indx, - void *Y); -void cblas_crotg(void *a, const void *b, float *c, void *s); - -void cblas_zswap(const int N, void *X, const int incX, - void *Y, const int incY); -void cblas_zcopy(const int N, const void *X, const int incX, - void *Y, const int incY); -void cblas_zaxpy(const int N, const void *alpha, const void *X, - const int incX, void *Y, const int incY); -void cblas_zaxpyi(const int N, const void *alpha, const void *X, - const int *indx, void *Y); -void cblas_zgthr(const int N, const void *Y, void *X, - const int *indx); -void cblas_zgthrz(const int N, void *Y, void *X, - const int *indx); -void cblas_zsctr(const int N, const void *X, const int *indx, - void *Y); -void cblas_zrotg(void *a, const void *b, double *c, void *s); - -/* - * Routines with S and D prefix only - */ -void cblas_srotmg(float *d1, float *d2, float *b1, const float *b2, float *P); -void cblas_srot(const int N, float *X, const int incX, - float *Y, const int incY, const float c, const float s); -void cblas_sroti(const int N, float *X, const int *indx, - float *Y, const float c, const float s); -void cblas_srotm(const int N, float *X, const int incX, - float *Y, const int incY, const float *P); - -void cblas_drotmg(double *d1, double *d2, double *b1, const double *b2, double *P); -void cblas_drot(const int N, double *X, const int incX, - double *Y, const int incY, const double c, const double s); -void cblas_drotm(const int N, double *X, const int incX, - double *Y, const int incY, const double *P); -void cblas_droti(const int N, double *X, const int *indx, - double *Y, const double c, const double s); - -/* - * Routines with CS and ZD prefix only - */ -void cblas_csrot(const int N, void *X, const int incX, - void *Y, const int incY, const float c, const float s); -void cblas_zdrot(const int N, void *X, const int incX, - void *Y, const int incY, const double c, const double s); - -/* - * Routines with S D C Z CS and ZD prefixes - */ -void cblas_sscal(const int N, const float alpha, float *X, const int incX); -void cblas_dscal(const int N, const double alpha, double *X, const int incX); -void cblas_cscal(const int N, const void *alpha, void *X, const int incX); -void cblas_zscal(const int N, const void *alpha, void *X, const int incX); -void cblas_csscal(const int N, const float alpha, void *X, const int incX); -void cblas_zdscal(const int N, const double alpha, void *X, const int incX); - -/* - * =========================================================================== - * Prototypes for level 2 BLAS - * =========================================================================== - */ - -/* - * Routines with standard 4 prefixes (S, D, C, Z) - */ -void cblas_sgemv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const float alpha, const float *A, const int lda, - const float *X, const int incX, const float beta, - float *Y, const int incY); -void cblas_sgbmv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const int KL, const int KU, const float alpha, - const float *A, const int lda, const float *X, - const int incX, const float beta, float *Y, const int incY); -void cblas_strmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const float *A, const int lda, - float *X, const int incX); -void cblas_stbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const float *A, const int lda, - float *X, const int incX); -void cblas_stpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const float *Ap, float *X, const int incX); -void cblas_strsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const float *A, const int lda, float *X, - const int incX); -void cblas_stbsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const float *A, const int lda, - float *X, const int incX); -void cblas_stpsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const float *Ap, float *X, const int incX); - -void cblas_dgemv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const double alpha, const double *A, const int lda, - const double *X, const int incX, const double beta, - double *Y, const int incY); -void cblas_dgbmv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const int KL, const int KU, const double alpha, - const double *A, const int lda, const double *X, - const int incX, const double beta, double *Y, const int incY); -void cblas_dtrmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const double *A, const int lda, - double *X, const int incX); -void cblas_dtbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const double *A, const int lda, - double *X, const int incX); -void cblas_dtpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const double *Ap, double *X, const int incX); -void cblas_dtrsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const double *A, const int lda, double *X, - const int incX); -void cblas_dtbsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const double *A, const int lda, - double *X, const int incX); -void cblas_dtpsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const double *Ap, double *X, const int incX); - -void cblas_cgemv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *X, const int incX, const void *beta, - void *Y, const int incY); -void cblas_cgbmv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const int KL, const int KU, const void *alpha, - const void *A, const int lda, const void *X, - const int incX, const void *beta, void *Y, const int incY); -void cblas_ctrmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *A, const int lda, - void *X, const int incX); -void cblas_ctbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const void *A, const int lda, - void *X, const int incX); -void cblas_ctpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *Ap, void *X, const int incX); -void cblas_ctrsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *A, const int lda, void *X, - const int incX); -void cblas_ctbsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const void *A, const int lda, - void *X, const int incX); -void cblas_ctpsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *Ap, void *X, const int incX); - -void cblas_zgemv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *X, const int incX, const void *beta, - void *Y, const int incY); -void cblas_zgbmv(const CBLAS_ORDER order, - const CBLAS_TRANSPOSE TransA, const int M, const int N, - const int KL, const int KU, const void *alpha, - const void *A, const int lda, const void *X, - const int incX, const void *beta, void *Y, const int incY); -void cblas_ztrmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *A, const int lda, - void *X, const int incX); -void cblas_ztbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const void *A, const int lda, - void *X, const int incX); -void cblas_ztpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *Ap, void *X, const int incX); -void cblas_ztrsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *A, const int lda, void *X, - const int incX); -void cblas_ztbsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const int K, const void *A, const int lda, - void *X, const int incX); -void cblas_ztpsv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE TransA, const CBLAS_DIAG Diag, - const int N, const void *Ap, void *X, const int incX); - - -/* - * Routines with S and D prefixes only - */ -void cblas_ssymv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *A, - const int lda, const float *X, const int incX, - const float beta, float *Y, const int incY); -void cblas_ssbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const int K, const float alpha, const float *A, - const int lda, const float *X, const int incX, - const float beta, float *Y, const int incY); -void cblas_sspmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *Ap, - const float *X, const int incX, - const float beta, float *Y, const int incY); -void cblas_sger(const CBLAS_ORDER order, const int M, const int N, - const float alpha, const float *X, const int incX, - const float *Y, const int incY, float *A, const int lda); -void cblas_ssyr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *X, - const int incX, float *A, const int lda); -void cblas_sspr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *X, - const int incX, float *Ap); -void cblas_ssyr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *X, - const int incX, const float *Y, const int incY, float *A, - const int lda); -void cblas_sspr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const float *X, - const int incX, const float *Y, const int incY, float *A); - -void cblas_dsymv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *A, - const int lda, const double *X, const int incX, - const double beta, double *Y, const int incY); -void cblas_dsbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const int K, const double alpha, const double *A, - const int lda, const double *X, const int incX, - const double beta, double *Y, const int incY); -void cblas_dspmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *Ap, - const double *X, const int incX, - const double beta, double *Y, const int incY); -void cblas_dger(const CBLAS_ORDER order, const int M, const int N, - const double alpha, const double *X, const int incX, - const double *Y, const int incY, double *A, const int lda); -void cblas_dsyr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *X, - const int incX, double *A, const int lda); -void cblas_dspr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *X, - const int incX, double *Ap); -void cblas_dsyr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *X, - const int incX, const double *Y, const int incY, double *A, - const int lda); -void cblas_dspr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const double *X, - const int incX, const double *Y, const int incY, double *A); - - -/* - * Routines with C and Z prefixes only - */ -void cblas_chemv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const void *alpha, const void *A, - const int lda, const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_chbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const int K, const void *alpha, const void *A, - const int lda, const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_chpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const void *alpha, const void *Ap, - const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_cgeru(const CBLAS_ORDER order, const int M, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_cgerc(const CBLAS_ORDER order, const int M, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_cher(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const void *X, const int incX, - void *A, const int lda); -void cblas_chpr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const float alpha, const void *X, - const int incX, void *A); -void cblas_cher2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_chpr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *Ap); - -void cblas_zhemv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const void *alpha, const void *A, - const int lda, const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_zhbmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const int K, const void *alpha, const void *A, - const int lda, const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_zhpmv(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const void *alpha, const void *Ap, - const void *X, const int incX, - const void *beta, void *Y, const int incY); -void cblas_zgeru(const CBLAS_ORDER order, const int M, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_zgerc(const CBLAS_ORDER order, const int M, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_zher(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const void *X, const int incX, - void *A, const int lda); -void cblas_zhpr(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, - const int N, const double alpha, const void *X, - const int incX, void *A); -void cblas_zher2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *A, const int lda); -void cblas_zhpr2(const CBLAS_ORDER order, const CBLAS_UPLO Uplo, const int N, - const void *alpha, const void *X, const int incX, - const void *Y, const int incY, void *Ap); - -/* - * =========================================================================== - * Prototypes for level 3 BLAS - * =========================================================================== - */ - -/* - * Routines with standard 4 prefixes (S, D, C, Z) - */ -void cblas_sgemm(const CBLAS_ORDER Order, const CBLAS_TRANSPOSE TransA, - const CBLAS_TRANSPOSE TransB, const int M, const int N, - const int K, const float alpha, const float *A, - const int lda, const float *B, const int ldb, - const float beta, float *C, const int ldc); -void cblas_ssymm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const float alpha, const float *A, const int lda, - const float *B, const int ldb, const float beta, - float *C, const int ldc); -void cblas_ssyrk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const float alpha, const float *A, const int lda, - const float beta, float *C, const int ldc); -void cblas_ssyr2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const float alpha, const float *A, const int lda, - const float *B, const int ldb, const float beta, - float *C, const int ldc); -void cblas_strmm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const float alpha, const float *A, const int lda, - float *B, const int ldb); -void cblas_strsm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const float alpha, const float *A, const int lda, - float *B, const int ldb); - -void cblas_dgemm(const CBLAS_ORDER Order, const CBLAS_TRANSPOSE TransA, - const CBLAS_TRANSPOSE TransB, const int M, const int N, - const int K, const double alpha, const double *A, - const int lda, const double *B, const int ldb, - const double beta, double *C, const int ldc); -void cblas_dsymm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const double alpha, const double *A, const int lda, - const double *B, const int ldb, const double beta, - double *C, const int ldc); -void cblas_dsyrk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const double alpha, const double *A, const int lda, - const double beta, double *C, const int ldc); -void cblas_dsyr2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const double alpha, const double *A, const int lda, - const double *B, const int ldb, const double beta, - double *C, const int ldc); -void cblas_dtrmm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const double alpha, const double *A, const int lda, - double *B, const int ldb); -void cblas_dtrsm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const double alpha, const double *A, const int lda, - double *B, const int ldb); - -void cblas_cgemm(const CBLAS_ORDER Order, const CBLAS_TRANSPOSE TransA, - const CBLAS_TRANSPOSE TransB, const int M, const int N, - const int K, const void *alpha, const void *A, - const int lda, const void *B, const int ldb, - const void *beta, void *C, const int ldc); -void cblas_csymm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_csyrk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *beta, void *C, const int ldc); -void cblas_csyr2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_ctrmm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const void *alpha, const void *A, const int lda, - void *B, const int ldb); -void cblas_ctrsm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const void *alpha, const void *A, const int lda, - void *B, const int ldb); - -void cblas_zgemm(const CBLAS_ORDER Order, const CBLAS_TRANSPOSE TransA, - const CBLAS_TRANSPOSE TransB, const int M, const int N, - const int K, const void *alpha, const void *A, - const int lda, const void *B, const int ldb, - const void *beta, void *C, const int ldc); -void cblas_zsymm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_zsyrk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *beta, void *C, const int ldc); -void cblas_zsyr2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_ztrmm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const void *alpha, const void *A, const int lda, - void *B, const int ldb); -void cblas_ztrsm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE TransA, - const CBLAS_DIAG Diag, const int M, const int N, - const void *alpha, const void *A, const int lda, - void *B, const int ldb); - - -/* - * Routines with prefixes C and Z only - */ -void cblas_chemm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_cherk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const float alpha, const void *A, const int lda, - const float beta, void *C, const int ldc); -void cblas_cher2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const float beta, - void *C, const int ldc); - -void cblas_zhemm(const CBLAS_ORDER Order, const CBLAS_SIDE Side, - const CBLAS_UPLO Uplo, const int M, const int N, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const void *beta, - void *C, const int ldc); -void cblas_zherk(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const double alpha, const void *A, const int lda, - const double beta, void *C, const int ldc); -void cblas_zher2k(const CBLAS_ORDER Order, const CBLAS_UPLO Uplo, - const CBLAS_TRANSPOSE Trans, const int N, const int K, - const void *alpha, const void *A, const int lda, - const void *B, const int ldb, const double beta, - void *C, const int ldc); - - -#ifdef __cplusplus -} -#endif /* __cplusplus */ - -#endif /* __MKL_CBLAS_H__ */ diff --git a/Cantera/ext/math/pcoef.f b/Cantera/ext/math/pcoef.f deleted file mode 100644 index 28fe548ff..000000000 --- a/Cantera/ext/math/pcoef.f +++ /dev/null @@ -1,712 +0,0 @@ -*DECK PCOEF - SUBROUTINE PCOEF (L, C, TC, A) -C***BEGIN PROLOGUE PCOEF -C***PURPOSE Convert the POLFIT coefficients to Taylor series form. -C***LIBRARY SLATEC -C***CATEGORY K1A1A2 -C***TYPE SINGLE PRECISION (PCOEF-S, DPCOEF-D) -C***KEYWORDS CURVE FITTING, DATA FITTING, LEAST SQUARES, POLYNOMIAL FIT -C***AUTHOR Shampine, L. F., (SNLA) -C Davenport, S. M., (SNLA) -C***DESCRIPTION -C -C Written BY L. F. Shampine and S. M. Davenport. -C -C Abstract -C -C POLFIT computes the least squares polynomial fit of degree L as -C a sum of orthogonal polynomials. PCOEF changes this fit to its -C Taylor expansion about any point C , i.e. writes the polynomial -C as a sum of powers of (X-C). Taking C=0. gives the polynomial -C in powers of X, but a suitable non-zero C often leads to -C polynomials which are better scaled and more accurately evaluated. -C -C The parameters for PCOEF are -C -C INPUT -- -C L - Indicates the degree of polynomial to be changed to -C its Taylor expansion. To obtain the Taylor -C coefficients in reverse order, input L as the -C negative of the degree desired. The absolute value -C of L must be less than or equal to NDEG, the highest -C degree polynomial fitted by POLFIT . -C C - The point about which the Taylor expansion is to be -C made. -C A - Work and output array containing values from last -C call to POLFIT . -C -C OUTPUT -- -C TC - Vector containing the first LL+1 Taylor coefficients -C where LL=ABS(L). If L.GT.0 , the coefficients are -C in the usual Taylor series order, i.e. -C P(X) = TC(1) + TC(2)*(X-C) + ... + TC(N+1)*(X-C)**N -C If L .LT. 0, the coefficients are in reverse order, -C i.e. -C P(X) = TC(1)*(X-C)**N + ... + TC(N)*(X-C) + TC(N+1) -C -C***REFERENCES L. F. Shampine, S. M. Davenport and R. E. Huddleston, -C Curve fitting by polynomials in one variable, Report -C SLA-74-0270, Sandia Laboratories, June 1974. -C***ROUTINES CALLED PVALUE -C***REVISION HISTORY (YYMMDD) -C 740601 DATE WRITTEN -C 890531 Changed all specific intrinsics to generic. (WRB) -C 890531 REVISION DATE from Version 3.2 -C 891214 Prologue converted to Version 4.0 format. (BAB) -C 920501 Reformatted the REFERENCES section. (WRB) -C***END PROLOGUE PCOEF -C - DIMENSION A(*), TC(*) -C***FIRST EXECUTABLE STATEMENT PCOEF - LL = ABS(L) - LLP1 = LL + 1 - CALL PVALUE (LL,LL,C,TC(1),TC(2),A) - IF (LL .LT. 2) GO TO 2 - FAC = 1.0 - DO 1 I = 3,LLP1 - FAC = FAC*(I-1) - 1 TC(I) = TC(I)/FAC - 2 IF (L .GE. 0) GO TO 4 - NR = LLP1/2 - LLP2 = LL + 2 - DO 3 I = 1,NR - SAVE = TC(I) - NEW = LLP2 - I - TC(I) = TC(NEW) - 3 TC(NEW) = SAVE - 4 RETURN - END -c$$$ -c$$$ subroutine dscal(n,da,dx,incx) -c$$$c -c$$$c scales a vector by a constant. -c$$$c uses unrolled loops for increment equal to one. -c$$$c jack dongarra, linpack, 3/11/78. -c$$$c modified 3/93 to return if incx .le. 0. -c$$$c -c$$$ double precision da,dx(1) -c$$$ integer i,incx,m,mp1,n,nincx -c$$$c -c$$$ if( n.le.0 .or. incx.le.0 )return -c$$$ if(incx.eq.1)go to 20 -c$$$c -c$$$c code for increment not equal to 1 -c$$$c -c$$$ nincx = n*incx -c$$$ do 10 i = 1,nincx,incx -c$$$ dx(i) = da*dx(i) -c$$$ 10 continue -c$$$ return -c$$$c -c$$$c code for increment equal to 1 -c$$$c -c$$$c -c$$$c clean-up loop -c$$$c -c$$$ 20 m = mod(n,5) -c$$$ if( m .eq. 0 ) go to 40 -c$$$ do 30 i = 1,m -c$$$ dx(i) = da*dx(i) -c$$$ 30 continue -c$$$ if( n .lt. 5 ) return -c$$$ 40 mp1 = m + 1 -c$$$ do 50 i = mp1,n,5 -c$$$ dx(i) = da*dx(i) -c$$$ dx(i + 1) = da*dx(i + 1) -c$$$ dx(i + 2) = da*dx(i + 2) -c$$$ dx(i + 3) = da*dx(i + 3) -c$$$ dx(i + 4) = da*dx(i + 4) -c$$$ 50 continue -c$$$ return -c$$$ end - - subroutine dgbco(abd,lda,n,ml,mu,ipvt,rcond,z) - integer lda,n,ml,mu,ipvt(1) - double precision abd(lda,1),z(1) - double precision rcond -c -c dgbco factors a double precision band matrix by gaussian -c elimination and estimates the condition of the matrix. -c -c if rcond is not needed, dgbfa is slightly faster. -c to solve a*x = b , follow dgbco by dgbsl. -c to compute inverse(a)*c , follow dgbco by dgbsl. -c to compute determinant(a) , follow dgbco by dgbdi. -c -c on entry -c -c abd double precision(lda, n) -c contains the matrix in band storage. the columns -c of the matrix are stored in the columns of abd and -c the diagonals of the matrix are stored in rows -c ml+1 through 2*ml+mu+1 of abd . -c see the comments below for details. -c -c lda integer -c the leading dimension of the array abd . -c lda must be .ge. 2*ml + mu + 1 . -c -c n integer -c the order of the original matrix. -c -c ml integer -c number of diagonals below the main diagonal. -c 0 .le. ml .lt. n . -c -c mu integer -c number of diagonals above the main diagonal. -c 0 .le. mu .lt. n . -c more efficient if ml .le. mu . -c -c on return -c -c abd an upper triangular matrix in band storage and -c the multipliers which were used to obtain it. -c the factorization can be written a = l*u where -c l is a product of permutation and unit lower -c triangular matrices and u is upper triangular. -c -c ipvt integer(n) -c an integer vector of pivot indices. -c -c rcond double precision -c an estimate of the reciprocal condition of a . -c for the system a*x = b , relative perturbations -c in a and b of size epsilon may cause -c relative perturbations in x of size epsilon/rcond . -c if rcond is so small that the logical expression -c 1.0 + rcond .eq. 1.0 -c is true, then a may be singular to working -c precision. in particular, rcond is zero if -c exact singularity is detected or the estimate -c underflows. -c -c z double precision(n) -c a work vector whose contents are usually unimportant. -c if a is close to a singular matrix, then z is -c an approximate null vector in the sense that -c norm(a*z) = rcond*norm(a)*norm(z) . -c -c band storage -c -c if a is a band matrix, the following program segment -c will set up the input. -c -c ml = (band width below the diagonal) -c mu = (band width above the diagonal) -c m = ml + mu + 1 -c do 20 j = 1, n -c i1 = max0(1, j-mu) -c i2 = min0(n, j+ml) -c do 10 i = i1, i2 -c k = i - j + m -c abd(k,j) = a(i,j) -c 10 continue -c 20 continue -c -c this uses rows ml+1 through 2*ml+mu+1 of abd . -c in addition, the first ml rows in abd are used for -c elements generated during the triangularization. -c the total number of rows needed in abd is 2*ml+mu+1 . -c the ml+mu by ml+mu upper left triangle and the -c ml by ml lower right triangle are not referenced. -c -c example.. if the original matrix is -c -c 11 12 13 0 0 0 -c 21 22 23 24 0 0 -c 0 32 33 34 35 0 -c 0 0 43 44 45 46 -c 0 0 0 54 55 56 -c 0 0 0 0 65 66 -c -c then n = 6, ml = 1, mu = 2, lda .ge. 5 and abd should contain -c -c * * * + + + , * = not used -c * * 13 24 35 46 , + = used for pivoting -c * 12 23 34 45 56 -c 11 22 33 44 55 66 -c 21 32 43 54 65 * -c -c linpack. this version dated 08/14/78 . -c cleve moler, university of new mexico, argonne national lab. -c -c subroutines and functions -c -c linpack dgbfa -c blas daxpy,ddot,dscal,dasum -c fortran dabs,dmax1,max0,min0,dsign -c -c internal variables -c - double precision ddot,ek,t,wk,wkm - double precision anorm,s,dasum,sm,ynorm - integer is,info,j,ju,k,kb,kp1,l,la,lm,lz,m,mm -c -c -c compute 1-norm of a -c - anorm = 0.0d0 - l = ml + 1 - is = l + mu - do 10 j = 1, n - anorm = dmax1(anorm,dasum(l,abd(is,j),1)) - if (is .gt. ml + 1) is = is - 1 - if (j .le. mu) l = l + 1 - if (j .ge. n - ml) l = l - 1 - 10 continue -c -c factor -c - call dgbfa(abd,lda,n,ml,mu,ipvt,info) -c -c rcond = 1/(norm(a)*(estimate of norm(inverse(a)))) . -c estimate = norm(z)/norm(y) where a*z = y and trans(a)*y = e . -c trans(a) is the transpose of a . the components of e are -c chosen to cause maximum local growth in the elements of w where -c trans(u)*w = e . the vectors are frequently rescaled to avoid -c overflow. -c -c solve trans(u)*w = e -c - ek = 1.0d0 - do 20 j = 1, n - z(j) = 0.0d0 - 20 continue - m = ml + mu + 1 - ju = 0 - do 100 k = 1, n - if (z(k) .ne. 0.0d0) ek = dsign(ek,-z(k)) - if (dabs(ek-z(k)) .le. dabs(abd(m,k))) go to 30 - s = dabs(abd(m,k))/dabs(ek-z(k)) - call dscal(n,s,z,1) - ek = s*ek - 30 continue - wk = ek - z(k) - wkm = -ek - z(k) - s = dabs(wk) - sm = dabs(wkm) - if (abd(m,k) .eq. 0.0d0) go to 40 - wk = wk/abd(m,k) - wkm = wkm/abd(m,k) - go to 50 - 40 continue - wk = 1.0d0 - wkm = 1.0d0 - 50 continue - kp1 = k + 1 - ju = min0(max0(ju,mu+ipvt(k)),n) - mm = m - if (kp1 .gt. ju) go to 90 - do 60 j = kp1, ju - mm = mm - 1 - sm = sm + dabs(z(j)+wkm*abd(mm,j)) - z(j) = z(j) + wk*abd(mm,j) - s = s + dabs(z(j)) - 60 continue - if (s .ge. sm) go to 80 - t = wkm - wk - wk = wkm - mm = m - do 70 j = kp1, ju - mm = mm - 1 - z(j) = z(j) + t*abd(mm,j) - 70 continue - 80 continue - 90 continue - z(k) = wk - 100 continue - s = 1.0d0/dasum(n,z,1) - call dscal(n,s,z,1) -c -c solve trans(l)*y = w -c - do 120 kb = 1, n - k = n + 1 - kb - lm = min0(ml,n-k) - if (k .lt. n) z(k) = z(k) + ddot(lm,abd(m+1,k),1,z(k+1),1) - if (dabs(z(k)) .le. 1.0d0) go to 110 - s = 1.0d0/dabs(z(k)) - call dscal(n,s,z,1) - 110 continue - l = ipvt(k) - t = z(l) - z(l) = z(k) - z(k) = t - 120 continue - s = 1.0d0/dasum(n,z,1) - call dscal(n,s,z,1) -c - ynorm = 1.0d0 -c -c solve l*v = y -c - do 140 k = 1, n - l = ipvt(k) - t = z(l) - z(l) = z(k) - z(k) = t - lm = min0(ml,n-k) - if (k .lt. n) call daxpy(lm,t,abd(m+1,k),1,z(k+1),1) - if (dabs(z(k)) .le. 1.0d0) go to 130 - s = 1.0d0/dabs(z(k)) - call dscal(n,s,z,1) - ynorm = s*ynorm - 130 continue - 140 continue - s = 1.0d0/dasum(n,z,1) - call dscal(n,s,z,1) - ynorm = s*ynorm -c -c solve u*z = w -c - do 160 kb = 1, n - k = n + 1 - kb - if (dabs(z(k)) .le. dabs(abd(m,k))) go to 150 - s = dabs(abd(m,k))/dabs(z(k)) - call dscal(n,s,z,1) - ynorm = s*ynorm - 150 continue - if (abd(m,k) .ne. 0.0d0) z(k) = z(k)/abd(m,k) - if (abd(m,k) .eq. 0.0d0) z(k) = 1.0d0 - lm = min0(k,m) - 1 - la = m - lm - lz = k - lm - t = -z(k) - call daxpy(lm,t,abd(la,k),1,z(lz),1) - 160 continue -c make znorm = 1.0 - s = 1.0d0/dasum(n,z,1) - call dscal(n,s,z,1) - ynorm = s*ynorm -c - if (anorm .ne. 0.0d0) rcond = ynorm/anorm - if (anorm .eq. 0.0d0) rcond = 0.0d0 - return - end - - subroutine dgeco(a,lda,n,ipvt,rcond,z) - integer lda,n,ipvt(1) - double precision a(lda,1),z(1) - double precision rcond -c -c dgeco factors a double precision matrix by gaussian elimination -c and estimates the condition of the matrix. -c -c if rcond is not needed, dgefa is slightly faster. -c to solve a*x = b , follow dgeco by dgesl. -c to compute inverse(a)*c , follow dgeco by dgesl. -c to compute determinant(a) , follow dgeco by dgedi. -c to compute inverse(a) , follow dgeco by dgedi. -c -c on entry -c -c a double precision(lda, n) -c the matrix to be factored. -c -c lda integer -c the leading dimension of the array a . -c -c n integer -c the order of the matrix a . -c -c on return -c -c a an upper triangular matrix and the multipliers -c which were used to obtain it. -c the factorization can be written a = l*u where -c l is a product of permutation and unit lower -c triangular matrices and u is upper triangular. -c -c ipvt integer(n) -c an integer vector of pivot indices. -c -c rcond double precision -c an estimate of the reciprocal condition of a . -c for the system a*x = b , relative perturbations -c in a and b of size epsilon may cause -c relative perturbations in x of size epsilon/rcond . -c if rcond is so small that the logical expression -c 1.0 + rcond .eq. 1.0 -c is true, then a may be singular to working -c precision. in particular, rcond is zero if -c exact singularity is detected or the estimate -c underflows. -c -c z double precision(n) -c a work vector whose contents are usually unimportant. -c if a is close to a singular matrix, then z is -c an approximate null vector in the sense that -c norm(a*z) = rcond*norm(a)*norm(z) . -c -c linpack. this version dated 08/14/78 . -c cleve moler, university of new mexico, argonne national lab. -c -c subroutines and functions -c -c linpack dgefa -c blas daxpy,ddot,dscal,dasum -c fortran dabs,dmax1,dsign -c -c internal variables -c - double precision ddot,ek,t,wk,wkm - double precision anorm,s,dasum,sm,ynorm - integer info,j,k,kb,kp1,l -c -c -c compute 1-norm of a -c - anorm = 0.0d0 - do 10 j = 1, n - anorm = dmax1(anorm,dasum(n,a(1,j),1)) - 10 continue -c -c factor -c - call dgefa(a,lda,n,ipvt,info) -c -c rcond = 1/(norm(a)*(estimate of norm(inverse(a)))) . -c estimate = norm(z)/norm(y) where a*z = y and trans(a)*y = e . -c trans(a) is the transpose of a . the components of e are -c chosen to cause maximum local growth in the elements of w where -c trans(u)*w = e . the vectors are frequently rescaled to avoid -c overflow. -c -c solve trans(u)*w = e -c - ek = 1.0d0 - do 20 j = 1, n - z(j) = 0.0d0 - 20 continue - do 100 k = 1, n - if (z(k) .ne. 0.0d0) ek = dsign(ek,-z(k)) - if (dabs(ek-z(k)) .le. dabs(a(k,k))) go to 30 - s = dabs(a(k,k))/dabs(ek-z(k)) - call dscal(n,s,z,1) - ek = s*ek - 30 continue - wk = ek - z(k) - wkm = -ek - z(k) - s = dabs(wk) - sm = dabs(wkm) - if (a(k,k) .eq. 0.0d0) go to 40 - wk = wk/a(k,k) - wkm = wkm/a(k,k) - go to 50 - 40 continue - wk = 1.0d0 - wkm = 1.0d0 - 50 continue - kp1 = k + 1 - if (kp1 .gt. n) go to 90 - do 60 j = kp1, n - sm = sm + dabs(z(j)+wkm*a(k,j)) - z(j) = z(j) + wk*a(k,j) - s = s + dabs(z(j)) - 60 continue - if (s .ge. sm) go to 80 - t = wkm - wk - wk = wkm - do 70 j = kp1, n - z(j) = z(j) + t*a(k,j) - 70 continue - 80 continue - 90 continue - z(k) = wk - 100 continue - s = 1.0d0/dasum(n,z,1) - call dscal(n,s,z,1) -c -c solve trans(l)*y = w -c - do 120 kb = 1, n - k = n + 1 - kb - if (k .lt. n) z(k) = z(k) + ddot(n-k,a(k+1,k),1,z(k+1),1) - if (dabs(z(k)) .le. 1.0d0) go to 110 - s = 1.0d0/dabs(z(k)) - call dscal(n,s,z,1) - 110 continue - l = ipvt(k) - t = z(l) - z(l) = z(k) - z(k) = t - 120 continue - s = 1.0d0/dasum(n,z,1) - call dscal(n,s,z,1) -c - ynorm = 1.0d0 -c -c solve l*v = y -c - do 140 k = 1, n - l = ipvt(k) - t = z(l) - z(l) = z(k) - z(k) = t - if (k .lt. n) call daxpy(n-k,t,a(k+1,k),1,z(k+1),1) - if (dabs(z(k)) .le. 1.0d0) go to 130 - s = 1.0d0/dabs(z(k)) - call dscal(n,s,z,1) - ynorm = s*ynorm - 130 continue - 140 continue - s = 1.0d0/dasum(n,z,1) - call dscal(n,s,z,1) - ynorm = s*ynorm -c -c solve u*z = v -c - do 160 kb = 1, n - k = n + 1 - kb - if (dabs(z(k)) .le. dabs(a(k,k))) go to 150 - s = dabs(a(k,k))/dabs(z(k)) - call dscal(n,s,z,1) - ynorm = s*ynorm - 150 continue - if (a(k,k) .ne. 0.0d0) z(k) = z(k)/a(k,k) - if (a(k,k) .eq. 0.0d0) z(k) = 1.0d0 - t = -z(k) - call daxpy(k-1,t,a(1,k),1,z(1),1) - 160 continue -c make znorm = 1.0 - s = 1.0d0/dasum(n,z,1) - call dscal(n,s,z,1) - ynorm = s*ynorm -c - if (anorm .ne. 0.0d0) rcond = ynorm/anorm - if (anorm .eq. 0.0d0) rcond = 0.0d0 - return - end - - - subroutine dgedi(a,lda,n,ipvt,det,work,job) - integer lda,n,ipvt(1),job - double precision a(lda,1),det(2),work(1) -c -c dgedi computes the determinant and inverse of a matrix -c using the factors computed by dgeco or dgefa. -c -c on entry -c -c a double precision(lda, n) -c the output from dgeco or dgefa. -c -c lda integer -c the leading dimension of the array a . -c -c n integer -c the order of the matrix a . -c -c ipvt integer(n) -c the pivot vector from dgeco or dgefa. -c -c work double precision(n) -c work vector. contents destroyed. -c -c job integer -c = 11 both determinant and inverse. -c = 01 inverse only. -c = 10 determinant only. -c -c on return -c -c a inverse of original matrix if requested. -c otherwise unchanged. -c -c det double precision(2) -c determinant of original matrix if requested. -c otherwise not referenced. -c determinant = det(1) * 10.0**det(2) -c with 1.0 .le. dabs(det(1)) .lt. 10.0 -c or det(1) .eq. 0.0 . -c -c error condition -c -c a division by zero will occur if the input factor contains -c a zero on the diagonal and the inverse is requested. -c it will not occur if the subroutines are called correctly -c and if dgeco has set rcond .gt. 0.0 or dgefa has set -c info .eq. 0 . -c -c linpack. this version dated 08/14/78 . -c cleve moler, university of new mexico, argonne national lab. -c -c subroutines and functions -c -c blas daxpy,dscal,dswap -c fortran dabs,mod -c -c internal variables -c - double precision t - double precision ten - integer i,j,k,kb,kp1,l,nm1 -c -c -c compute determinant -c - if (job/10 .eq. 0) go to 70 - det(1) = 1.0d0 - det(2) = 0.0d0 - ten = 10.0d0 - do 50 i = 1, n - if (ipvt(i) .ne. i) det(1) = -det(1) - det(1) = a(i,i)*det(1) -c ...exit - if (det(1) .eq. 0.0d0) go to 60 - 10 if (dabs(det(1)) .ge. 1.0d0) go to 20 - det(1) = ten*det(1) - det(2) = det(2) - 1.0d0 - go to 10 - 20 continue - 30 if (dabs(det(1)) .lt. ten) go to 40 - det(1) = det(1)/ten - det(2) = det(2) + 1.0d0 - go to 30 - 40 continue - 50 continue - 60 continue - 70 continue -c -c compute inverse(u) -c - if (mod(job,10) .eq. 0) go to 150 - do 100 k = 1, n - a(k,k) = 1.0d0/a(k,k) - t = -a(k,k) - call dscal(k-1,t,a(1,k),1) - kp1 = k + 1 - if (n .lt. kp1) go to 90 - do 80 j = kp1, n - t = a(k,j) - a(k,j) = 0.0d0 - call daxpy(k,t,a(1,k),1,a(1,j),1) - 80 continue - 90 continue - 100 continue -c -c form inverse(u)*inverse(l) -c - nm1 = n - 1 - if (nm1 .lt. 1) go to 140 - do 130 kb = 1, nm1 - k = n - kb - kp1 = k + 1 - do 110 i = kp1, n - work(i) = a(i,k) - a(i,k) = 0.0d0 - 110 continue - do 120 j = kp1, n - t = work(j) - call daxpy(n,t,a(1,j),1,a(1,k),1) - 120 continue - l = ipvt(k) - if (l .ne. k) call dswap(n,a(1,k),1,a(1,l),1) - 130 continue - 140 continue - 150 continue - return - end - - diff --git a/Cantera/ext/math/polfit.f b/Cantera/ext/math/polfit.f deleted file mode 100644 index 08bdd98a2..000000000 --- a/Cantera/ext/math/polfit.f +++ /dev/null @@ -1,289 +0,0 @@ -*DECK POLFIT - SUBROUTINE POLFIT (N, X, Y, W, MAXDEG, NDEG, EPS, R, IERR, A) -C***BEGIN PROLOGUE POLFIT -C***PURPOSE Fit discrete data in a least squares sense by polynomials -C in one variable. -C***LIBRARY SLATEC -C***CATEGORY K1A1A2 -C***TYPE SINGLE PRECISION (POLFIT-S, DPOLFT-D) -C***KEYWORDS CURVE FITTING, DATA FITTING, LEAST SQUARES, POLYNOMIAL FIT -C***AUTHOR Shampine, L. F., (SNLA) -C Davenport, S. M., (SNLA) -C Huddleston, R. E., (SNLL) -C***DESCRIPTION -C -C Abstract -C -C Given a collection of points X(I) and a set of values Y(I) which -C correspond to some function or measurement at each of the X(I), -C subroutine POLFIT computes the weighted least-squares polynomial -C fits of all degrees up to some degree either specified by the user -C or determined by the routine. The fits thus obtained are in -C orthogonal polynomial form. Subroutine PVALUE may then be -C called to evaluate the fitted polynomials and any of their -C derivatives at any point. The subroutine PCOEF may be used to -C express the polynomial fits as powers of (X-C) for any specified -C point C. -C -C The parameters for POLFIT are -C -C Input -- -C N - the number of data points. The arrays X, Y and W -C must be dimensioned at least N (N .GE. 1). -C X - array of values of the independent variable. These -C values may appear in any order and need not all be -C distinct. -C Y - array of corresponding function values. -C W - array of positive values to be used as weights. If -C W(1) is negative, POLFIT will set all the weights -C to 1.0, which means unweighted least squares error -C will be minimized. To minimize relative error, the -C user should set the weights to: W(I) = 1.0/Y(I)**2, -C I = 1,...,N . -C MAXDEG - maximum degree to be allowed for polynomial fit. -C MAXDEG may be any non-negative integer less than N. -C Note -- MAXDEG cannot be equal to N-1 when a -C statistical test is to be used for degree selection, -C i.e., when input value of EPS is negative. -C EPS - specifies the criterion to be used in determining -C the degree of fit to be computed. -C (1) If EPS is input negative, POLFIT chooses the -C degree based on a statistical F test of -C significance. One of three possible -C significance levels will be used: .01, .05 or -C .10. If EPS=-1.0 , the routine will -C automatically select one of these levels based -C on the number of data points and the maximum -C degree to be considered. If EPS is input as -C -.01, -.05, or -.10, a significance level of -C .01, .05, or .10, respectively, will be used. -C (2) If EPS is set to 0., POLFIT computes the -C polynomials of degrees 0 through MAXDEG . -C (3) If EPS is input positive, EPS is the RMS -C error tolerance which must be satisfied by the -C fitted polynomial. POLFIT will increase the -C degree of fit until this criterion is met or -C until the maximum degree is reached. -C -C Output -- -C NDEG - degree of the highest degree fit computed. -C EPS - RMS error of the polynomial of degree NDEG . -C R - vector of dimension at least NDEG containing values -C of the fit of degree NDEG at each of the X(I) . -C Except when the statistical test is used, these -C values are more accurate than results from subroutine -C PVALUE normally are. -C IERR - error flag with the following possible values. -C 1 -- indicates normal execution, i.e., either -C (1) the input value of EPS was negative, and the -C computed polynomial fit of degree NDEG -C satisfies the specified F test, or -C (2) the input value of EPS was 0., and the fits of -C all degrees up to MAXDEG are complete, or -C (3) the input value of EPS was positive, and the -C polynomial of degree NDEG satisfies the RMS -C error requirement. -C 2 -- invalid input parameter. At least one of the input -C parameters has an illegal value and must be corrected -C before POLFIT can proceed. Valid input results -C when the following restrictions are observed -C N .GE. 1 -C 0 .LE. MAXDEG .LE. N-1 for EPS .GE. 0. -C 0 .LE. MAXDEG .LE. N-2 for EPS .LT. 0. -C W(1)=-1.0 or W(I) .GT. 0., I=1,...,N . -C 3 -- cannot satisfy the RMS error requirement with a -C polynomial of degree no greater than MAXDEG . Best -C fit found is of degree MAXDEG . -C 4 -- cannot satisfy the test for significance using -C current value of MAXDEG . Statistically, the -C best fit found is of order NORD . (In this case, -C NDEG will have one of the values: MAXDEG-2, -C MAXDEG-1, or MAXDEG). Using a higher value of -C MAXDEG may result in passing the test. -C A - work and output array having at least 3N+3MAXDEG+3 -C locations -C -C Note - POLFIT calculates all fits of degrees up to and including -C NDEG . Any or all of these fits can be evaluated or -C expressed as powers of (X-C) using PVALUE and PCOEF -C after just one call to POLFIT . -C -C***REFERENCES L. F. Shampine, S. M. Davenport and R. E. Huddleston, -C Curve fitting by polynomials in one variable, Report -C SLA-74-0270, Sandia Laboratories, June 1974. -C***ROUTINES CALLED PVALUE, XERMSG -C***REVISION HISTORY (YYMMDD) -C 740601 DATE WRITTEN -C 890531 Changed all specific intrinsics to generic. (WRB) -C 890531 REVISION DATE from Version 3.2 -C 891214 Prologue converted to Version 4.0 format. (BAB) -C 900315 CALLs to XERROR changed to CALLs to XERMSG. (THJ) -C 920501 Reformatted the REFERENCES section. (WRB) -C 920527 Corrected erroneous statements in DESCRIPTION. (WRB) -C***END PROLOGUE POLFIT - DOUBLE PRECISION TEMD1,TEMD2 - DIMENSION X(*), Y(*), W(*), R(*), A(*) - -c DIMENSION CO(4,3) -c SAVE CO -c DATA CO(1,1), CO(2,1), CO(3,1), CO(4,1), CO(1,2), CO(2,2), -c 1 CO(3,2), CO(4,2), CO(1,3), CO(2,3), CO(3,3), -c 2 CO(4,3)/-13.086850,-2.4648165,-3.3846535,-1.2973162, -c 3 -3.3381146,-1.7812271,-3.2578406,-1.6589279, -c 4 -1.6282703,-1.3152745,-3.2640179,-1.9829776/ - -C***FIRST EXECUTABLE STATEMENT POLFIT - M = ABS(N) - IF (M .EQ. 0) GO TO 30 - IF (MAXDEG .LT. 0) GO TO 30 - A(1) = MAXDEG - MOP1 = MAXDEG + 1 - IF (M .LT. MOP1) GO TO 30 - IF (EPS .LT. 0.0 .AND. M .EQ. MOP1) GO TO 30 - - J = 0 -C -C SEE IF POLYNOMIAL OF DEGREE 0 SATISFIES THE DEGREE SELECTION CRITERION -C - IF (EPS) 24,26,27 -C -C INCREMENT DEGREE -C - 16 J = J + 1 - JP1 = J + 1 - K1PJ = K1 + J - K2PJ = K2 + J - SIGJM1 = SIGJ -C -C COMPUTE NEW B COEFFICIENT EXCEPT WHEN J = 1 -C - IF (J .GT. 1) A(K1PJ) = W11/W1 -C -C COMPUTE NEW A COEFFICIENT -C - TEMD1 = 0.0D0 - DO 18 I = 1,M - K4PI = K4 + I - TEMD2 = A(K4PI) - TEMD1 = TEMD1 + DBLE(X(I))*DBLE(W(I))*TEMD2*TEMD2 - 18 CONTINUE - A(JP1) = TEMD1/DBLE(W11) -C -C EVALUATE ORTHOGONAL POLYNOMIAL AT DATA POINTS -C - W1 = W11 - W11 = 0.0 - DO 19 I = 1,M - K3PI = K3 + I - K4PI = K4 + I - TEMP = A(K3PI) - A(K3PI) = A(K4PI) - A(K4PI) = (X(I)-A(JP1))*A(K3PI) - A(K1PJ)*TEMP - 19 W11 = W11 + W(I)*A(K4PI)**2 -C -C GET NEW ORTHOGONAL POLYNOMIAL COEFFICIENT USING PARTIAL DOUBLE -C PRECISION -C - TEMD1 = 0.0D0 - DO 20 I = 1,M - K4PI = K4 + I - K5PI = K5 + I - TEMD2 = DBLE(W(I))*DBLE((Y(I)-R(I))-A(K5PI))*DBLE(A(K4PI)) - 20 TEMD1 = TEMD1 + TEMD2 - TEMD1 = TEMD1/DBLE(W11) - A(K2PJ+1) = TEMD1 -C -C UPDATE POLYNOMIAL EVALUATIONS AT EACH OF THE DATA POINTS, AND -C ACCUMULATE SUM OF SQUARES OF ERRORS. THE POLYNOMIAL EVALUATIONS ARE -C COMPUTED AND STORED IN EXTENDED PRECISION. FOR THE I-TH DATA POINT, -C THE MOST SIGNIFICANT BITS ARE STORED IN R(I) , AND THE LEAST -C SIGNIFICANT BITS ARE IN A(K5PI) . -C - SIGJ = 0.0 - DO 21 I = 1,M - K4PI = K4 + I - K5PI = K5 + I - TEMD2 = DBLE(R(I)) + DBLE(A(K5PI)) + TEMD1*DBLE(A(K4PI)) - R(I) = TEMD2 - A(K5PI) = TEMD2 - DBLE(R(I)) - 21 SIGJ = SIGJ + W(I)*((Y(I)-R(I)) - A(K5PI))**2 -C -C SEE IF DEGREE SELECTION CRITERION HAS BEEN SATISFIED OR IF DEGREE -C MAXDEG HAS BEEN REACHED -C - IF (EPS) 23,26,27 -C -C COMPUTE F STATISTICS (INPUT EPS .LT. 0.) -C - 23 IF (SIGJ .EQ. 0.0) GO TO 29 -c DEGF = M - J - 1 -c DEN = (CO(4,KSIG)*DEGF + 1.0)*DEGF -c FCRIT = (((CO(3,KSIG)*DEGF) + CO(2,KSIG))*DEGF + CO(1,KSIG))/DEN -c FCRIT = FCRIT*FCRIT -c F = (SIGJM1 - SIGJ)*DEGF/SIGJ -c IF (F .LT. FCRIT) GO TO 25 - -C -C POLYNOMIAL OF DEGREE J SATISFIES F TEST -C - 24 SIGPAS = SIGJ - JPAS = J - NFAIL = 0 - IF (MAXDEG .EQ. J) GO TO 32 - GO TO 16 -C -C POLYNOMIAL OF DEGREE J FAILS F TEST. IF THERE HAVE BEEN THREE -C SUCCESSIVE FAILURES, A STATISTICALLY BEST DEGREE HAS BEEN FOUND. -C - 25 NFAIL = NFAIL + 1 - IF (NFAIL .GE. 3) GO TO 29 - IF (MAXDEG .EQ. J) GO TO 32 - GO TO 16 -C -C RAISE THE DEGREE IF DEGREE MAXDEG HAS NOT YET BEEN REACHED (INPUT -C EPS = 0.) -C - 26 IF (MAXDEG .EQ. J) GO TO 28 - GO TO 16 -C -C SEE IF RMS ERROR CRITERION IS SATISFIED (INPUT EPS .GT. 0.) -C - 27 IF (SIGJ .LE. ETST) GO TO 28 - IF (MAXDEG .EQ. J) GO TO 31 - GO TO 16 -C -C RETURNS -C - 28 IERR = 1 - NDEG = J - SIG = SIGJ - GO TO 33 - 29 IERR = 1 - NDEG = JPAS - SIG = SIGPAS - GO TO 33 - 30 IERR = 2 -c CALL XERMSG ('SLATEC', 'POLFIT', 'INVALID INPUT PARAMETER.', 2, -c + 1) - GO TO 37 - 31 IERR = 3 - NDEG = MAXDEG - SIG = SIGJ - GO TO 33 - 32 IERR = 4 - NDEG = JPAS - SIG = SIGPAS -C - 33 A(K3) = NDEG -C -C WHEN STATISTICAL TEST HAS BEEN USED, EVALUATE THE BEST POLYNOMIAL AT -C ALL THE DATA POINTS IF R DOES NOT ALREADY CONTAIN THESE VALUES -C - IF(EPS .GE. 0.0 .OR. NDEG .EQ. MAXDEG) GO TO 36 - NDER = 0 - DO 35 I = 1,M - CALL PVALUE (NDEG,NDER,X(I),R(I),YP,A) - 35 CONTINUE - 36 EPS = SQRT(SIG/XM) - 37 RETURN - END diff --git a/Cantera/ext/math/printstring.c b/Cantera/ext/math/printstring.c deleted file mode 100644 index f4c8cdde1..000000000 --- a/Cantera/ext/math/printstring.c +++ /dev/null @@ -1,15 +0,0 @@ -#include -#include "config.h" - -typedef int ftnlen; - -#ifdef __cplusplus -extern "C" { -#endif -void printstring_(char* s, ftnlen ls) -{ - printf("%s",s); -} -#ifdef __cplusplus -} -#endif diff --git a/Cantera/ext/math/pvalue.f b/Cantera/ext/math/pvalue.f deleted file mode 100644 index 506a76ba6..000000000 --- a/Cantera/ext/math/pvalue.f +++ /dev/null @@ -1,150 +0,0 @@ -*DECK PVALUE - SUBROUTINE PVALUE (L, NDER, X, YFIT, YP, A) -C***BEGIN PROLOGUE PVALUE -C***PURPOSE Use the coefficients generated by POLFIT to evaluate the -C polynomial fit of degree L, along with the first NDER of -C its derivatives, at a specified point. -C***LIBRARY SLATEC -C***CATEGORY K6 -C***TYPE SINGLE PRECISION (PVALUE-S, DP1VLU-D) -C***KEYWORDS CURVE FITTING, LEAST SQUARES, POLYNOMIAL APPROXIMATION -C***AUTHOR Shampine, L. F., (SNLA) -C Davenport, S. M., (SNLA) -C***DESCRIPTION -C -C Written by L. F. Shampine and S. M. Davenport. -C -C Abstract -C -C The subroutine PVALUE uses the coefficients generated by POLFIT -C to evaluate the polynomial fit of degree L , along with the first -C NDER of its derivatives, at a specified point. Computationally -C stable recurrence relations are used to perform this task. -C -C The parameters for PVALUE are -C -C Input -- -C L - the degree of polynomial to be evaluated. L may be -C any non-negative integer which is less than or equal -C to NDEG , the highest degree polynomial provided -C by POLFIT . -C NDER - the number of derivatives to be evaluated. NDER -C may be 0 or any positive value. If NDER is less -C than 0, it will be treated as 0. -C X - the argument at which the polynomial and its -C derivatives are to be evaluated. -C A - work and output array containing values from last -C call to POLFIT . -C -C Output -- -C YFIT - value of the fitting polynomial of degree L at X -C YP - array containing the first through NDER derivatives -C of the polynomial of degree L . YP must be -C dimensioned at least NDER in the calling program. -C -C***REFERENCES L. F. Shampine, S. M. Davenport and R. E. Huddleston, -C Curve fitting by polynomials in one variable, Report -C SLA-74-0270, Sandia Laboratories, June 1974. -C***ROUTINES CALLED XERMSG -C***REVISION HISTORY (YYMMDD) -C 740601 DATE WRITTEN -C 890531 Changed all specific intrinsics to generic. (WRB) -C 890531 REVISION DATE from Version 3.2 -C 891214 Prologue converted to Version 4.0 format. (BAB) -C 900315 CALLs to XERROR changed to CALLs to XERMSG. (THJ) -C 900510 Convert XERRWV calls to XERMSG calls. (RWC) -C 920501 Reformatted the REFERENCES section. (WRB) -C***END PROLOGUE PVALUE - DIMENSION YP(*),A(*) - CHARACTER*8 XERN1, XERN2 -C***FIRST EXECUTABLE STATEMENT PVALUE - IF (L .LT. 0) GO TO 12 - NDO = MAX(NDER,0) - NDO = MIN(NDO,L) - MAXORD = A(1) + 0.5 - K1 = MAXORD + 1 - K2 = K1 + MAXORD - K3 = K2 + MAXORD + 2 - NORD = A(K3) + 0.5 - IF (L .GT. NORD) GO TO 11 - K4 = K3 + L + 1 - IF (NDER .LT. 1) GO TO 2 - DO 1 I = 1,NDER - 1 YP(I) = 0.0 - 2 IF (L .GE. 2) GO TO 4 - IF (L .EQ. 1) GO TO 3 -C -C L IS 0 -C - VAL = A(K2+1) - GO TO 10 -C -C L IS 1 -C - 3 CC = A(K2+2) - VAL = A(K2+1) + (X-A(2))*CC - IF (NDER .GE. 1) YP(1) = CC - GO TO 10 -C -C L IS GREATER THAN 1 -C - 4 NDP1 = NDO + 1 - K3P1 = K3 + 1 - K4P1 = K4 + 1 - LP1 = L + 1 - LM1 = L - 1 - ILO = K3 + 3 - IUP = K4 + NDP1 - DO 5 I = ILO,IUP - 5 A(I) = 0.0 - DIF = X - A(LP1) - KC = K2 + LP1 - A(K4P1) = A(KC) - A(K3P1) = A(KC-1) + DIF*A(K4P1) - A(K3+2) = A(K4P1) -C -C EVALUATE RECURRENCE RELATIONS FOR FUNCTION VALUE AND DERIVATIVES -C - DO 9 I = 1,LM1 - IN = L - I - INP1 = IN + 1 - K1I = K1 + INP1 - IC = K2 + IN - DIF = X - A(INP1) - VAL = A(IC) + DIF*A(K3P1) - A(K1I)*A(K4P1) - IF (NDO .LE. 0) GO TO 8 - DO 6 N = 1,NDO - K3PN = K3P1 + N - K4PN = K4P1 + N - 6 YP(N) = DIF*A(K3PN) + N*A(K3PN-1) - A(K1I)*A(K4PN) -C -C SAVE VALUES NEEDED FOR NEXT EVALUATION OF RECURRENCE RELATIONS -C - DO 7 N = 1,NDO - K3PN = K3P1 + N - K4PN = K4P1 + N - A(K4PN) = A(K3PN) - 7 A(K3PN) = YP(N) - 8 A(K4P1) = A(K3P1) - 9 A(K3P1) = VAL -C -C NORMAL RETURN OR ABORT DUE TO ERROR -C - 10 YFIT = VAL - RETURN -C - 11 return -cWRITE (XERN1, '(I8)') L -c WRITE (XERN2, '(I8)') NORD -c CALL XERMSG ('SLATEC', 'PVALUE', -c * 'THE ORDER OF POLYNOMIAL EVALUATION, L = ' // XERN1 // -c * ' REQUESTED EXCEEDS THE HIGHEST ORDER FIT, NORD = ' // XERN2 // -c * ', COMPUTED BY POLFIT -- EXECUTION TERMINATED.', 8, 2) -c RETURN -C - 12 return -c CALL XERMSG ('SLATEC', 'PVALUE', -c + 'INVALID INPUT PARAMETER. ORDER OF POLYNOMIAL EVALUATION ' // -c + 'REQUESTED IS NEGATIVE -- EXECUTION TERMINATED.', 2, 2) -c RETURN - END diff --git a/Cantera/ext/math/xercnt.f b/Cantera/ext/math/xercnt.f deleted file mode 100644 index 06c82ab18..000000000 --- a/Cantera/ext/math/xercnt.f +++ /dev/null @@ -1,60 +0,0 @@ -*DECK XERCNT - SUBROUTINE XERCNT (LIBRAR, SUBROU, MESSG, NERR, LEVEL, KONTRL) -C***BEGIN PROLOGUE XERCNT -C***SUBSIDIARY -C***PURPOSE Allow user control over handling of errors. -C***LIBRARY SLATEC (XERROR) -C***CATEGORY R3C -C***TYPE ALL (XERCNT-A) -C***KEYWORDS ERROR, XERROR -C***AUTHOR Jones, R. E., (SNLA) -C***DESCRIPTION -C -C Abstract -C Allows user control over handling of individual errors. -C Just after each message is recorded, but before it is -C processed any further (i.e., before it is printed or -C a decision to abort is made), a call is made to XERCNT. -C If the user has provided his own version of XERCNT, he -C can then override the value of KONTROL used in processing -C this message by redefining its value. -C KONTRL may be set to any value from -2 to 2. -C The meanings for KONTRL are the same as in XSETF, except -C that the value of KONTRL changes only for this message. -C If KONTRL is set to a value outside the range from -2 to 2, -C it will be moved back into that range. -C -C Description of Parameters -C -C --Input-- -C LIBRAR - the library that the routine is in. -C SUBROU - the subroutine that XERMSG is being called from -C MESSG - the first 20 characters of the error message. -C NERR - same as in the call to XERMSG. -C LEVEL - same as in the call to XERMSG. -C KONTRL - the current value of the control flag as set -C by a call to XSETF. -C -C --Output-- -C KONTRL - the new value of KONTRL. If KONTRL is not -C defined, it will remain at its original value. -C This changed value of control affects only -C the current occurrence of the current message. -C -C***REFERENCES R. E. Jones and D. K. Kahaner, XERROR, the SLATEC -C Error-handling Package, SAND82-0800, Sandia -C Laboratories, 1982. -C***ROUTINES CALLED (NONE) -C***REVISION HISTORY (YYMMDD) -C 790801 DATE WRITTEN -C 861211 REVISION DATE from Version 3.2 -C 891214 Prologue converted to Version 4.0 format. (BAB) -C 900206 Routine changed from user-callable to subsidiary. (WRB) -C 900510 Changed calling sequence to include LIBRARY and SUBROUTINE -C names, changed routine name from XERCTL to XERCNT. (RWC) -C 920501 Reformatted the REFERENCES section. (WRB) -C***END PROLOGUE XERCNT - CHARACTER*(*) LIBRAR, SUBROU, MESSG -C***FIRST EXECUTABLE STATEMENT XERCNT - RETURN - END diff --git a/Cantera/ext/math/xerhlt.f b/Cantera/ext/math/xerhlt.f deleted file mode 100644 index 052092940..000000000 --- a/Cantera/ext/math/xerhlt.f +++ /dev/null @@ -1,40 +0,0 @@ -*DECK XERHLT - SUBROUTINE XERHLT (MESSG) -C***BEGIN PROLOGUE XERHLT -C***SUBSIDIARY -C***PURPOSE Abort program execution and print error message. -C***LIBRARY SLATEC (XERROR) -C***CATEGORY R3C -C***TYPE ALL (XERHLT-A) -C***KEYWORDS ABORT PROGRAM EXECUTION, ERROR, XERROR -C***AUTHOR Jones, R. E., (SNLA) -C***DESCRIPTION -C -C Abstract -C ***Note*** machine dependent routine -C XERHLT aborts the execution of the program. -C The error message causing the abort is given in the calling -C sequence, in case one needs it for printing on a dayfile, -C for example. -C -C Description of Parameters -C MESSG is as in XERMSG. -C -C***REFERENCES R. E. Jones and D. K. Kahaner, XERROR, the SLATEC -C Error-handling Package, SAND82-0800, Sandia -C Laboratories, 1982. -C***ROUTINES CALLED (NONE) -C***REVISION HISTORY (YYMMDD) -C 790801 DATE WRITTEN -C 861211 REVISION DATE from Version 3.2 -C 891214 Prologue converted to Version 4.0 format. (BAB) -C 900206 Routine changed from user-callable to subsidiary. (WRB) -C 900510 Changed calling sequence to delete length of character -C and changed routine name from XERABT to XERHLT. (RWC) -C 920501 Reformatted the REFERENCES section. (WRB) -C***END PROLOGUE XERHLT - CHARACTER*(*) MESSG -C***FIRST EXECUTABLE STATEMENT XERHLT - write(*,*) 'stopping...' - STOP - END diff --git a/Cantera/ext/math/xermsg.f b/Cantera/ext/math/xermsg.f deleted file mode 100755 index 46c83ec07..000000000 --- a/Cantera/ext/math/xermsg.f +++ /dev/null @@ -1,364 +0,0 @@ -*DECK XERMSG - SUBROUTINE XERMSG (LIBRAR, SUBROU, MESSG, NERR, LEVEL) -C***BEGIN PROLOGUE XERMSG -C***PURPOSE Process error messages for SLATEC and other libraries. -C***LIBRARY SLATEC (XERROR) -C***CATEGORY R3C -C***TYPE ALL (XERMSG-A) -C***KEYWORDS ERROR MESSAGE, XERROR -C***AUTHOR Fong, Kirby, (NMFECC at LLNL) -C***DESCRIPTION -C -C XERMSG processes a diagnostic message in a manner determined by the -C value of LEVEL and the current value of the library error control -C flag, KONTRL. See subroutine XSETF for details. -C -C LIBRAR A character constant (or character variable) with the name -C of the library. This will be 'SLATEC' for the SLATEC -C Common Math Library. The error handling package is -C general enough to be used by many libraries -C simultaneously, so it is desirable for the routine that -C detects and reports an error to identify the library name -C as well as the routine name. -C -C SUBROU A character constant (or character variable) with the name -C of the routine that detected the error. Usually it is the -C name of the routine that is calling XERMSG. There are -C some instances where a user callable library routine calls -C lower level subsidiary routines where the error is -C detected. In such cases it may be more informative to -C supply the name of the routine the user called rather than -C the name of the subsidiary routine that detected the -C error. -C -C MESSG A character constant (or character variable) with the text -C of the error or warning message. In the example below, -C the message is a character constant that contains a -C generic message. -C -C CALL XERMSG ('SLATEC', 'MMPY', -C *'THE ORDER OF THE MATRIX EXCEEDS THE ROW DIMENSION', -C *3, 1) -C -C It is possible (and is sometimes desirable) to generate a -C specific message--e.g., one that contains actual numeric -C values. Specific numeric values can be converted into -C character strings using formatted WRITE statements into -C character variables. This is called standard Fortran -C internal file I/O and is exemplified in the first three -C lines of the following example. You can also catenate -C substrings of characters to construct the error message. -C Here is an example showing the use of both writing to -C an internal file and catenating character strings. -C -C CHARACTER*5 CHARN, CHARL -C WRITE (CHARN,10) N -C WRITE (CHARL,10) LDA -C 10 FORMAT(I5) -C CALL XERMSG ('SLATEC', 'MMPY', 'THE ORDER'//CHARN// -C * ' OF THE MATRIX EXCEEDS ITS ROW DIMENSION OF'// -C * CHARL, 3, 1) -C -C There are two subtleties worth mentioning. One is that -C the // for character catenation is used to construct the -C error message so that no single character constant is -C continued to the next line. This avoids confusion as to -C whether there are trailing blanks at the end of the line. -C The second is that by catenating the parts of the message -C as an actual argument rather than encoding the entire -C message into one large character variable, we avoid -C having to know how long the message will be in order to -C declare an adequate length for that large character -C variable. XERMSG calls XERPRN to print the message using -C multiple lines if necessary. If the message is very long, -C XERPRN will break it into pieces of 72 characters (as -C requested by XERMSG) for printing on multiple lines. -C Also, XERMSG asks XERPRN to prefix each line with ' * ' -C so that the total line length could be 76 characters. -C Note also that XERPRN scans the error message backwards -C to ignore trailing blanks. Another feature is that -C the substring '$$' is treated as a new line sentinel -C by XERPRN. If you want to construct a multiline -C message without having to count out multiples of 72 -C characters, just use '$$' as a separator. '$$' -C obviously must occur within 72 characters of the -C start of each line to have its intended effect since -C XERPRN is asked to wrap around at 72 characters in -C addition to looking for '$$'. -C -C NERR An integer value that is chosen by the library routine's -C author. It must be in the range -99 to 999 (three -C printable digits). Each distinct error should have its -C own error number. These error numbers should be described -C in the machine readable documentation for the routine. -C The error numbers need be unique only within each routine, -C so it is reasonable for each routine to start enumerating -C errors from 1 and proceeding to the next integer. -C -C LEVEL An integer value in the range 0 to 2 that indicates the -C level (severity) of the error. Their meanings are -C -C -1 A warning message. This is used if it is not clear -C that there really is an error, but the user's attention -C may be needed. An attempt is made to only print this -C message once. -C -C 0 A warning message. This is used if it is not clear -C that there really is an error, but the user's attention -C may be needed. -C -C 1 A recoverable error. This is used even if the error is -C so serious that the routine cannot return any useful -C answer. If the user has told the error package to -C return after recoverable errors, then XERMSG will -C return to the Library routine which can then return to -C the user's routine. The user may also permit the error -C package to terminate the program upon encountering a -C recoverable error. -C -C 2 A fatal error. XERMSG will not return to its caller -C after it receives a fatal error. This level should -C hardly ever be used; it is much better to allow the -C user a chance to recover. An example of one of the few -C cases in which it is permissible to declare a level 2 -C error is a reverse communication Library routine that -C is likely to be called repeatedly until it integrates -C across some interval. If there is a serious error in -C the input such that another step cannot be taken and -C the Library routine is called again without the input -C error having been corrected by the caller, the Library -C routine will probably be called forever with improper -C input. In this case, it is reasonable to declare the -C error to be fatal. -C -C Each of the arguments to XERMSG is input; none will be modified by -C XERMSG. A routine may make multiple calls to XERMSG with warning -C level messages; however, after a call to XERMSG with a recoverable -C error, the routine should return to the user. Do not try to call -C XERMSG with a second recoverable error after the first recoverable -C error because the error package saves the error number. The user -C can retrieve this error number by calling another entry point in -C the error handling package and then clear the error number when -C recovering from the error. Calling XERMSG in succession causes the -C old error number to be overwritten by the latest error number. -C This is considered harmless for error numbers associated with -C warning messages but must not be done for error numbers of serious -C errors. After a call to XERMSG with a recoverable error, the user -C must be given a chance to call NUMXER or XERCLR to retrieve or -C clear the error number. -C***REFERENCES R. E. Jones and D. K. Kahaner, XERROR, the SLATEC -C Error-handling Package, SAND82-0800, Sandia -C Laboratories, 1982. -C***ROUTINES CALLED FDUMP, J4SAVE, XERCNT, XERHLT, XERPRN, XERSVE -C***REVISION HISTORY (YYMMDD) -C 880101 DATE WRITTEN -C 880621 REVISED AS DIRECTED AT SLATEC CML MEETING OF FEBRUARY 1988. -C THERE ARE TWO BASIC CHANGES. -C 1. A NEW ROUTINE, XERPRN, IS USED INSTEAD OF XERPRT TO -C PRINT MESSAGES. THIS ROUTINE WILL BREAK LONG MESSAGES -C INTO PIECES FOR PRINTING ON MULTIPLE LINES. '$$' IS -C ACCEPTED AS A NEW LINE SENTINEL. A PREFIX CAN BE -C ADDED TO EACH LINE TO BE PRINTED. XERMSG USES EITHER -C ' ***' OR ' * ' AND LONG MESSAGES ARE BROKEN EVERY -C 72 CHARACTERS (AT MOST) SO THAT THE MAXIMUM LINE -C LENGTH OUTPUT CAN NOW BE AS GREAT AS 76. -C 2. THE TEXT OF ALL MESSAGES IS NOW IN UPPER CASE SINCE THE -C FORTRAN STANDARD DOCUMENT DOES NOT ADMIT THE EXISTENCE -C OF LOWER CASE. -C 880708 REVISED AFTER THE SLATEC CML MEETING OF JUNE 29 AND 30. -C THE PRINCIPAL CHANGES ARE -C 1. CLARIFY COMMENTS IN THE PROLOGUES -C 2. RENAME XRPRNT TO XERPRN -C 3. REWORK HANDLING OF '$$' IN XERPRN TO HANDLE BLANK LINES -C SIMILAR TO THE WAY FORMAT STATEMENTS HANDLE THE / -C CHARACTER FOR NEW RECORDS. -C 890706 REVISED WITH THE HELP OF FRED FRITSCH AND REG CLEMENS TO -C CLEAN UP THE CODING. -C 890721 REVISED TO USE NEW FEATURE IN XERPRN TO COUNT CHARACTERS IN -C PREFIX. -C 891013 REVISED TO CORRECT COMMENTS. -C 891214 Prologue converted to Version 4.0 format. (WRB) -C 900510 Changed test on NERR to be -9999999 < NERR < 99999999, but -C NERR .ne. 0, and on LEVEL to be -2 < LEVEL < 3. Added -C LEVEL=-1 logic, changed calls to XERSAV to XERSVE, and -C XERCTL to XERCNT. (RWC) -C 920501 Reformatted the REFERENCES section. (WRB) -C***END PROLOGUE XERMSG - CHARACTER*(*) LIBRAR, SUBROU, MESSG - CHARACTER*8 XLIBR, XSUBR - CHARACTER*72 TEMP - CHARACTER*20 LFIRST -C***FIRST EXECUTABLE STATEMENT XERMSG - LKNTRL = J4SAVE (2, 0, .FALSE.) - MAXMES = J4SAVE (4, 0, .FALSE.) -C -C LKNTRL IS A LOCAL COPY OF THE CONTROL FLAG KONTRL. -C MAXMES IS THE MAXIMUM NUMBER OF TIMES ANY PARTICULAR MESSAGE -C SHOULD BE PRINTED. -C -C WE PRINT A FATAL ERROR MESSAGE AND TERMINATE FOR AN ERROR IN -C CALLING XERMSG. THE ERROR NUMBER SHOULD BE POSITIVE, -C AND THE LEVEL SHOULD BE BETWEEN 0 AND 2. -C - IF (NERR.LT.-9999999 .OR. NERR.GT.99999999 .OR. NERR.EQ.0 .OR. - * LEVEL.LT.-1 .OR. LEVEL.GT.2) THEN - CALL XERPRN (' ***', -1, 'FATAL ERROR IN...$$ ' // - * 'XERMSG -- INVALID ERROR NUMBER OR LEVEL$$ '// - * 'JOB ABORT DUE TO FATAL ERROR.', 72) - CALL XERSVE (' ', ' ', ' ', 0, 0, 0, KDUMMY) - CALL XERHLT (' ***XERMSG -- INVALID INPUT') - RETURN - ENDIF -C -C RECORD THE MESSAGE. -C - I = J4SAVE (1, NERR, .TRUE.) - CALL XERSVE (LIBRAR, SUBROU, MESSG, 1, NERR, LEVEL, KOUNT) -C -C HANDLE PRINT-ONCE WARNING MESSAGES. -C - IF (LEVEL.EQ.-1 .AND. KOUNT.GT.1) RETURN -C -C ALLOW TEMPORARY USER OVERRIDE OF THE CONTROL FLAG. -C - XLIBR = LIBRAR - XSUBR = SUBROU - LFIRST = MESSG - LERR = NERR - LLEVEL = LEVEL - CALL XERCNT (XLIBR, XSUBR, LFIRST, LERR, LLEVEL, LKNTRL) -C - LKNTRL = MAX(-2, MIN(2,LKNTRL)) - MKNTRL = ABS(LKNTRL) -C -C SKIP PRINTING IF THE CONTROL FLAG VALUE AS RESET IN XERCNT IS -C ZERO AND THE ERROR IS NOT FATAL. -C - IF (LEVEL.LT.2 .AND. LKNTRL.EQ.0) GO TO 30 - IF (LEVEL.EQ.0 .AND. KOUNT.GT.MAXMES) GO TO 30 - IF (LEVEL.EQ.1 .AND. KOUNT.GT.MAXMES .AND. MKNTRL.EQ.1) GO TO 30 - IF (LEVEL.EQ.2 .AND. KOUNT.GT.MAX(1,MAXMES)) GO TO 30 -C -C ANNOUNCE THE NAMES OF THE LIBRARY AND SUBROUTINE BY BUILDING A -C MESSAGE IN CHARACTER VARIABLE TEMP (NOT EXCEEDING 66 CHARACTERS) -C AND SENDING IT OUT VIA XERPRN. PRINT ONLY IF CONTROL FLAG -C IS NOT ZERO. -C - IF (LKNTRL .NE. 0) THEN - TEMP(1:21) = 'MESSAGE FROM ROUTINE ' - I = MIN(LEN(SUBROU), 16) - TEMP(22:21+I) = SUBROU(1:I) - TEMP(22+I:33+I) = ' IN LIBRARY ' - LTEMP = 33 + I - I = MIN(LEN(LIBRAR), 16) - TEMP(LTEMP+1:LTEMP+I) = LIBRAR (1:I) - TEMP(LTEMP+I+1:LTEMP+I+1) = '.' - LTEMP = LTEMP + I + 1 - CALL XERPRN (' ***', -1, TEMP(1:LTEMP), 72) - ENDIF -C -C IF LKNTRL IS POSITIVE, PRINT AN INTRODUCTORY LINE BEFORE -C PRINTING THE MESSAGE. THE INTRODUCTORY LINE TELLS THE CHOICE -C FROM EACH OF THE FOLLOWING THREE OPTIONS. -C 1. LEVEL OF THE MESSAGE -C 'INFORMATIVE MESSAGE' -C 'POTENTIALLY RECOVERABLE ERROR' -C 'FATAL ERROR' -C 2. WHETHER CONTROL FLAG WILL ALLOW PROGRAM TO CONTINUE -C 'PROG CONTINUES' -C 'PROG ABORTED' -C 3. WHETHER OR NOT A TRACEBACK WAS REQUESTED. (THE TRACEBACK -C MAY NOT BE IMPLEMENTED AT SOME SITES, SO THIS ONLY TELLS -C WHAT WAS REQUESTED, NOT WHAT WAS DELIVERED.) -C 'TRACEBACK REQUESTED' -C 'TRACEBACK NOT REQUESTED' -C NOTICE THAT THE LINE INCLUDING FOUR PREFIX CHARACTERS WILL NOT -C EXCEED 74 CHARACTERS. -C WE SKIP THE NEXT BLOCK IF THE INTRODUCTORY LINE IS NOT NEEDED. -C - IF (LKNTRL .GT. 0) THEN -C -C THE FIRST PART OF THE MESSAGE TELLS ABOUT THE LEVEL. -C - IF (LEVEL .LE. 0) THEN - TEMP(1:20) = 'INFORMATIVE MESSAGE,' - LTEMP = 20 - ELSEIF (LEVEL .EQ. 1) THEN - TEMP(1:30) = 'POTENTIALLY RECOVERABLE ERROR,' - LTEMP = 30 - ELSE - TEMP(1:12) = 'FATAL ERROR,' - LTEMP = 12 - ENDIF -C -C THEN WHETHER THE PROGRAM WILL CONTINUE. -C - IF ((MKNTRL.EQ.2 .AND. LEVEL.GE.1) .OR. - * (MKNTRL.EQ.1 .AND. LEVEL.EQ.2)) THEN - TEMP(LTEMP+1:LTEMP+14) = ' PROG ABORTED,' - LTEMP = LTEMP + 14 - ELSE - TEMP(LTEMP+1:LTEMP+16) = ' PROG CONTINUES,' - LTEMP = LTEMP + 16 - ENDIF -C -C FINALLY TELL WHETHER THERE SHOULD BE A TRACEBACK. -C - IF (LKNTRL .GT. 0) THEN - TEMP(LTEMP+1:LTEMP+20) = ' TRACEBACK REQUESTED' - LTEMP = LTEMP + 20 - ELSE - TEMP(LTEMP+1:LTEMP+24) = ' TRACEBACK NOT REQUESTED' - LTEMP = LTEMP + 24 - ENDIF - CALL XERPRN (' ***', -1, TEMP(1:LTEMP), 72) - ENDIF -C -C NOW SEND OUT THE MESSAGE. -C - CALL XERPRN (' * ', -1, MESSG, 72) -C -C IF LKNTRL IS POSITIVE, WRITE THE ERROR NUMBER AND REQUEST A -C TRACEBACK. -C - IF (LKNTRL .GT. 0) THEN - WRITE (TEMP, '(''ERROR NUMBER = '', I8)') NERR - DO 10 I=16,22 - IF (TEMP(I:I) .NE. ' ') GO TO 20 - 10 CONTINUE -C - 20 CALL XERPRN (' * ', -1, TEMP(1:15) // TEMP(I:23), 72) - CALL FDUMP - ENDIF -C -C IF LKNTRL IS NOT ZERO, PRINT A BLANK LINE AND AN END OF MESSAGE. -C - IF (LKNTRL .NE. 0) THEN - CALL XERPRN (' * ', -1, ' ', 72) - CALL XERPRN (' ***', -1, 'END OF MESSAGE', 72) - CALL XERPRN (' ', 0, ' ', 72) - ENDIF -C -C IF THE ERROR IS NOT FATAL OR THE ERROR IS RECOVERABLE AND THE -C CONTROL FLAG IS SET FOR RECOVERY, THEN RETURN. -C - 30 IF (LEVEL.LE.0 .OR. (LEVEL.EQ.1 .AND. MKNTRL.LE.1)) RETURN -C -C THE PROGRAM WILL BE STOPPED DUE TO AN UNRECOVERED ERROR OR A -C FATAL ERROR. PRINT THE REASON FOR THE ABORT AND THE ERROR -C SUMMARY IF THE CONTROL FLAG AND THE MAXIMUM ERROR COUNT PERMIT. -C - IF (LKNTRL.GT.0 .AND. KOUNT.LT.MAX(1,MAXMES)) THEN - IF (LEVEL .EQ. 1) THEN - CALL XERPRN - * (' ***', -1, 'JOB ABORT DUE TO UNRECOVERED ERROR.', 72) - ELSE - CALL XERPRN(' ***', -1, 'JOB ABORT DUE TO FATAL ERROR.', 72) - ENDIF - CALL XERSVE (' ', ' ', ' ', -1, 0, 0, KDUMMY) - CALL XERHLT (' ') - ELSE - CALL XERHLT (MESSG) - ENDIF - RETURN - END diff --git a/Cantera/ext/math/xerprn.f b/Cantera/ext/math/xerprn.f deleted file mode 100644 index 24099ce47..000000000 --- a/Cantera/ext/math/xerprn.f +++ /dev/null @@ -1,230 +0,0 @@ -*DECK XERPRN - SUBROUTINE XERPRN (PREFIX, NPREF, MESSG, NWRAP) -C***BEGIN PROLOGUE XERPRN -C***SUBSIDIARY -C***PURPOSE Print error messages processed by XERMSG. -C***LIBRARY SLATEC (XERROR) -C***CATEGORY R3C -C***TYPE ALL (XERPRN-A) -C***KEYWORDS ERROR MESSAGES, PRINTING, XERROR -C***AUTHOR Fong, Kirby, (NMFECC at LLNL) -C***DESCRIPTION -C -C This routine sends one or more lines to each of the (up to five) -C logical units to which error messages are to be sent. This routine -C is called several times by XERMSG, sometimes with a single line to -C print and sometimes with a (potentially very long) message that may -C wrap around into multiple lines. -C -C PREFIX Input argument of type CHARACTER. This argument contains -C characters to be put at the beginning of each line before -C the body of the message. No more than 16 characters of -C PREFIX will be used. -C -C NPREF Input argument of type INTEGER. This argument is the number -C of characters to use from PREFIX. If it is negative, the -C intrinsic function LEN is used to determine its length. If -C it is zero, PREFIX is not used. If it exceeds 16 or if -C LEN(PREFIX) exceeds 16, only the first 16 characters will be -C used. If NPREF is positive and the length of PREFIX is less -C than NPREF, a copy of PREFIX extended with blanks to length -C NPREF will be used. -C -C MESSG Input argument of type CHARACTER. This is the text of a -C message to be printed. If it is a long message, it will be -C broken into pieces for printing on multiple lines. Each line -C will start with the appropriate prefix and be followed by a -C piece of the message. NWRAP is the number of characters per -C piece; that is, after each NWRAP characters, we break and -C start a new line. In addition the characters '$$' embedded -C in MESSG are a sentinel for a new line. The counting of -C characters up to NWRAP starts over for each new line. The -C value of NWRAP typically used by XERMSG is 72 since many -C older error messages in the SLATEC Library are laid out to -C rely on wrap-around every 72 characters. -C -C NWRAP Input argument of type INTEGER. This gives the maximum size -C piece into which to break MESSG for printing on multiple -C lines. An embedded '$$' ends a line, and the count restarts -C at the following character. If a line break does not occur -C on a blank (it would split a word) that word is moved to the -C next line. Values of NWRAP less than 16 will be treated as -C 16. Values of NWRAP greater than 132 will be treated as 132. -C The actual line length will be NPREF + NWRAP after NPREF has -C been adjusted to fall between 0 and 16 and NWRAP has been -C adjusted to fall between 16 and 132. -C -C***REFERENCES R. E. Jones and D. K. Kahaner, XERROR, the SLATEC -C Error-handling Package, SAND82-0800, Sandia -C Laboratories, 1982. -C***ROUTINES CALLED I1MACH, XGETUA -C***REVISION HISTORY (YYMMDD) -C 880621 DATE WRITTEN -C 880708 REVISED AFTER THE SLATEC CML SUBCOMMITTEE MEETING OF -C JUNE 29 AND 30 TO CHANGE THE NAME TO XERPRN AND TO REWORK -C THE HANDLING OF THE NEW LINE SENTINEL TO BEHAVE LIKE THE -C SLASH CHARACTER IN FORMAT STATEMENTS. -C 890706 REVISED WITH THE HELP OF FRED FRITSCH AND REG CLEMENS TO -C STREAMLINE THE CODING AND FIX A BUG THAT CAUSED EXTRA BLANK -C LINES TO BE PRINTED. -C 890721 REVISED TO ADD A NEW FEATURE. A NEGATIVE VALUE OF NPREF -C CAUSES LEN(PREFIX) TO BE USED AS THE LENGTH. -C 891013 REVISED TO CORRECT ERROR IN CALCULATING PREFIX LENGTH. -C 891214 Prologue converted to Version 4.0 format. (WRB) -C 900510 Added code to break messages between words. (RWC) -C 920501 Reformatted the REFERENCES section. (WRB) -C***END PROLOGUE XERPRN - CHARACTER*(*) PREFIX, MESSG - INTEGER NPREF, NWRAP - CHARACTER*148 CBUFF - INTEGER IU(5), NUNIT - CHARACTER*2 NEWLIN - PARAMETER (NEWLIN = '$$') -C***FIRST EXECUTABLE STATEMENT XERPRN - CALL XGETUA(IU,NUNIT) -C -C A ZERO VALUE FOR A LOGICAL UNIT NUMBER MEANS TO USE THE STANDARD -C ERROR MESSAGE UNIT INSTEAD. I1MACH(4) RETRIEVES THE STANDARD -C ERROR MESSAGE UNIT. -C - N = I1MACH(4) - DO 10 I=1,NUNIT - IF (IU(I) .EQ. 0) IU(I) = N - 10 CONTINUE -C -C LPREF IS THE LENGTH OF THE PREFIX. THE PREFIX IS PLACED AT THE -C BEGINNING OF CBUFF, THE CHARACTER BUFFER, AND KEPT THERE DURING -C THE REST OF THIS ROUTINE. -C - IF ( NPREF .LT. 0 ) THEN - LPREF = LEN(PREFIX) - ELSE - LPREF = NPREF - ENDIF - LPREF = MIN(16, LPREF) - IF (LPREF .NE. 0) CBUFF(1:LPREF) = PREFIX -C -C LWRAP IS THE MAXIMUM NUMBER OF CHARACTERS WE WANT TO TAKE AT ONE -C TIME FROM MESSG TO PRINT ON ONE LINE. -C - LWRAP = MAX(16, MIN(132, NWRAP)) -C -C SET LENMSG TO THE LENGTH OF MESSG, IGNORE ANY TRAILING BLANKS. -C - LENMSG = LEN(MESSG) - N = LENMSG - DO 20 I=1,N - IF (MESSG(LENMSG:LENMSG) .NE. ' ') GO TO 30 - LENMSG = LENMSG - 1 - 20 CONTINUE - 30 CONTINUE -C -C IF THE MESSAGE IS ALL BLANKS, THEN PRINT ONE BLANK LINE. -C - IF (LENMSG .EQ. 0) THEN - CBUFF(LPREF+1:LPREF+1) = ' ' - call printstring(cbuff) -c DO 40 I=1,NUNIT -c WRITE(IU(I), '(A)') CBUFF(1:LPREF+1) -c 40 CONTINUE - RETURN - ENDIF -C -C SET NEXTC TO THE POSITION IN MESSG WHERE THE NEXT SUBSTRING -C STARTS. FROM THIS POSITION WE SCAN FOR THE NEW LINE SENTINEL. -C WHEN NEXTC EXCEEDS LENMSG, THERE IS NO MORE TO PRINT. -C WE LOOP BACK TO LABEL 50 UNTIL ALL PIECES HAVE BEEN PRINTED. -C -C WE LOOK FOR THE NEXT OCCURRENCE OF THE NEW LINE SENTINEL. THE -C INDEX INTRINSIC FUNCTION RETURNS ZERO IF THERE IS NO OCCURRENCE -C OR IF THE LENGTH OF THE FIRST ARGUMENT IS LESS THAN THE LENGTH -C OF THE SECOND ARGUMENT. -C -C THERE ARE SEVERAL CASES WHICH SHOULD BE CHECKED FOR IN THE -C FOLLOWING ORDER. WE ARE ATTEMPTING TO SET LPIECE TO THE NUMBER -C OF CHARACTERS THAT SHOULD BE TAKEN FROM MESSG STARTING AT -C POSITION NEXTC. -C -C LPIECE .EQ. 0 THE NEW LINE SENTINEL DOES NOT OCCUR IN THE -C REMAINDER OF THE CHARACTER STRING. LPIECE -C SHOULD BE SET TO LWRAP OR LENMSG+1-NEXTC, -C WHICHEVER IS LESS. -C -C LPIECE .EQ. 1 THE NEW LINE SENTINEL STARTS AT MESSG(NEXTC: -C NEXTC). LPIECE IS EFFECTIVELY ZERO, AND WE -C PRINT NOTHING TO AVOID PRODUCING UNNECESSARY -C BLANK LINES. THIS TAKES CARE OF THE SITUATION -C WHERE THE LIBRARY ROUTINE HAS A MESSAGE OF -C EXACTLY 72 CHARACTERS FOLLOWED BY A NEW LINE -C SENTINEL FOLLOWED BY MORE CHARACTERS. NEXTC -C SHOULD BE INCREMENTED BY 2. -C -C LPIECE .GT. LWRAP+1 REDUCE LPIECE TO LWRAP. -C -C ELSE THIS LAST CASE MEANS 2 .LE. LPIECE .LE. LWRAP+1 -C RESET LPIECE = LPIECE-1. NOTE THAT THIS -C PROPERLY HANDLES THE END CASE WHERE LPIECE .EQ. -C LWRAP+1. THAT IS, THE SENTINEL FALLS EXACTLY -C AT THE END OF A LINE. -C - NEXTC = 1 - 50 LPIECE = INDEX(MESSG(NEXTC:LENMSG), NEWLIN) - IF (LPIECE .EQ. 0) THEN -C -C THERE WAS NO NEW LINE SENTINEL FOUND. -C - IDELTA = 0 - LPIECE = MIN(LWRAP, LENMSG+1-NEXTC) - IF (LPIECE .LT. LENMSG+1-NEXTC) THEN - DO 52 I=LPIECE+1,2,-1 - IF (MESSG(NEXTC+I-1:NEXTC+I-1) .EQ. ' ') THEN - LPIECE = I-1 - IDELTA = 1 - GOTO 54 - ENDIF - 52 CONTINUE - ENDIF - 54 CBUFF(LPREF+1:LPREF+LPIECE) = MESSG(NEXTC:NEXTC+LPIECE-1) - NEXTC = NEXTC + LPIECE + IDELTA - ELSEIF (LPIECE .EQ. 1) THEN -C -C WE HAVE A NEW LINE SENTINEL AT MESSG(NEXTC:NEXTC+1). -C DON'T PRINT A BLANK LINE. -C - NEXTC = NEXTC + 2 - GO TO 50 - ELSEIF (LPIECE .GT. LWRAP+1) THEN -C -C LPIECE SHOULD BE SET DOWN TO LWRAP. -C - IDELTA = 0 - LPIECE = LWRAP - DO 56 I=LPIECE+1,2,-1 - IF (MESSG(NEXTC+I-1:NEXTC+I-1) .EQ. ' ') THEN - LPIECE = I-1 - IDELTA = 1 - GOTO 58 - ENDIF - 56 CONTINUE - 58 CBUFF(LPREF+1:LPREF+LPIECE) = MESSG(NEXTC:NEXTC+LPIECE-1) - NEXTC = NEXTC + LPIECE + IDELTA - ELSE -C -C IF WE ARRIVE HERE, IT MEANS 2 .LE. LPIECE .LE. LWRAP+1. -C WE SHOULD DECREMENT LPIECE BY ONE. -C - LPIECE = LPIECE - 1 - CBUFF(LPREF+1:LPREF+LPIECE) = MESSG(NEXTC:NEXTC+LPIECE-1) - NEXTC = NEXTC + LPIECE + 2 - ENDIF -C -C PRINT -C - call printstring(cbuff) -c DO 60 I=1,NUNIT -c WRITE(IU(I), '(A)') CBUFF(1:LPREF+LPIECE) -c 60 CONTINUE -C - IF (NEXTC .LE. LENMSG) GO TO 50 - RETURN - END diff --git a/Cantera/ext/math/xersve.f b/Cantera/ext/math/xersve.f deleted file mode 100644 index 6bd2a4f7a..000000000 --- a/Cantera/ext/math/xersve.f +++ /dev/null @@ -1,155 +0,0 @@ -*DECK XERSVE - SUBROUTINE XERSVE (LIBRAR, SUBROU, MESSG, KFLAG, NERR, LEVEL, - + ICOUNT) -C***BEGIN PROLOGUE XERSVE -C***SUBSIDIARY -C***PURPOSE Record that an error has occurred. -C***LIBRARY SLATEC (XERROR) -C***CATEGORY R3 -C***TYPE ALL (XERSVE-A) -C***KEYWORDS ERROR, XERROR -C***AUTHOR Jones, R. E., (SNLA) -C***DESCRIPTION -C -C *Usage: -C -C INTEGER KFLAG, NERR, LEVEL, ICOUNT -C CHARACTER * (len) LIBRAR, SUBROU, MESSG -C -C CALL XERSVE (LIBRAR, SUBROU, MESSG, KFLAG, NERR, LEVEL, ICOUNT) -C -C *Arguments: -C -C LIBRAR :IN is the library that the message is from. -C SUBROU :IN is the subroutine that the message is from. -C MESSG :IN is the message to be saved. -C KFLAG :IN indicates the action to be performed. -C when KFLAG > 0, the message in MESSG is saved. -C when KFLAG=0 the tables will be dumped and -C cleared. -C when KFLAG < 0, the tables will be dumped and -C not cleared. -C NERR :IN is the error number. -C LEVEL :IN is the error severity. -C ICOUNT :OUT the number of times this message has been seen, -C or zero if the table has overflowed and does not -C contain this message specifically. When KFLAG=0, -C ICOUNT will not be altered. -C -C *Description: -C -C Record that this error occurred and possibly dump and clear the -C tables. -C -C***REFERENCES R. E. Jones and D. K. Kahaner, XERROR, the SLATEC -C Error-handling Package, SAND82-0800, Sandia -C Laboratories, 1982. -C***ROUTINES CALLED I1MACH, XGETUA -C***REVISION HISTORY (YYMMDD) -C 800319 DATE WRITTEN -C 861211 REVISION DATE from Version 3.2 -C 891214 Prologue converted to Version 4.0 format. (BAB) -C 900413 Routine modified to remove reference to KFLAG. (WRB) -C 900510 Changed to add LIBRARY NAME and SUBROUTINE to calling -C sequence, use IF-THEN-ELSE, make number of saved entries -C easily changeable, changed routine name from XERSAV to -C XERSVE. (RWC) -C 910626 Added LIBTAB and SUBTAB to SAVE statement. (BKS) -C 920501 Reformatted the REFERENCES section. (WRB) -C***END PROLOGUE XERSVE - PARAMETER (LENTAB=10) - INTEGER LUN(5) - CHARACTER*(*) LIBRAR, SUBROU, MESSG - CHARACTER*8 LIBTAB(LENTAB), SUBTAB(LENTAB), LIB, SUB - CHARACTER*20 MESTAB(LENTAB), MES - DIMENSION NERTAB(LENTAB), LEVTAB(LENTAB), KOUNT(LENTAB) - SAVE LIBTAB, SUBTAB, MESTAB, NERTAB, LEVTAB, KOUNT, KOUNTX, NMSG - DATA KOUNTX/0/, NMSG/0/ -C***FIRST EXECUTABLE STATEMENT XERSVE -C - IF (KFLAG.LE.0) THEN -C -C Dump the table. -C - IF (NMSG.EQ.0) RETURN -C -C Print to each unit. -C - CALL XGETUA (LUN, NUNIT) - DO 20 KUNIT = 1,NUNIT - IUNIT = LUN(KUNIT) - IF (IUNIT.EQ.0) IUNIT = I1MACH(4) -C -C Print the table header. -C - WRITE (IUNIT,9000) -C -C Print body of table. -C - DO 10 I = 1,NMSG - WRITE (IUNIT,9010) LIBTAB(I), SUBTAB(I), MESTAB(I), - * NERTAB(I),LEVTAB(I),KOUNT(I) - 10 CONTINUE -C -C Print number of other errors. -C - IF (KOUNTX.NE.0) WRITE (IUNIT,9020) KOUNTX - WRITE (IUNIT,9030) - 20 CONTINUE -C -C Clear the error tables. -C - IF (KFLAG.EQ.0) THEN - NMSG = 0 - KOUNTX = 0 - ENDIF - ELSE -C -C PROCESS A MESSAGE... -C SEARCH FOR THIS MESSG, OR ELSE AN EMPTY SLOT FOR THIS MESSG, -C OR ELSE DETERMINE THAT THE ERROR TABLE IS FULL. -C - LIB = LIBRAR - SUB = SUBROU - MES = MESSG - DO 30 I = 1,NMSG - IF (LIB.EQ.LIBTAB(I) .AND. SUB.EQ.SUBTAB(I) .AND. - * MES.EQ.MESTAB(I) .AND. NERR.EQ.NERTAB(I) .AND. - * LEVEL.EQ.LEVTAB(I)) THEN - KOUNT(I) = KOUNT(I) + 1 - ICOUNT = KOUNT(I) - RETURN - ENDIF - 30 CONTINUE -C - IF (NMSG.LT.LENTAB) THEN -C -C Empty slot found for new message. -C - NMSG = NMSG + 1 - LIBTAB(I) = LIB - SUBTAB(I) = SUB - MESTAB(I) = MES - NERTAB(I) = NERR - LEVTAB(I) = LEVEL - KOUNT (I) = 1 - ICOUNT = 1 - ELSE -C -C Table is full. -C - KOUNTX = KOUNTX+1 - ICOUNT = 0 - ENDIF - ENDIF - RETURN -C -C Formats. -C - 9000 FORMAT ('0 ERROR MESSAGE SUMMARY' / - + ' LIBRARY SUBROUTINE MESSAGE START NERR', - + ' LEVEL COUNT') - 9010 FORMAT (1X,A,3X,A,3X,A,3I10) - 9020 FORMAT ('0OTHER ERRORS NOT INDIVIDUALLY TABULATED = ', I10) - 9030 FORMAT (1X) - END diff --git a/Cantera/ext/math/xgetua.f b/Cantera/ext/math/xgetua.f deleted file mode 100644 index 2e7db0212..000000000 --- a/Cantera/ext/math/xgetua.f +++ /dev/null @@ -1,51 +0,0 @@ -*DECK XGETUA - SUBROUTINE XGETUA (IUNITA, N) -C***BEGIN PROLOGUE XGETUA -C***PURPOSE Return unit number(s) to which error messages are being -C sent. -C***LIBRARY SLATEC (XERROR) -C***CATEGORY R3C -C***TYPE ALL (XGETUA-A) -C***KEYWORDS ERROR, XERROR -C***AUTHOR Jones, R. E., (SNLA) -C***DESCRIPTION -C -C Abstract -C XGETUA may be called to determine the unit number or numbers -C to which error messages are being sent. -C These unit numbers may have been set by a call to XSETUN, -C or a call to XSETUA, or may be a default value. -C -C Description of Parameters -C --Output-- -C IUNIT - an array of one to five unit numbers, depending -C on the value of N. A value of zero refers to the -C default unit, as defined by the I1MACH machine -C constant routine. Only IUNIT(1),...,IUNIT(N) are -C defined by XGETUA. The values of IUNIT(N+1),..., -C IUNIT(5) are not defined (for N .LT. 5) or altered -C in any way by XGETUA. -C N - the number of units to which copies of the -C error messages are being sent. N will be in the -C range from 1 to 5. -C -C***REFERENCES R. E. Jones and D. K. Kahaner, XERROR, the SLATEC -C Error-handling Package, SAND82-0800, Sandia -C Laboratories, 1982. -C***ROUTINES CALLED J4SAVE -C***REVISION HISTORY (YYMMDD) -C 790801 DATE WRITTEN -C 861211 REVISION DATE from Version 3.2 -C 891214 Prologue converted to Version 4.0 format. (BAB) -C 920501 Reformatted the REFERENCES section. (WRB) -C***END PROLOGUE XGETUA - DIMENSION IUNITA(5) -C***FIRST EXECUTABLE STATEMENT XGETUA - N = J4SAVE(5,0,.FALSE.) - DO 30 I=1,N - INDEX = I+4 - IF (I.EQ.1) INDEX = 3 - IUNITA(I) = J4SAVE(INDEX,0,.FALSE.) - 30 CONTINUE - RETURN - END From dbf089e1dbef75f70a8382eb6757cc8cb88d47bc Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Sat, 4 Feb 2012 00:44:10 +0000 Subject: [PATCH 077/124] [cantera]: edits to make shared libraries build --- Cantera/ext/f2c_blas/Makefile.am | 5 +++++ Cantera/ext/f2c_lapack/Makefile.am | 5 +++++ Cantera/ext/f2c_math/Makefile.am | 5 +++++ Cantera/ext/tpx/Makefile.am | 5 +++++ test_problems/cathermo/DH_graph_NM/DH_graph_1.cpp | 4 ++-- test_problems/cathermo/DH_graph_Pitzer/DH_graph_1.cpp | 4 ++-- test_problems/cathermo/DH_graph_acommon/DH_graph_1.cpp | 4 ++-- test_problems/cathermo/DH_graph_bdotak/DH_graph_1.cpp | 4 ++-- 8 files changed, 28 insertions(+), 8 deletions(-) diff --git a/Cantera/ext/f2c_blas/Makefile.am b/Cantera/ext/f2c_blas/Makefile.am index 27b3913a1..da9bd2997 100644 --- a/Cantera/ext/f2c_blas/Makefile.am +++ b/Cantera/ext/f2c_blas/Makefile.am @@ -58,3 +58,8 @@ __top_builddir__build_lib_libctblas_la_LDFLAGS = $(all_libraries) -release __top_builddir__build_lib_libctblas_la_SOURCES = $(cc_sources) $(h_sources) CLEANFILES = *.o + +# header file accumulation +all: + @echo copying headers $< + cp *.h $(top_builddir)/build/include/ diff --git a/Cantera/ext/f2c_lapack/Makefile.am b/Cantera/ext/f2c_lapack/Makefile.am index aea174a0f..f16530f90 100644 --- a/Cantera/ext/f2c_lapack/Makefile.am +++ b/Cantera/ext/f2c_lapack/Makefile.am @@ -25,3 +25,8 @@ __top_builddir__build_lib_libctlapack_la_LDFLAGS = $(all_libraries) -releas __top_builddir__build_lib_libctlapack_la_SOURCES = $(cc_sources) $(h_sources) CLEANFILES = *.o + +# header file accumulation +all: + @echo copying headers $< + cp *.h $(top_builddir)/build/include/ diff --git a/Cantera/ext/f2c_math/Makefile.am b/Cantera/ext/f2c_math/Makefile.am index 9cc6cc6b3..b07fca59e 100644 --- a/Cantera/ext/f2c_math/Makefile.am +++ b/Cantera/ext/f2c_math/Makefile.am @@ -39,3 +39,8 @@ __top_builddir__build_lib_libctmath_la_LDFLAGS = $(all_libraries) -release __top_builddir__build_lib_libctmath_la_SOURCES = $(cc_sources) $(h_sources) CLEANFILES = *.o + +# header file accumulation +all: + @echo copying headers $< + cp *.h $(top_builddir)/build/include/ diff --git a/Cantera/ext/tpx/Makefile.am b/Cantera/ext/tpx/Makefile.am index 1988875ab..46e3f0de1 100644 --- a/Cantera/ext/tpx/Makefile.am +++ b/Cantera/ext/tpx/Makefile.am @@ -19,3 +19,8 @@ __top_builddir__build_lib_libtpx_la_LDFLAGS = $(all_libraries) -release $(G __top_builddir__build_lib_libtpx_la_SOURCES = $(cc_sources) $(h_sources) CLEANFILES = *.o + +# header file accumulation +all: + @echo copying headers $< + cp *.h $(top_builddir)/build/include/ diff --git a/test_problems/cathermo/DH_graph_NM/DH_graph_1.cpp b/test_problems/cathermo/DH_graph_NM/DH_graph_1.cpp index 52fe873fb..f18fcf2b1 100644 --- a/test_problems/cathermo/DH_graph_NM/DH_graph_1.cpp +++ b/test_problems/cathermo/DH_graph_NM/DH_graph_1.cpp @@ -15,8 +15,8 @@ #include "DebyeHuckel.h" #else #include "Cantera.h" -#include "kernel/logger.h" -#include "kernel/DebyeHuckel.h" +#include "logger.h" +#include "DebyeHuckel.h" #endif #include diff --git a/test_problems/cathermo/DH_graph_Pitzer/DH_graph_1.cpp b/test_problems/cathermo/DH_graph_Pitzer/DH_graph_1.cpp index 52fe873fb..f18fcf2b1 100644 --- a/test_problems/cathermo/DH_graph_Pitzer/DH_graph_1.cpp +++ b/test_problems/cathermo/DH_graph_Pitzer/DH_graph_1.cpp @@ -15,8 +15,8 @@ #include "DebyeHuckel.h" #else #include "Cantera.h" -#include "kernel/logger.h" -#include "kernel/DebyeHuckel.h" +#include "logger.h" +#include "DebyeHuckel.h" #endif #include diff --git a/test_problems/cathermo/DH_graph_acommon/DH_graph_1.cpp b/test_problems/cathermo/DH_graph_acommon/DH_graph_1.cpp index 52fe873fb..f18fcf2b1 100644 --- a/test_problems/cathermo/DH_graph_acommon/DH_graph_1.cpp +++ b/test_problems/cathermo/DH_graph_acommon/DH_graph_1.cpp @@ -15,8 +15,8 @@ #include "DebyeHuckel.h" #else #include "Cantera.h" -#include "kernel/logger.h" -#include "kernel/DebyeHuckel.h" +#include "logger.h" +#include "DebyeHuckel.h" #endif #include diff --git a/test_problems/cathermo/DH_graph_bdotak/DH_graph_1.cpp b/test_problems/cathermo/DH_graph_bdotak/DH_graph_1.cpp index 52fe873fb..f18fcf2b1 100644 --- a/test_problems/cathermo/DH_graph_bdotak/DH_graph_1.cpp +++ b/test_problems/cathermo/DH_graph_bdotak/DH_graph_1.cpp @@ -15,8 +15,8 @@ #include "DebyeHuckel.h" #else #include "Cantera.h" -#include "kernel/logger.h" -#include "kernel/DebyeHuckel.h" +#include "logger.h" +#include "DebyeHuckel.h" #endif #include From 93b5951a0b3c1a6113ef92c7c387ef5c708aa3ff Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Sat, 4 Feb 2012 01:10:05 +0000 Subject: [PATCH 078/124] [cantera]: adding trailing underscore to fortran functions --- config.h.in | 3 +++ configure.ac | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/config.h.in b/config.h.in index 423fcf8f0..d857d0071 100755 --- a/config.h.in +++ b/config.h.in @@ -30,6 +30,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H +/* Define to add underscore after fortran functions */ +#undef LAPACK_FTN_TRAILING_UNDERSCORE + /* Define to the sub-directory in which libtool stores uninstalled libraries. */ #undef LT_OBJDIR diff --git a/configure.ac b/configure.ac index 33a282ecc..194cea0d6 100644 --- a/configure.ac +++ b/configure.ac @@ -27,6 +27,10 @@ AC_SUBST([PACKAGE_DESCRIPTION]) PACKAGE_URL="http://code.google.com/p/cantera/" AC_SUBST([PACKAGE_URL]) +# add trailing underscore +AC_DEFINE([LAPACK_FTN_TRAILING_UNDERSCORE],1,[Define to add underscore after fortran functions]) +LAPACK_FTN_TRAILING_UNDERSCORE=1 + # ------------------------------ # Checks for required programs # ------------------------------ From 71a144e29c31f87f4e18732c4b7092ceb0d5459d Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Sat, 4 Feb 2012 01:38:21 +0000 Subject: [PATCH 079/124] [cantera]: config.h was incorrectly placed in base --- Cantera/src/base/config.h | 67 -------------------------------- Cantera/src/numerics/Makefile.am | 2 +- Cantera/src/numerics/ctlapack.h | 1 - 3 files changed, 1 insertion(+), 69 deletions(-) delete mode 100644 Cantera/src/base/config.h diff --git a/Cantera/src/base/config.h b/Cantera/src/base/config.h deleted file mode 100644 index db931677a..000000000 --- a/Cantera/src/base/config.h +++ /dev/null @@ -1,67 +0,0 @@ -/* config.h. Generated from config.h.in by configure. */ -/* config.h.in. Generated from configure.ac by autoheader. */ - -/* Define to 1 if you have the header file. */ -#define HAVE_DLFCN_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_INTTYPES_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_MEMORY_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_STDLIB_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_STRING_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define to the sub-directory in which libtool stores uninstalled libraries. - */ -#define LT_OBJDIR ".libs/" - -/* Name of package */ -#define PACKAGE "cantera" - -/* Define to the address where bug reports for this package should be sent. */ -#define PACKAGE_BUGREPORT "nick@ices.utexas.edu" - -/* Define to the full name of this package. */ -#define PACKAGE_NAME "cantera" - -/* Define to the full name and version of this package. */ -#define PACKAGE_STRING "cantera 1.8.0" - -/* Define to the one symbol short name of this package. */ -#define PACKAGE_TARNAME "cantera" - -/* Define to the home page for this package. */ -#define PACKAGE_URL "" - -/* Define to the version of this package. */ -#define PACKAGE_VERSION "1.8.0" - -/* Define to 1 if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Version number of package */ -#define VERSION "1.8.0" - -typedef double doublereal; -typedef int integer; -typedef int ftnlen; diff --git a/Cantera/src/numerics/Makefile.am b/Cantera/src/numerics/Makefile.am index ea88c3e44..40d3de7dc 100644 --- a/Cantera/src/numerics/Makefile.am +++ b/Cantera/src/numerics/Makefile.am @@ -8,7 +8,7 @@ cc_sources = DenseMatrix.cpp funcs.cpp Func1.cpp ODE_integrators.cpp \ SquareMatrix.cpp ResidJacEval.cpp NonlinearSolver.cpp \ CVodeInt.cpp -AM_CPPFLAGS = -I$(top_builddir)/build/include/ -I$(top_builddir)/Cantera/ext/cvode +AM_CPPFLAGS = -I$(top_builddir)/build/include/ -I$(top_builddir)/Cantera/ext/cvode -I$(top_builddir) AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctnumerics.la diff --git a/Cantera/src/numerics/ctlapack.h b/Cantera/src/numerics/ctlapack.h index f18ce9a0a..5d90c13ec 100755 --- a/Cantera/src/numerics/ctlapack.h +++ b/Cantera/src/numerics/ctlapack.h @@ -36,7 +36,6 @@ typedef int ftnlen; #define _DGBSV_ dgbsv #define _DGBTRF_ dgbtrf #define _DGBTRS_ dgbtrs - #define _DSCAL_ dscal #else From 0f00259eccc467cccff27ee624ec395ebd944902 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Sat, 4 Feb 2012 01:47:28 +0000 Subject: [PATCH 080/124] [cantera]: adding typedefs to config.h output --- Cantera/src/base/Makefile.am | 2 +- config.h.in | 24 ++++++++++++++++++++++++ configure.ac | 8 ++++++++ 3 files changed, 33 insertions(+), 1 deletion(-) diff --git a/Cantera/src/base/Makefile.am b/Cantera/src/base/Makefile.am index eac970188..9fdd4fca8 100644 --- a/Cantera/src/base/Makefile.am +++ b/Cantera/src/base/Makefile.am @@ -9,7 +9,7 @@ cc_sources = ct2ctml.cpp ctml.cpp misc.cpp plots.cpp \ PrintCtrl.cpp LogPrintCtrl.cpp mdp_allo.cpp \ checkFinite.cpp -AM_CPPFLAGS = +AM_CPPFLAGS = -I$(top_builddir) AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctbase.la diff --git a/config.h.in b/config.h.in index d857d0071..afc48b2ae 100755 --- a/config.h.in +++ b/config.h.in @@ -3,6 +3,12 @@ /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H +/* Define to 1 if the system has the type `int32_t'. */ +#undef HAVE_INT32_T + +/* Define to 1 if the system has the type `int64_t'. */ +#undef HAVE_INT64_T + /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H @@ -27,6 +33,18 @@ /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H +/* Define to 1 if the system has the type `uint16_t'. */ +#undef HAVE_UINT16_T + +/* Define to 1 if the system has the type `uint32_t'. */ +#undef HAVE_UINT32_T + +/* Define to 1 if the system has the type `uint64_t'. */ +#undef HAVE_UINT64_T + +/* Define to 1 if the system has the type `uint8_t'. */ +#undef HAVE_UINT8_T + /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H @@ -63,3 +81,9 @@ /* Version number of package */ #undef VERSION + + +typedef double doublereal; // Fortran double precision +typedef int integer; // Fortran integer +typedef int ftnlen; // Fortran hidden string length type + diff --git a/configure.ac b/configure.ac index 194cea0d6..699587014 100644 --- a/configure.ac +++ b/configure.ac @@ -31,6 +31,14 @@ AC_SUBST([PACKAGE_URL]) AC_DEFINE([LAPACK_FTN_TRAILING_UNDERSCORE],1,[Define to add underscore after fortran functions]) LAPACK_FTN_TRAILING_UNDERSCORE=1 + +AC_CHECK_TYPES([uint8_t, uint16_t, uint32_t, int32_t, uint64_t, int64_t]) +AH_BOTTOM([ +typedef double doublereal; // Fortran double precision +typedef int integer; // Fortran integer +typedef int ftnlen; // Fortran hidden string length type +]) + # ------------------------------ # Checks for required programs # ------------------------------ From 32265923dd42a2bbad9ed9bd8ad4945996250f13 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Mon, 6 Feb 2012 18:06:25 +0000 Subject: [PATCH 081/124] [cantera]: fixing a small bug with respect to the config.h header --- Cantera/src/base/Makefile.am | 2 +- Cantera/src/numerics/Makefile.am | 11 +++++------ Makefile.am | 3 ++- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cantera/src/base/Makefile.am b/Cantera/src/base/Makefile.am index 9fdd4fca8..086783d52 100644 --- a/Cantera/src/base/Makefile.am +++ b/Cantera/src/base/Makefile.am @@ -2,7 +2,7 @@ h_sources = utilities.h ct_defs.h ctexceptions.h logger.h \ ctml.h plots.h stringUtils.h xml.h \ Array.h vec_functions.h global.h XML_Writer.h \ FactoryBase.h clockWC.h PrintCtrl.h \ - LogPrintCtrl.h mdp_allo.h config.h + LogPrintCtrl.h mdp_allo.h cc_sources = ct2ctml.cpp ctml.cpp misc.cpp plots.cpp \ stringUtils.cpp xml.cpp clockWC.cpp \ diff --git a/Cantera/src/numerics/Makefile.am b/Cantera/src/numerics/Makefile.am index 40d3de7dc..3fcf0ebe9 100644 --- a/Cantera/src/numerics/Makefile.am +++ b/Cantera/src/numerics/Makefile.am @@ -1,12 +1,11 @@ h_sources = ArrayViewer.h DenseMatrix.h funcs.h ctlapack.h Func1.h \ - FuncEval.h polyfit.h \ - BandMatrix.h Integrator.h DAE_Solver.h ResidEval.h sort.h \ - SquareMatrix.h ResidJacEval.h NonlinearSolver.h CVodeInt.h + FuncEval.h polyfit.h BandMatrix.h Integrator.h \ + DAE_Solver.h ResidEval.h sort.h SquareMatrix.h \ + ResidJacEval.h NonlinearSolver.h CVodeInt.h cc_sources = DenseMatrix.cpp funcs.cpp Func1.cpp ODE_integrators.cpp \ - BandMatrix.cpp DAE_solvers.cpp sort.cpp \ - SquareMatrix.cpp ResidJacEval.cpp NonlinearSolver.cpp \ - CVodeInt.cpp + BandMatrix.cpp DAE_solvers.cpp sort.cpp CVodeInt.cpp \ + SquareMatrix.cpp ResidJacEval.cpp NonlinearSolver.cpp AM_CPPFLAGS = -I$(top_builddir)/build/include/ -I$(top_builddir)/Cantera/ext/cvode -I$(top_builddir) AM_CXXFLAGS = $(AM_CPPFLAGS) diff --git a/Makefile.am b/Makefile.am index 532af4e31..be53dcb17 100644 --- a/Makefile.am +++ b/Makefile.am @@ -9,4 +9,5 @@ SUBDIRS += doxygen DIST_SUBDIRS = Cantera examples # generated documentation will be included in distributed archive -EXTRA_DIST= bootstrap $(DX_CONFIG) \ No newline at end of file +EXTRA_DIST= bootstrap $(DX_CONFIG) + From 9736f86bbb51c05993c700c6f90f494e6b9a8181 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Mon, 6 Feb 2012 18:29:00 +0000 Subject: [PATCH 082/124] [cantera]: fixing two undefined functions to error out --- Cantera/src/numerics/Makefile.am | 2 +- Cantera/src/numerics/NonlinearSolver.cpp | 30 ++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/Cantera/src/numerics/Makefile.am b/Cantera/src/numerics/Makefile.am index 3fcf0ebe9..cef6366c2 100644 --- a/Cantera/src/numerics/Makefile.am +++ b/Cantera/src/numerics/Makefile.am @@ -1,7 +1,7 @@ h_sources = ArrayViewer.h DenseMatrix.h funcs.h ctlapack.h Func1.h \ FuncEval.h polyfit.h BandMatrix.h Integrator.h \ DAE_Solver.h ResidEval.h sort.h SquareMatrix.h \ - ResidJacEval.h NonlinearSolver.h CVodeInt.h + ResidJacEval.h NonlinearSolver.h cc_sources = DenseMatrix.cpp funcs.cpp Func1.cpp ODE_integrators.cpp \ BandMatrix.cpp DAE_solvers.cpp sort.cpp CVodeInt.cpp \ diff --git a/Cantera/src/numerics/NonlinearSolver.cpp b/Cantera/src/numerics/NonlinearSolver.cpp index caae05959..d439653aa 100644 --- a/Cantera/src/numerics/NonlinearSolver.cpp +++ b/Cantera/src/numerics/NonlinearSolver.cpp @@ -722,6 +722,36 @@ namespace Cantera { } } + + /** + * + * calc_ydot + * + * unlinked routine + * + */ + + void NonlinearSolver::calc_ydot(int a, double* b, double* c) + { + std::cout<< "Warning:: calling calc_ydot in nonlinear problem!" << std::endl; + exit(1); + } + + /** + * + * beuler_jac + * + * unlinked routine + * + */ + + void NonlinearSolver::beuler_jac(SquareMatrix & a,double * b,double c, double d, + double * e, double *f, int g) + { + std::cout<< "Warning:: calling beuler_jac in nonlinear problem!" << std::endl; + exit(1); + } + /** * * solve_nonlinear_problem(): From 7e6277b313a1346cf2bbdc062e0893c1ec3eace1 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Mon, 6 Feb 2012 18:36:28 +0000 Subject: [PATCH 083/124] [cantera]: fixing missing daux lib --- Cantera/ext/f2c_math/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/Cantera/ext/f2c_math/Makefile.am b/Cantera/ext/f2c_math/Makefile.am index b07fca59e..7e8aabb7b 100644 --- a/Cantera/ext/f2c_math/Makefile.am +++ b/Cantera/ext/f2c_math/Makefile.am @@ -1,4 +1,5 @@ cc_sources = \ +daux.c \ mach.cpp \ ddaspk.c \ dgbefa.c \ From 2746301631ce6b34a545b93ffbb492281fac11a9 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Mon, 6 Feb 2012 19:28:03 +0000 Subject: [PATCH 084/124] [cantera]: fixing a linkage issue --- Cantera/ext/f2c_libs/Makefile.am | 7 ++++--- config.h.in | 3 +++ configure.ac | 5 +++-- test_problems/cathermo/DH_graph_acommon/Makefile.am | 4 ++-- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/Cantera/ext/f2c_libs/Makefile.am b/Cantera/ext/f2c_libs/Makefile.am index 3f3bef961..c1182f413 100644 --- a/Cantera/ext/f2c_libs/Makefile.am +++ b/Cantera/ext/f2c_libs/Makefile.am @@ -27,13 +27,14 @@ cc_sources = abort_.c c_log.c d_atn2.c dfe.c d_prod.c \ system_.c wsle.c z_sin.c c_div.c d_asin.c\ derfc_.c d_nint.c d_tanh.c err.c ftell_.c\ hl_ge.c i_abs.c i_mod.c l_le.c pow_di.c \ - r_cosh.c r_log.c rsne.c \ + r_cosh.c r_log.c rsne.c \ sig_die.c typesize.c wsne.c z_sqrt.c \ c_exp.c d_atan.c d_exp.c dolio.c dtime_.c\ - etime_.c getarg_.c hl_gt.c iargc_.c \ + etime_.c hl_gt.c \ i_nint.c l_lt.c pow_hh.c r_abs.c rdfmt.c \ r_mod.c r_sqrt.c signal_.c uio.c xwsne.c -# arithchk.c + +# arithchk.c getarg_.c iargc_.c h_sources = f2c.h fio.h fmt.h fp.h lio.h rawio.h sysdep1.h diff --git a/config.h.in b/config.h.in index afc48b2ae..304c1711e 100755 --- a/config.h.in +++ b/config.h.in @@ -1,5 +1,8 @@ /* config.h.in. Generated from configure.ac by autoheader. */ +/* Define to add underscore after fortran functions */ +#undef FTN_TRAILING_UNDERSCORE + /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H diff --git a/configure.ac b/configure.ac index 699587014..50d2f49bc 100644 --- a/configure.ac +++ b/configure.ac @@ -27,10 +27,11 @@ AC_SUBST([PACKAGE_DESCRIPTION]) PACKAGE_URL="http://code.google.com/p/cantera/" AC_SUBST([PACKAGE_URL]) -# add trailing underscore +# add trailing underscore(s) AC_DEFINE([LAPACK_FTN_TRAILING_UNDERSCORE],1,[Define to add underscore after fortran functions]) LAPACK_FTN_TRAILING_UNDERSCORE=1 - +AC_DEFINE([FTN_TRAILING_UNDERSCORE],1,[Define to add underscore after fortran functions]) +FTN_TRAILING_UNDERSCORE=1 AC_CHECK_TYPES([uint8_t, uint16_t, uint32_t, int32_t, uint64_t, int64_t]) AH_BOTTOM([ diff --git a/test_problems/cathermo/DH_graph_acommon/Makefile.am b/test_problems/cathermo/DH_graph_acommon/Makefile.am index 162babaad..3b1413de9 100644 --- a/test_problems/cathermo/DH_graph_acommon/Makefile.am +++ b/test_problems/cathermo/DH_graph_acommon/Makefile.am @@ -1,13 +1,13 @@ cc_sources = DH_graph_1.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I. -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = DH_graph_1 From c56b5f7b4d6ec234def6390243837896407dd667 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Mon, 6 Feb 2012 20:16:36 +0000 Subject: [PATCH 085/124] [cantera]: updating test directory paths --- Cantera/cxx/include/thermo.h | 6 +++--- test_problems/cathermo/DH_graph_NM/Makefile.am | 4 ++-- test_problems/cathermo/DH_graph_Pitzer/Makefile.am | 4 ++-- test_problems/cathermo/DH_graph_bdotak/Makefile.am | 4 ++-- test_problems/cathermo/HMW_dupl_test/HMW_dupl_test.cpp | 2 +- test_problems/cathermo/HMW_dupl_test/Makefile.am | 4 ++-- test_problems/cathermo/HMW_graph_CpvT/HMW_graph_CpvT.cpp | 2 +- test_problems/cathermo/HMW_graph_CpvT/Makefile.am | 4 ++-- test_problems/cathermo/HMW_graph_GvI/HMW_graph_GvI.cpp | 4 +--- test_problems/cathermo/HMW_graph_GvI/Makefile.am | 4 ++-- test_problems/cathermo/HMW_graph_GvT/HMW_graph_GvT.cpp | 4 ++-- test_problems/cathermo/HMW_graph_GvT/Makefile.am | 4 ++-- test_problems/cathermo/HMW_graph_HvT/HMW_graph_HvT.cpp | 2 +- test_problems/cathermo/HMW_graph_HvT/Makefile.am | 4 ++-- test_problems/cathermo/HMW_graph_VvT/HMW_graph_VvT.cpp | 2 +- test_problems/cathermo/HMW_graph_VvT/Makefile.am | 4 ++-- test_problems/cathermo/HMW_test_1/HMW_test_1.cpp | 2 +- test_problems/cathermo/HMW_test_1/Makefile.am | 4 ++-- test_problems/cathermo/HMW_test_3/Makefile.am | 4 ++-- test_problems/cathermo/VPissp/Makefile.am | 4 ++-- test_problems/cathermo/issp/ISSPTester.cpp | 2 +- test_problems/cathermo/issp/Makefile.am | 4 ++-- test_problems/cathermo/stoichSubSSTP/Makefile.am | 4 ++-- test_problems/cathermo/stoichSubSSTP/stoichSubSSTP.cpp | 2 +- 24 files changed, 41 insertions(+), 43 deletions(-) diff --git a/Cantera/cxx/include/thermo.h b/Cantera/cxx/include/thermo.h index a27b23336..0f713c4cc 100755 --- a/Cantera/cxx/include/thermo.h +++ b/Cantera/cxx/include/thermo.h @@ -9,9 +9,9 @@ #ifndef CT_THERMO_INCL #define CT_THERMO_INCL -#include "kernel/ThermoFactory.h" +#include "ThermoFactory.h" #include "importPhase.h" -#include "kernel/SurfPhase.h" -#include "kernel/EdgePhase.h" +#include "SurfPhase.h" +#include "EdgePhase.h" #endif diff --git a/test_problems/cathermo/DH_graph_NM/Makefile.am b/test_problems/cathermo/DH_graph_NM/Makefile.am index e0ff0a8ba..1182f8991 100644 --- a/test_problems/cathermo/DH_graph_NM/Makefile.am +++ b/test_problems/cathermo/DH_graph_NM/Makefile.am @@ -1,13 +1,13 @@ cc_sources = DH_graph_1.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I. -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = DH_graph_1 diff --git a/test_problems/cathermo/DH_graph_Pitzer/Makefile.am b/test_problems/cathermo/DH_graph_Pitzer/Makefile.am index e0ff0a8ba..1182f8991 100644 --- a/test_problems/cathermo/DH_graph_Pitzer/Makefile.am +++ b/test_problems/cathermo/DH_graph_Pitzer/Makefile.am @@ -1,13 +1,13 @@ cc_sources = DH_graph_1.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I. -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = DH_graph_1 diff --git a/test_problems/cathermo/DH_graph_bdotak/Makefile.am b/test_problems/cathermo/DH_graph_bdotak/Makefile.am index e0ff0a8ba..1182f8991 100644 --- a/test_problems/cathermo/DH_graph_bdotak/Makefile.am +++ b/test_problems/cathermo/DH_graph_bdotak/Makefile.am @@ -1,13 +1,13 @@ cc_sources = DH_graph_1.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I. -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = DH_graph_1 diff --git a/test_problems/cathermo/HMW_dupl_test/HMW_dupl_test.cpp b/test_problems/cathermo/HMW_dupl_test/HMW_dupl_test.cpp index bd10b9ae1..c51c74caa 100644 --- a/test_problems/cathermo/HMW_dupl_test/HMW_dupl_test.cpp +++ b/test_problems/cathermo/HMW_dupl_test/HMW_dupl_test.cpp @@ -18,7 +18,7 @@ #include "importCTML.h" #else #include "Cantera.h" -#include "kernel/logger.h" +#include "logger.h" #include "thermo.h" #include "TemperatureTable.h" #include "HMWSoln.h" diff --git a/test_problems/cathermo/HMW_dupl_test/Makefile.am b/test_problems/cathermo/HMW_dupl_test/Makefile.am index 4e3343760..eed80551d 100644 --- a/test_problems/cathermo/HMW_dupl_test/Makefile.am +++ b/test_problems/cathermo/HMW_dupl_test/Makefile.am @@ -1,13 +1,13 @@ cc_sources = HMW_dupl_test.cpp sortAlgorithms.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = HMW_dupl_test diff --git a/test_problems/cathermo/HMW_graph_CpvT/HMW_graph_CpvT.cpp b/test_problems/cathermo/HMW_graph_CpvT/HMW_graph_CpvT.cpp index e8ecab23d..5112c3ff2 100755 --- a/test_problems/cathermo/HMW_graph_CpvT/HMW_graph_CpvT.cpp +++ b/test_problems/cathermo/HMW_graph_CpvT/HMW_graph_CpvT.cpp @@ -18,7 +18,7 @@ #include "importCTML.h" #else #include "Cantera.h" -#include "kernel/logger.h" +#include "logger.h" #include "thermo.h" #include "TemperatureTable.h" #include "HMWSoln.h" diff --git a/test_problems/cathermo/HMW_graph_CpvT/Makefile.am b/test_problems/cathermo/HMW_graph_CpvT/Makefile.am index 753aa999b..84f0e807e 100644 --- a/test_problems/cathermo/HMW_graph_CpvT/Makefile.am +++ b/test_problems/cathermo/HMW_graph_CpvT/Makefile.am @@ -1,13 +1,13 @@ cc_sources = HMW_graph_CpvT.cpp sortAlgorithms.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = HMW_graph_CpvT diff --git a/test_problems/cathermo/HMW_graph_GvI/HMW_graph_GvI.cpp b/test_problems/cathermo/HMW_graph_GvI/HMW_graph_GvI.cpp index 772975c77..088674be7 100644 --- a/test_problems/cathermo/HMW_graph_GvI/HMW_graph_GvI.cpp +++ b/test_problems/cathermo/HMW_graph_GvI/HMW_graph_GvI.cpp @@ -11,10 +11,8 @@ #include "Cantera.h" - -#include "kernel/logger.h" +#include "logger.h" #include "HMWSoln.h" - #include using namespace std; diff --git a/test_problems/cathermo/HMW_graph_GvI/Makefile.am b/test_problems/cathermo/HMW_graph_GvI/Makefile.am index c7583d584..7dd653144 100644 --- a/test_problems/cathermo/HMW_graph_GvI/Makefile.am +++ b/test_problems/cathermo/HMW_graph_GvI/Makefile.am @@ -1,13 +1,13 @@ cc_sources = HMW_graph_GvI.cpp sortAlgorithms.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = HMW_graph_GvI diff --git a/test_problems/cathermo/HMW_graph_GvT/HMW_graph_GvT.cpp b/test_problems/cathermo/HMW_graph_GvT/HMW_graph_GvT.cpp index 7e662a540..065330d15 100644 --- a/test_problems/cathermo/HMW_graph_GvT/HMW_graph_GvT.cpp +++ b/test_problems/cathermo/HMW_graph_GvT/HMW_graph_GvT.cpp @@ -19,9 +19,9 @@ #include "ThermoPhase.h" #include "Cantera.h" -#include "kernel/logger.h" +#include "logger.h" #include "thermo.h" -#include "kernel/HMWSoln.h" +#include "HMWSoln.h" #endif #include "TemperatureTable.h" diff --git a/test_problems/cathermo/HMW_graph_GvT/Makefile.am b/test_problems/cathermo/HMW_graph_GvT/Makefile.am index d01b220bd..242b39ef5 100644 --- a/test_problems/cathermo/HMW_graph_GvT/Makefile.am +++ b/test_problems/cathermo/HMW_graph_GvT/Makefile.am @@ -1,13 +1,13 @@ cc_sources = HMW_graph_GvT.cpp sortAlgorithms.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = HMW_graph_GvT diff --git a/test_problems/cathermo/HMW_graph_HvT/HMW_graph_HvT.cpp b/test_problems/cathermo/HMW_graph_HvT/HMW_graph_HvT.cpp index dc017c290..6e64e9c67 100644 --- a/test_problems/cathermo/HMW_graph_HvT/HMW_graph_HvT.cpp +++ b/test_problems/cathermo/HMW_graph_HvT/HMW_graph_HvT.cpp @@ -11,7 +11,7 @@ #include "Cantera.h" #include "thermo.h" -#include "kernel/HMWSoln.h" +#include "HMWSoln.h" #include "TemperatureTable.h" #include diff --git a/test_problems/cathermo/HMW_graph_HvT/Makefile.am b/test_problems/cathermo/HMW_graph_HvT/Makefile.am index 6a933469e..1bae5df66 100644 --- a/test_problems/cathermo/HMW_graph_HvT/Makefile.am +++ b/test_problems/cathermo/HMW_graph_HvT/Makefile.am @@ -1,13 +1,13 @@ cc_sources = HMW_graph_HvT.cpp sortAlgorithms.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = HMW_graph_HvT diff --git a/test_problems/cathermo/HMW_graph_VvT/HMW_graph_VvT.cpp b/test_problems/cathermo/HMW_graph_VvT/HMW_graph_VvT.cpp index 8e0a62845..fddc7b504 100755 --- a/test_problems/cathermo/HMW_graph_VvT/HMW_graph_VvT.cpp +++ b/test_problems/cathermo/HMW_graph_VvT/HMW_graph_VvT.cpp @@ -19,7 +19,7 @@ #include "Cantera.h" //#include "vcs_Cantera_input.h" //#include "vcs_Cantera_convert.h" -#include "kernel/logger.h" +#include "logger.h" #include "thermo.h" #include "TemperatureTable.h" #include "HMWSoln.h" diff --git a/test_problems/cathermo/HMW_graph_VvT/Makefile.am b/test_problems/cathermo/HMW_graph_VvT/Makefile.am index 28cc1b6d1..7cccd4a33 100644 --- a/test_problems/cathermo/HMW_graph_VvT/Makefile.am +++ b/test_problems/cathermo/HMW_graph_VvT/Makefile.am @@ -1,14 +1,14 @@ cc_sources = HMW_graph_VvT.cpp sortAlgorithms.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ LIBS = $(LINK) +AM_LDFLAGS = -L$(top_builddir)/build/lib/ bin_PROGRAMS = HMW_graph_VvT library_includedir = $(INC) diff --git a/test_problems/cathermo/HMW_test_1/HMW_test_1.cpp b/test_problems/cathermo/HMW_test_1/HMW_test_1.cpp index 7f6646d14..32f898213 100644 --- a/test_problems/cathermo/HMW_test_1/HMW_test_1.cpp +++ b/test_problems/cathermo/HMW_test_1/HMW_test_1.cpp @@ -7,7 +7,7 @@ #include "Cantera.h" -#include "kernel/HMWSoln.h" +#include "HMWSoln.h" #include diff --git a/test_problems/cathermo/HMW_test_1/Makefile.am b/test_problems/cathermo/HMW_test_1/Makefile.am index 3a5cc66c4..c02a37977 100644 --- a/test_problems/cathermo/HMW_test_1/Makefile.am +++ b/test_problems/cathermo/HMW_test_1/Makefile.am @@ -1,13 +1,13 @@ cc_sources = HMW_test_1.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = HMW_test_1 diff --git a/test_problems/cathermo/HMW_test_3/Makefile.am b/test_problems/cathermo/HMW_test_3/Makefile.am index 8836282e9..d610dc6b5 100644 --- a/test_problems/cathermo/HMW_test_3/Makefile.am +++ b/test_problems/cathermo/HMW_test_3/Makefile.am @@ -1,13 +1,13 @@ cc_sources = HMW_test_3.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = HMW_test_3 diff --git a/test_problems/cathermo/VPissp/Makefile.am b/test_problems/cathermo/VPissp/Makefile.am index b9418f493..0a5e76384 100644 --- a/test_problems/cathermo/VPissp/Makefile.am +++ b/test_problems/cathermo/VPissp/Makefile.am @@ -1,13 +1,13 @@ cc_sources = ISSPTester.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = ISSPTester diff --git a/test_problems/cathermo/issp/ISSPTester.cpp b/test_problems/cathermo/issp/ISSPTester.cpp index bfa2ecaf6..f45b2d817 100644 --- a/test_problems/cathermo/issp/ISSPTester.cpp +++ b/test_problems/cathermo/issp/ISSPTester.cpp @@ -28,7 +28,7 @@ #include "IdealSolidSolnPhase.h" #else #include "Cantera.h" -#include "kernel/IdealSolidSolnPhase.h" +#include "IdealSolidSolnPhase.h" #endif #include diff --git a/test_problems/cathermo/issp/Makefile.am b/test_problems/cathermo/issp/Makefile.am index b9418f493..0a5e76384 100644 --- a/test_problems/cathermo/issp/Makefile.am +++ b/test_problems/cathermo/issp/Makefile.am @@ -1,13 +1,13 @@ cc_sources = ISSPTester.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = ISSPTester diff --git a/test_problems/cathermo/stoichSubSSTP/Makefile.am b/test_problems/cathermo/stoichSubSSTP/Makefile.am index 72c13e30f..a556f78fd 100644 --- a/test_problems/cathermo/stoichSubSSTP/Makefile.am +++ b/test_problems/cathermo/stoichSubSSTP/Makefile.am @@ -1,13 +1,13 @@ cc_sources = stoichSubSSTP.cpp sortAlgorithms.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = stoichSubSSTP diff --git a/test_problems/cathermo/stoichSubSSTP/stoichSubSSTP.cpp b/test_problems/cathermo/stoichSubSSTP/stoichSubSSTP.cpp index 609f26dd4..bd4bc6103 100644 --- a/test_problems/cathermo/stoichSubSSTP/stoichSubSSTP.cpp +++ b/test_problems/cathermo/stoichSubSSTP/stoichSubSSTP.cpp @@ -18,7 +18,7 @@ #else #include "Cantera.h" #include "thermo.h" -#include "kernel/StoichSubstanceSSTP.h" +#include "StoichSubstanceSSTP.h" #endif #include "TemperatureTable.h" From f516af92cc324f4da39f0647ee5f93fb05aa2e7a Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Mon, 6 Feb 2012 20:41:16 +0000 Subject: [PATCH 086/124] [cantera]: all files are now on the same (correct) linkage page --- Cantera/cxx/include/IdealGasMix.h | 8 ++++---- Cantera/cxx/include/equilibrium.h | 8 ++++---- test_problems/ChemEquil_gri_matrix/Makefile.am | 4 ++-- test_problems/cathermo/VPissp/ISSPTester.cpp | 4 ++-- test_problems/cathermo/ims/IMSTester.cpp | 2 +- test_problems/cathermo/ims/Makefile.am | 4 ++-- test_problems/cathermo/testIAPWS/Makefile.am | 4 ++-- test_problems/cathermo/testIAPWSPres/Makefile.am | 4 ++-- test_problems/cathermo/testIAPWSTripP/Makefile.am | 4 ++-- test_problems/cathermo/testWaterPDSS/Makefile.am | 4 ++-- test_problems/cathermo/testWaterTP/Makefile.am | 4 ++-- test_problems/cathermo/wtWater/Makefile.am | 4 ++-- 12 files changed, 27 insertions(+), 27 deletions(-) diff --git a/Cantera/cxx/include/IdealGasMix.h b/Cantera/cxx/include/IdealGasMix.h index 590c18568..2ca2232d0 100644 --- a/Cantera/cxx/include/IdealGasMix.h +++ b/Cantera/cxx/include/IdealGasMix.h @@ -3,10 +3,10 @@ #include -#include "kernel/IdealGasPhase.h" -#include "kernel/GasKinetics.h" -#include "kernel/importKinetics.h" -#include "kernel/stringUtils.h" +#include "IdealGasPhase.h" +#include "GasKinetics.h" +#include "importKinetics.h" +#include "stringUtils.h" namespace Cantera_CXX { diff --git a/Cantera/cxx/include/equilibrium.h b/Cantera/cxx/include/equilibrium.h index 1de354127..af1d0ddbb 100755 --- a/Cantera/cxx/include/equilibrium.h +++ b/Cantera/cxx/include/equilibrium.h @@ -8,11 +8,11 @@ */ #ifndef CT_EQUIL_INCL #define CT_EQUIL_INCL -#include "kernel/equil.h" -#include "kernel/ChemEquil.h" -#include "kernel/MultiPhaseEquil.h" +#include "equil.h" +#include "ChemEquil.h" +#include "MultiPhaseEquil.h" #ifdef WITH_VCSNONIDEAL -#include "kernel/vcs_MultiPhaseEquil.h" +#include "vcs_MultiPhaseEquil.h" #endif #endif diff --git a/test_problems/ChemEquil_gri_matrix/Makefile.am b/test_problems/ChemEquil_gri_matrix/Makefile.am index b1125ee3b..a721a0195 100644 --- a/test_problems/ChemEquil_gri_matrix/Makefile.am +++ b/test_problems/ChemEquil_gri_matrix/Makefile.am @@ -1,13 +1,13 @@ cc_sources = gri_matrix.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I. -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = gri_matrix diff --git a/test_problems/cathermo/VPissp/ISSPTester.cpp b/test_problems/cathermo/VPissp/ISSPTester.cpp index a6686a90f..da465f1f4 100644 --- a/test_problems/cathermo/VPissp/ISSPTester.cpp +++ b/test_problems/cathermo/VPissp/ISSPTester.cpp @@ -25,8 +25,8 @@ #include "Cantera.h" -#include "kernel/IdealSolidSolnPhase.h" -#include "kernel/IdealSolnGasVPSS.h" +#include "IdealSolidSolnPhase.h" +#include "IdealSolnGasVPSS.h" #include diff --git a/test_problems/cathermo/ims/IMSTester.cpp b/test_problems/cathermo/ims/IMSTester.cpp index 57fb56c11..563808f88 100644 --- a/test_problems/cathermo/ims/IMSTester.cpp +++ b/test_problems/cathermo/ims/IMSTester.cpp @@ -28,7 +28,7 @@ #include "IdealMolalSoln.h" #else #include "Cantera.h" -#include "kernel/IdealMolalSoln.h" +#include "IdealMolalSoln.h" #endif #include diff --git a/test_problems/cathermo/ims/Makefile.am b/test_problems/cathermo/ims/Makefile.am index b50f28b0b..5df20349f 100644 --- a/test_problems/cathermo/ims/Makefile.am +++ b/test_problems/cathermo/ims/Makefile.am @@ -1,13 +1,13 @@ cc_sources = IMSTester.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = IMSTester diff --git a/test_problems/cathermo/testIAPWS/Makefile.am b/test_problems/cathermo/testIAPWS/Makefile.am index f054b2286..7f8c58791 100644 --- a/test_problems/cathermo/testIAPWS/Makefile.am +++ b/test_problems/cathermo/testIAPWS/Makefile.am @@ -1,13 +1,13 @@ cc_sources = testIAPWSphi.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = testIAPWSphi diff --git a/test_problems/cathermo/testIAPWSPres/Makefile.am b/test_problems/cathermo/testIAPWSPres/Makefile.am index d7b1f6e73..cb896d37a 100644 --- a/test_problems/cathermo/testIAPWSPres/Makefile.am +++ b/test_problems/cathermo/testIAPWSPres/Makefile.am @@ -1,13 +1,13 @@ cc_sources = testPress.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = testPress diff --git a/test_problems/cathermo/testIAPWSTripP/Makefile.am b/test_problems/cathermo/testIAPWSTripP/Makefile.am index ffe7f63a4..f99546fc9 100644 --- a/test_problems/cathermo/testIAPWSTripP/Makefile.am +++ b/test_problems/cathermo/testIAPWSTripP/Makefile.am @@ -1,13 +1,13 @@ cc_sources = testTripleP.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = testTripleP diff --git a/test_problems/cathermo/testWaterPDSS/Makefile.am b/test_problems/cathermo/testWaterPDSS/Makefile.am index 9171bbb67..afd2b04a8 100644 --- a/test_problems/cathermo/testWaterPDSS/Makefile.am +++ b/test_problems/cathermo/testWaterPDSS/Makefile.am @@ -1,13 +1,13 @@ cc_sources = testWaterPDSS.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = testWaterPDSS diff --git a/test_problems/cathermo/testWaterTP/Makefile.am b/test_problems/cathermo/testWaterTP/Makefile.am index 660f5fdd5..60f65d466 100644 --- a/test_problems/cathermo/testWaterTP/Makefile.am +++ b/test_problems/cathermo/testWaterTP/Makefile.am @@ -1,13 +1,13 @@ cc_sources = testWaterSSTP.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = testWaterSSTP diff --git a/test_problems/cathermo/wtWater/Makefile.am b/test_problems/cathermo/wtWater/Makefile.am index 2f080ba54..5fc8f2821 100644 --- a/test_problems/cathermo/wtWater/Makefile.am +++ b/test_problems/cathermo/wtWater/Makefile.am @@ -1,13 +1,13 @@ cc_sources = wtWater.cpp -INC = -I. -I$(top_builddir)/build/include/ -I$(top_builddir)/build/include/cantera -I$(top_builddir)/build/include/cantera/kernel +INC = -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L/workspace/src/cantera/pecos_autotools/build/lib/ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) bin_PROGRAMS = wtWater From 5d1111f7c764df754b958d812b6c47c7286acbd6 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Mon, 6 Feb 2012 21:07:43 +0000 Subject: [PATCH 087/124] [cantera]: more hackery to get examples working --- Cantera/cxx/include/GRI30.h | 8 ++++---- Cantera/cxx/include/reactionpaths.h | 2 +- Cantera/cxx/include/transport.h | 8 ++++---- Cantera/cxx/include/zerodim.h | 14 +++++++------- Cantera/src/kinetics/Makefile.am | 2 +- Makefile.am | 3 +-- configure.ac | 9 +++------ examples/cxx/Makefile.am | 14 ++++++-------- examples/cxx/example_utils.h | 4 ++-- examples/cxx/examples.cpp | 2 +- examples/cxx/kinetics_example1.cpp | 6 +++--- examples/cxx/kinetics_example2.cpp | 6 +++--- examples/cxx/kinetics_example3.cpp | 6 +++--- examples/cxx/rxnpath_example1.cpp | 10 +++++----- examples/cxx/transport_example1.cpp | 6 +++--- examples/cxx/transport_example2.cpp | 8 ++++---- 16 files changed, 51 insertions(+), 57 deletions(-) diff --git a/Cantera/cxx/include/GRI30.h b/Cantera/cxx/include/GRI30.h index 6bc28cb26..f48287329 100644 --- a/Cantera/cxx/include/GRI30.h +++ b/Cantera/cxx/include/GRI30.h @@ -6,10 +6,10 @@ #include -#include "kernel/IdealGasPhase.h" -#include "kernel/GRI_30_Kinetics.h" -#include "kernel/importKinetics.h" -#include "kernel/stringUtils.h" +#include "IdealGasPhase.h" +#include "GRI_30_Kinetics.h" +#include "importKinetics.h" +#include "stringUtils.h" namespace Cantera_CXX { diff --git a/Cantera/cxx/include/reactionpaths.h b/Cantera/cxx/include/reactionpaths.h index 3450ae2cf..3d4aaaa8d 100644 --- a/Cantera/cxx/include/reactionpaths.h +++ b/Cantera/cxx/include/reactionpaths.h @@ -1,6 +1,6 @@ #ifndef CT_RXNPATHS_H #define CT_RXNPATHS_H -#include "kernel/ReactionPath.h" +#include "ReactionPath.h" #endif diff --git a/Cantera/cxx/include/transport.h b/Cantera/cxx/include/transport.h index be76ab861..0d14763a3 100755 --- a/Cantera/cxx/include/transport.h +++ b/Cantera/cxx/include/transport.h @@ -9,8 +9,8 @@ #ifndef CT_TRANSPORT_INCL #define CT_TRANSPORT_INCL -#include "kernel/TransportFactory.h" -#include "kernel/DustyGasTransport.h" -#include "kernel/MultiTransport.h" -#include "kernel/MixTransport.h" +#include "TransportFactory.h" +#include "DustyGasTransport.h" +#include "MultiTransport.h" +#include "MixTransport.h" #endif diff --git a/Cantera/cxx/include/zerodim.h b/Cantera/cxx/include/zerodim.h index 168039815..9abe8d17d 100644 --- a/Cantera/cxx/include/zerodim.h +++ b/Cantera/cxx/include/zerodim.h @@ -3,13 +3,13 @@ */ #ifndef CT_INCL_ZERODIM_H #define CT_INCL_ZERODIM_H -#include "kernel/Reactor.h" -#include "kernel/ReactorNet.h" -#include "kernel/Reservoir.h" -#include "kernel/Wall.h" -#include "kernel/flowControllers.h" -#include "kernel/FlowReactor.h" -#include "kernel/ConstPressureReactor.h" +#include "Reactor.h" +#include "ReactorNet.h" +#include "Reservoir.h" +#include "Wall.h" +#include "flowControllers.h" +#include "FlowReactor.h" +#include "ConstPressureReactor.h" using namespace CanteraZeroD; diff --git a/Cantera/src/kinetics/Makefile.am b/Cantera/src/kinetics/Makefile.am index a3ecc389e..19162e95c 100644 --- a/Cantera/src/kinetics/Makefile.am +++ b/Cantera/src/kinetics/Makefile.am @@ -4,7 +4,7 @@ h_sources = importKinetics.h GRI_30_Kinetics.h KineticsFactory.h \ FalloffMgr.h ThirdBodyMgr.h RateCoeffMgr.h ReactionData.h \ RxnRates.h Enhanced3BConc.h StoichManager.h solveSP.h \ AqueousKinetics.h InterfaceKinetics.h ImplicitSurfChem.h \ - Group.h + Group.h ReactionPath.h cc_sources = importKinetics.cpp GRI_30_Kinetics.cpp KineticsFactory.cpp \ GasKinetics.cpp AqueousKinetics.cpp FalloffFactory.cpp \ diff --git a/Makefile.am b/Makefile.am index be53dcb17..52d441ce3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,8 +2,7 @@ include $(top_srcdir)/doxygen/aminclude.am # Build in these directories: SUBDIRS = Cantera test_problems -SUBDIRS += doxygen -#examples +SUBDIRS += doxygen examples # Distribute these directories: DIST_SUBDIRS = Cantera examples diff --git a/configure.ac b/configure.ac index 50d2f49bc..4bd11998e 100644 --- a/configure.ac +++ b/configure.ac @@ -69,8 +69,6 @@ DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) # Generate Output Files -# examples/Makefile \ -# examples/cxx/Makefile \ AC_OUTPUT(Makefile \ test_problems/Makefile \ @@ -119,11 +117,10 @@ AC_OUTPUT(Makefile \ Cantera/src/thermo/Makefile \ Cantera/src/transport/Makefile \ Cantera/src/spectra/Makefile Cantera/src/zeroD/Makefile \ - Cantera/src/equil/Makefile) + Cantera/src/equil/Makefile \ + examples/Makefile \ + examples/cxx/Makefile) # FINAL SUMMARY AX_SUMMARIZE_CONFIG -# ext/lapack/Makefile \ - - diff --git a/examples/cxx/Makefile.am b/examples/cxx/Makefile.am index c48ee7c38..57263ec09 100644 --- a/examples/cxx/Makefile.am +++ b/examples/cxx/Makefile.am @@ -5,18 +5,16 @@ cc_sources = examples.cpp kinetics_example1.cpp kinetics_example2.cpp \ transport_example1.cpp transport_example2.cpp \ rxnpath_example1.cpp -LINK = -lkinetics -ltransport -lthermo -lctnumerics -LINK += -lctbase -ltpx -lctmath -lconverters -LINK += -luser -lcvode -lstdc++ -lctlapack -LINK += -lctblas -lctf2c -lctcxx +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -#LIBS = -L$(top_builddir)/build/lib/ $(LINK) -LIBS = -L/workspace/src/cantera/pecos_autotools/build/lib/ $(LINK) -AM_CPPFLAGS = -I. -I/workspace/src/cantera/pecos_autotools/build/include/ -I/workspace/src/cantera/pecos_autotools/build/include/cantera -I/workspace/src/cantera/pecos_autotools/build/include/cantera/kernel +LIBS = -L$(top_builddir)/build/lib/ $(LINK) +AM_CPPFLAGS = -I. -I$(top_builddir)/build/include/ AM_CXXFLAGS = $(AM_CPPFLAGS) bin_PROGRAMS = cxx_examples -library_includedir = $(includedir) -I/workspace/src/cantera/pecos_autotools/build/include/ +library_includedir = $(includedir) -I$(top_builddir)/build/include/ #----------------------- # Cantera cxx examples diff --git a/examples/cxx/example_utils.h b/examples/cxx/example_utils.h index f0bfc667f..a2dd85772 100755 --- a/examples/cxx/example_utils.h +++ b/examples/cxx/example_utils.h @@ -1,8 +1,8 @@ #ifndef CT_EXAMPLE_UTILS_H #define CT_EXAMPLE_UTILS_H -#include -#include +#include +#include using namespace Cantera; using namespace std; diff --git a/examples/cxx/examples.cpp b/examples/cxx/examples.cpp index 70602a928..6c1caa25d 100755 --- a/examples/cxx/examples.cpp +++ b/examples/cxx/examples.cpp @@ -1,4 +1,4 @@ -#include +#include using namespace Cantera; using namespace std; diff --git a/examples/cxx/kinetics_example1.cpp b/examples/cxx/kinetics_example1.cpp index a56a82754..6a2adcb20 100755 --- a/examples/cxx/kinetics_example1.cpp +++ b/examples/cxx/kinetics_example1.cpp @@ -10,9 +10,9 @@ // ///////////////////////////////////////////////////////////// -#include -#include -#include +#include +#include +#include #include #include "example_utils.h" using namespace Cantera; diff --git a/examples/cxx/kinetics_example2.cpp b/examples/cxx/kinetics_example2.cpp index 391a7b7ea..d6f1f391b 100755 --- a/examples/cxx/kinetics_example2.cpp +++ b/examples/cxx/kinetics_example2.cpp @@ -16,9 +16,9 @@ #pragma warning(disable:4503) #endif -#include -#include -#include +#include +#include +#include #include #include "example_utils.h" diff --git a/examples/cxx/kinetics_example3.cpp b/examples/cxx/kinetics_example3.cpp index e2be7ff7b..834f3b4d3 100644 --- a/examples/cxx/kinetics_example3.cpp +++ b/examples/cxx/kinetics_example3.cpp @@ -16,9 +16,9 @@ #pragma warning(disable:4503) #endif -#include -#include -#include +#include +#include +#include #include #include "example_utils.h" diff --git a/examples/cxx/rxnpath_example1.cpp b/examples/cxx/rxnpath_example1.cpp index 9a7756aad..566705d76 100755 --- a/examples/cxx/rxnpath_example1.cpp +++ b/examples/cxx/rxnpath_example1.cpp @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////// // -// reaction path diagrams +// reactiona diagrams // // $Author: hkmoffa $ // $Revision: 1.9 $ @@ -16,12 +16,12 @@ #pragma warning(disable:4503) #endif -#include -#include +#include +#include #include #include "example_utils.h" -#include -#include +#include +#include // #include // using namespace std; diff --git a/examples/cxx/transport_example1.cpp b/examples/cxx/transport_example1.cpp index 65fd37499..4de4e514e 100755 --- a/examples/cxx/transport_example1.cpp +++ b/examples/cxx/transport_example1.cpp @@ -16,11 +16,11 @@ #pragma warning(disable:4503) #endif -#include -#include +#include +#include #include #include "example_utils.h" -#include +#include using namespace Cantera; using namespace Cantera_CXX; diff --git a/examples/cxx/transport_example2.cpp b/examples/cxx/transport_example2.cpp index 83086651b..d5753bb1b 100755 --- a/examples/cxx/transport_example2.cpp +++ b/examples/cxx/transport_example2.cpp @@ -16,12 +16,12 @@ #pragma warning(disable:4503) #endif -#include -#include +#include +#include #include #include "example_utils.h" -#include -#include +#include +#include using namespace Cantera; using namespace Cantera_CXX; From 917a43ee2166e9cce374ffee28203826cb8cef58 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Mon, 6 Feb 2012 22:06:00 +0000 Subject: [PATCH 088/124] [cantera]: now headers are only copied if they have been edited --- Cantera/src/Makefile.am | 3 +-- Cantera/src/base/Makefile.am | 4 ++-- Cantera/src/numerics/Makefile.am | 2 +- Cantera/src/thermo/Makefile.am | 4 ++-- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Cantera/src/Makefile.am b/Cantera/src/Makefile.am index bac33dc0e..836d04dc6 100644 --- a/Cantera/src/Makefile.am +++ b/Cantera/src/Makefile.am @@ -1,7 +1,6 @@ # $Id: $ -# need to add CXX_INCLUDES # will need to add python and matlab -SUBDIRS = base converters thermo transport oneD zeroD kinetics numerics spectra equil +SUBDIRS = numerics base converters thermo transport oneD zeroD kinetics spectra equil diff --git a/Cantera/src/base/Makefile.am b/Cantera/src/base/Makefile.am index 086783d52..688dc57bd 100644 --- a/Cantera/src/base/Makefile.am +++ b/Cantera/src/base/Makefile.am @@ -27,9 +27,9 @@ __top_builddir__build_lib_libctbase_la_LDFLAGS = $(all_libraries) -release __top_builddir__build_lib_libctbase_la_SOURCES = $(cc_sources) $(h_sources) -# header file accumulation +# header file accumulation -- only copy if file updated! all: @echo copying headers $< - cp *.h $(top_builddir)/build/include/ + cp -u *.h $(top_builddir)/build/include/ CLEANFILES = *.o diff --git a/Cantera/src/numerics/Makefile.am b/Cantera/src/numerics/Makefile.am index cef6366c2..590476bf4 100644 --- a/Cantera/src/numerics/Makefile.am +++ b/Cantera/src/numerics/Makefile.am @@ -7,7 +7,7 @@ cc_sources = DenseMatrix.cpp funcs.cpp Func1.cpp ODE_integrators.cpp \ BandMatrix.cpp DAE_solvers.cpp sort.cpp CVodeInt.cpp \ SquareMatrix.cpp ResidJacEval.cpp NonlinearSolver.cpp -AM_CPPFLAGS = -I$(top_builddir)/build/include/ -I$(top_builddir)/Cantera/ext/cvode -I$(top_builddir) +AM_CPPFLAGS = -I$(top_builddir)/build/include/ -I$(top_builddir) AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctnumerics.la diff --git a/Cantera/src/thermo/Makefile.am b/Cantera/src/thermo/Makefile.am index d8fdb1c63..50dbcc7ad 100644 --- a/Cantera/src/thermo/Makefile.am +++ b/Cantera/src/thermo/Makefile.am @@ -12,7 +12,7 @@ h_sources = State.h Elements.h Constituents.h Phase.h mix_defs.h \ VPSSMgr.h VPSSMgrFactory.h VPSSMgr_General.h \ VPSSMgr_IdealGas.h VPSSMgr_ConstVol.h PDSS_ConstVol.h \ PDSS_IdealGas.h PDSS_SSVol.h DebyeHuckel.h \ - VPStandardStateTP.h PDSS_Water.h PDSS.h WaterProps.h \ + VPStandardStateTP.h PDSS_Water.h WaterProps.h \ WaterPropsIAPWSphi.h VPSSMgr_Water_HKFT.h PDSS_HKFT.h \ PDSS_IonsFromNeutral.h IonsFromNeutralVPSSTP.h \ GibbsExcessVPSSTP.h LatticePhase.h IdealMolalSoln.h \ @@ -59,4 +59,4 @@ __top_builddir__build_lib_libthermo_la_SOURCES = $(cc_sources) $(h_sources) # header file accumulation all: @echo copying headers $< - cp $(h_sources) $(top_builddir)/build/include/ + cp *.h $(top_builddir)/build/include/ From 6b68ff4ecde317213f6e79650304f9e00ea7dace Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Mon, 6 Feb 2012 22:50:45 +0000 Subject: [PATCH 089/124] [cantera]: only update if header has been modified --- Cantera/ext/cvode/Makefile.am | 7 +++---- Cantera/ext/f2c_blas/Makefile.am | 2 +- Cantera/ext/f2c_lapack/Makefile.am | 2 +- Cantera/ext/f2c_libs/Makefile.am | 4 ++-- Cantera/ext/f2c_math/Makefile.am | 2 +- Cantera/ext/tpx/Makefile.am | 2 +- 6 files changed, 9 insertions(+), 10 deletions(-) diff --git a/Cantera/ext/cvode/Makefile.am b/Cantera/ext/cvode/Makefile.am index 713f27835..dfef74fbd 100644 --- a/Cantera/ext/cvode/Makefile.am +++ b/Cantera/ext/cvode/Makefile.am @@ -2,12 +2,11 @@ cc_sources = band.c cvband.c cvbandpre.c cvdense.c cvdiag.c \ cvode.c cvspgmr.c dense.c iterativ.c llnlmath.c \ nvector.c spgmr.c -h_sources = band.h cvband.h cvbandpre.h cvdense.h cvdiag.h \ +h_sources = band.h cvband.h cvbandpre.h cvdense.h cvdiag.h \ cvode.h cvspgmr.h dense.h iterativ.h llnlmath.h \ llnltyps.h nvector.h spgmr.h - -AM_CPPFLAGS = +AM_CPPFLAGS = -I. AM_CXXFLAGS = $(AM_CPPFLAGS) AM_FCFLAGS = $(AM_CPPFLAGS) @@ -27,4 +26,4 @@ CLEANFILES = *.o # header file accumulation all: @echo copying headers $< - cp *.h $(top_builddir)/build/include/ + cp -u *.h $(top_builddir)/build/include/ diff --git a/Cantera/ext/f2c_blas/Makefile.am b/Cantera/ext/f2c_blas/Makefile.am index da9bd2997..108d15c26 100644 --- a/Cantera/ext/f2c_blas/Makefile.am +++ b/Cantera/ext/f2c_blas/Makefile.am @@ -62,4 +62,4 @@ CLEANFILES = *.o # header file accumulation all: @echo copying headers $< - cp *.h $(top_builddir)/build/include/ + cp -u *.h $(top_builddir)/build/include/ diff --git a/Cantera/ext/f2c_lapack/Makefile.am b/Cantera/ext/f2c_lapack/Makefile.am index f16530f90..019a47083 100644 --- a/Cantera/ext/f2c_lapack/Makefile.am +++ b/Cantera/ext/f2c_lapack/Makefile.am @@ -29,4 +29,4 @@ CLEANFILES = *.o # header file accumulation all: @echo copying headers $< - cp *.h $(top_builddir)/build/include/ + cp -u *.h $(top_builddir)/build/include/ diff --git a/Cantera/ext/f2c_libs/Makefile.am b/Cantera/ext/f2c_libs/Makefile.am index c1182f413..ed9f91ba1 100644 --- a/Cantera/ext/f2c_libs/Makefile.am +++ b/Cantera/ext/f2c_libs/Makefile.am @@ -53,8 +53,8 @@ library_include_HEADERS = $(h_sources) # header file accumulation all: @echo copying headers $< - cp sysdep1.h0 sysdep1.h - cp signal1.h0 signal1.h + cp -u sysdep1.h0 sysdep1.h + cp -u signal1.h0 signal1.h cp $(h_sources) $(top_builddir)/build/include/ diff --git a/Cantera/ext/f2c_math/Makefile.am b/Cantera/ext/f2c_math/Makefile.am index 7e8aabb7b..f63e27ecc 100644 --- a/Cantera/ext/f2c_math/Makefile.am +++ b/Cantera/ext/f2c_math/Makefile.am @@ -44,4 +44,4 @@ CLEANFILES = *.o # header file accumulation all: @echo copying headers $< - cp *.h $(top_builddir)/build/include/ + cp -u *.h $(top_builddir)/build/include/ diff --git a/Cantera/ext/tpx/Makefile.am b/Cantera/ext/tpx/Makefile.am index 46e3f0de1..c03d7284a 100644 --- a/Cantera/ext/tpx/Makefile.am +++ b/Cantera/ext/tpx/Makefile.am @@ -23,4 +23,4 @@ CLEANFILES = *.o # header file accumulation all: @echo copying headers $< - cp *.h $(top_builddir)/build/include/ + cp -u *.h $(top_builddir)/build/include/ From c4b79766dd3dee33f8b7802105a40b8599463390 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Mon, 6 Feb 2012 22:52:08 +0000 Subject: [PATCH 090/124] [cantera]: only cp if header has been updated --- Cantera/cxx/src/Makefile.am | 2 +- Cantera/src/converters/Makefile.am | 2 +- Cantera/src/equil/Makefile.am | 2 +- Cantera/src/kinetics/Makefile.am | 2 +- Cantera/src/numerics/Makefile.am | 2 +- Cantera/src/oneD/Makefile.am | 2 +- Cantera/src/spectra/Makefile.am | 2 +- Cantera/src/thermo/Makefile.am | 2 +- Cantera/src/transport/Makefile.am | 2 +- Cantera/src/zeroD/Makefile.am | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cantera/cxx/src/Makefile.am b/Cantera/cxx/src/Makefile.am index 160270155..a01693752 100644 --- a/Cantera/cxx/src/Makefile.am +++ b/Cantera/cxx/src/Makefile.am @@ -17,6 +17,6 @@ __top_builddir__build_lib_libctcxx_la_SOURCES = $(cc_sources) $(h_sources) # header file accumulation all: @echo copying headers $< - cp ../include/*.h $(top_builddir)/build/include/ + cp -u ../include/*.h $(top_builddir)/build/include/ CLEANFILES = *.o diff --git a/Cantera/src/converters/Makefile.am b/Cantera/src/converters/Makefile.am index 20cf4ad2a..61c96b495 100644 --- a/Cantera/src/converters/Makefile.am +++ b/Cantera/src/converters/Makefile.am @@ -22,4 +22,4 @@ __top_builddir__build_lib_libconverters_la_SOURCES = $(cc_sources) $(h_sour # header file accumulation all: @echo copying headers $< - cp $(h_sources) $(top_builddir)/build/include/ + cp -u $(h_sources) $(top_builddir)/build/include/ diff --git a/Cantera/src/equil/Makefile.am b/Cantera/src/equil/Makefile.am index 216349f2e..3ccb35403 100644 --- a/Cantera/src/equil/Makefile.am +++ b/Cantera/src/equil/Makefile.am @@ -21,4 +21,4 @@ __top_builddir__build_lib_libequil_la_SOURCES = $(cc_sources) $(h_sources) # header file accumulation all: @echo copying headers $< - cp $(h_sources) $(top_builddir)/build/include/ + cp -u $(h_sources) $(top_builddir)/build/include/ diff --git a/Cantera/src/kinetics/Makefile.am b/Cantera/src/kinetics/Makefile.am index 19162e95c..584698c66 100644 --- a/Cantera/src/kinetics/Makefile.am +++ b/Cantera/src/kinetics/Makefile.am @@ -28,4 +28,4 @@ __top_builddir__build_lib_libkinetics_la_SOURCES = $(cc_sources) $(h_source # header file accumulation all: @echo copying headers $< - cp $(h_sources) $(top_builddir)/build/include/ + cp -u $(h_sources) $(top_builddir)/build/include/ diff --git a/Cantera/src/numerics/Makefile.am b/Cantera/src/numerics/Makefile.am index 590476bf4..72e695cb6 100644 --- a/Cantera/src/numerics/Makefile.am +++ b/Cantera/src/numerics/Makefile.am @@ -24,4 +24,4 @@ __top_builddir__build_lib_libctnumerics_la_SOURCES = $(cc_sources) $(h_sour # header file accumulation all: @echo copying headers $< - cp *.h $(top_builddir)/build/include/ + cp -u *.h $(top_builddir)/build/include/ diff --git a/Cantera/src/oneD/Makefile.am b/Cantera/src/oneD/Makefile.am index 5605312be..56affcb29 100644 --- a/Cantera/src/oneD/Makefile.am +++ b/Cantera/src/oneD/Makefile.am @@ -22,4 +22,4 @@ __top_builddir__build_lib_liboneD_la_SOURCES = $(cc_sources) $(h_sources) # header file accumulation all: @echo copying headers $< - cp $(h_sources) $(top_builddir)/build/include/ + cp -u $(h_sources) $(top_builddir)/build/include/ diff --git a/Cantera/src/spectra/Makefile.am b/Cantera/src/spectra/Makefile.am index 6e7d137e3..ac44f411c 100644 --- a/Cantera/src/spectra/Makefile.am +++ b/Cantera/src/spectra/Makefile.am @@ -20,4 +20,4 @@ __top_builddir__build_lib_libctspectra_la_SOURCES = $(cc_sources) $(h_sourc # header file accumulation all: @echo copying headers $< - cp $(h_sources) $(top_builddir)/build/include/ + cp -u $(h_sources) $(top_builddir)/build/include/ diff --git a/Cantera/src/thermo/Makefile.am b/Cantera/src/thermo/Makefile.am index 50dbcc7ad..f99a50758 100644 --- a/Cantera/src/thermo/Makefile.am +++ b/Cantera/src/thermo/Makefile.am @@ -59,4 +59,4 @@ __top_builddir__build_lib_libthermo_la_SOURCES = $(cc_sources) $(h_sources) # header file accumulation all: @echo copying headers $< - cp *.h $(top_builddir)/build/include/ + cp -u *.h $(top_builddir)/build/include/ diff --git a/Cantera/src/transport/Makefile.am b/Cantera/src/transport/Makefile.am index 8796fd9cf..1a5210daa 100644 --- a/Cantera/src/transport/Makefile.am +++ b/Cantera/src/transport/Makefile.am @@ -27,4 +27,4 @@ __top_builddir__build_lib_libtransport_la_SOURCES = $(cc_sources) $(h_sourc # header file accumulation all: @echo copying headers $< - cp *.h $(top_builddir)/build/include/ + cp -u *.h $(top_builddir)/build/include/ diff --git a/Cantera/src/zeroD/Makefile.am b/Cantera/src/zeroD/Makefile.am index b7bc6d392..670de7274 100644 --- a/Cantera/src/zeroD/Makefile.am +++ b/Cantera/src/zeroD/Makefile.am @@ -22,4 +22,4 @@ __top_builddir__build_lib_libzeroD_la_SOURCES = $(cc_sources) $(h_sources) # header file accumulation all: @echo copying headers $< - cp $(h_sources) $(top_builddir)/build/include/ + cp -u $(h_sources) $(top_builddir)/build/include/ From 69630da997407cbdca3b33dd21323810f8bb12ba Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Mon, 6 Feb 2012 23:04:02 +0000 Subject: [PATCH 091/124] [cantera]: trying to fix mixgas transport class --- test_problems/mixGasTransport/Makefile.am | 24 + test_problems/mixGasTransport/Makefile.in | 730 +++++++++++++++--- .../mixGasTransport/mixGasTransport.cpp | 2 +- test_problems/mixGasTransport/runtest | 4 +- 4 files changed, 663 insertions(+), 97 deletions(-) create mode 100644 test_problems/mixGasTransport/Makefile.am diff --git a/test_problems/mixGasTransport/Makefile.am b/test_problems/mixGasTransport/Makefile.am new file mode 100644 index 000000000..6dffa7547 --- /dev/null +++ b/test_problems/mixGasTransport/Makefile.am @@ -0,0 +1,24 @@ +cc_sources = mixGasTransport.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = mixGasTransport +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +mixGasTransport_SOURCES = $(cc_sources) + + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/mixGasTransport/Makefile.in b/test_problems/mixGasTransport/Makefile.in index 44634008b..8c01007a3 100644 --- a/test_problems/mixGasTransport/Makefile.in +++ b/test_problems/mixGasTransport/Makefile.in @@ -1,116 +1,656 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = mixGasTransport +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = mixGasTransport.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = mixGasTransport$(EXEEXT) +subdir = test_problems/mixGasTransport +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = mixGasTransport.$(OBJEXT) +am_mixGasTransport_OBJECTS = $(am__objects_1) +mixGasTransport_OBJECTS = $(am_mixGasTransport_OBJECTS) +mixGasTransport_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(mixGasTransport_SOURCES) +DIST_SOURCES = $(mixGasTransport_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = mixGasTransport.cpp +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ + -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ + -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ +#----------------------- +# Cantera DH graph test +#----------------------- +mixGasTransport_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/mixGasTransport/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/mixGasTransport/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +mixGasTransport$(EXEEXT): $(mixGasTransport_OBJECTS) $(mixGasTransport_DEPENDENCIES) + @rm -f mixGasTransport$(EXEEXT) + $(CXXLINK) $(mixGasTransport_OBJECTS) $(mixGasTransport_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mixGasTransport.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -# all rule makes a single program -all: $(PROGRAM) +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/mixGasTransport/mixGasTransport.cpp b/test_problems/mixGasTransport/mixGasTransport.cpp index f742a0f17..baf7909e1 100644 --- a/test_problems/mixGasTransport/mixGasTransport.cpp +++ b/test_problems/mixGasTransport/mixGasTransport.cpp @@ -36,7 +36,7 @@ using namespace std; #include "transport.h" #include "IdealGasMix.h" -#include "kernel/TransportFactory.h" +#include "TransportFactory.h" using namespace Cantera; using namespace Cantera_CXX; diff --git a/test_problems/mixGasTransport/runtest b/test_problems/mixGasTransport/runtest index f914fa775..422ba6580 100755 --- a/test_problems/mixGasTransport/runtest +++ b/test_problems/mixGasTransport/runtest @@ -5,7 +5,6 @@ temp_success="1" /bin/rm -f output.txt outputa.txt tname="mixGasTransport" - ################################################################# # ################################################################# @@ -18,6 +17,7 @@ if [ $retnStat != "0" ] then temp_success="0" echo "$tname ($tname test) returned with bad status, $retnStat, check output" + return 1 fi ../../bin/exp3to2.sh output.txt > outputa.txt @@ -26,9 +26,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on $tname test" + return 0 else echo "unsuccessful diff comparison on $tname test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi From ff3d6f786b08b0cdacc857ae0eb93f2c4b147e54 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Mon, 6 Feb 2012 23:31:04 +0000 Subject: [PATCH 092/124] [cantera]: adding pure fluid phase to cantera --- Cantera/src/thermo/Makefile.am | 5 +++-- Cantera/src/thermo/PureFluidPhase.cpp | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cantera/src/thermo/Makefile.am b/Cantera/src/thermo/Makefile.am index f99a50758..8d5de3928 100644 --- a/Cantera/src/thermo/Makefile.am +++ b/Cantera/src/thermo/Makefile.am @@ -19,7 +19,8 @@ h_sources = State.h Elements.h Constituents.h Phase.h mix_defs.h \ PDSS.h HMWSoln.h WaterSSTP.h MetalSHEelectrons.h \ IdealSolidSolnPhase.h StoichSubstanceSSTP.h \ SingleSpeciesTP.h MineralEQ3.h PseudoBinaryVPSSTP.h \ - MargulesVPSSTP.h StoichSubstance.h electrolytes.h + MargulesVPSSTP.h StoichSubstance.h electrolytes.h \ + PureFluidPhase.h cc_sources = State.cpp Elements.cpp Constituents.cpp Phase.cpp \ ThermoPhase.cpp IdealGasPhase.cpp ConstDensityThermo.cpp \ @@ -40,7 +41,7 @@ cc_sources = State.cpp Elements.cpp Constituents.cpp Phase.cpp \ IdealSolidSolnPhase.cpp \ SingleSpeciesTP.cpp MineralEQ3.cpp \ PseudoBinaryVPSSTP.cpp MargulesVPSSTP.cpp \ - StoichSubstanceSSTP.cpp + StoichSubstanceSSTP.cpp PureFluidPhase.cpp AM_CPPFLAGS = -I../base AM_CXXFLAGS = $(AM_CPPFLAGS) diff --git a/Cantera/src/thermo/PureFluidPhase.cpp b/Cantera/src/thermo/PureFluidPhase.cpp index b5e8b96ff..3b4046b1a 100644 --- a/Cantera/src/thermo/PureFluidPhase.cpp +++ b/Cantera/src/thermo/PureFluidPhase.cpp @@ -13,8 +13,8 @@ #ifdef WITH_PURE_FLUIDS -#include "../../../ext/tpx/Sub.h" -#include "../../../ext/tpx/utils.h" +#include "../../ext/tpx/Sub.h" +#include "../../ext/tpx/utils.h" #include #include From bc0cd996020021bd49bf7b5c3e9edf71aef44e3e Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Mon, 6 Feb 2012 23:38:42 +0000 Subject: [PATCH 093/124] [cantera]: setting some options at configure time --- Cantera/src/thermo/Makefile.am | 6 ++--- config.h.in | 28 ++++++++++++++++++++--- configure.ac | 27 +++++++++++++++++++--- test_problems/Makefile.am | 2 +- test_problems/mixGasTransport/Makefile.am | 2 +- test_problems/mixGasTransport/Makefile.in | 2 +- 6 files changed, 55 insertions(+), 12 deletions(-) diff --git a/Cantera/src/thermo/Makefile.am b/Cantera/src/thermo/Makefile.am index 8d5de3928..217268a09 100644 --- a/Cantera/src/thermo/Makefile.am +++ b/Cantera/src/thermo/Makefile.am @@ -20,7 +20,7 @@ h_sources = State.h Elements.h Constituents.h Phase.h mix_defs.h \ IdealSolidSolnPhase.h StoichSubstanceSSTP.h \ SingleSpeciesTP.h MineralEQ3.h PseudoBinaryVPSSTP.h \ MargulesVPSSTP.h StoichSubstance.h electrolytes.h \ - PureFluidPhase.h + PureFluidPhase.h LatticeSolidPhase.h cc_sources = State.cpp Elements.cpp Constituents.cpp Phase.cpp \ ThermoPhase.cpp IdealGasPhase.cpp ConstDensityThermo.cpp \ @@ -38,10 +38,10 @@ cc_sources = State.cpp Elements.cpp Constituents.cpp Phase.cpp \ GibbsExcessVPSSTP.cpp LatticePhase.cpp IdealMolalSoln.cpp \ HMWSoln.cpp HMWSoln_input.cpp WaterSSTP.cpp \ MetalSHEelectrons.cpp \ - IdealSolidSolnPhase.cpp \ + IdealSolidSolnPhase.cpp LatticeSolidPhase.cpp \ SingleSpeciesTP.cpp MineralEQ3.cpp \ PseudoBinaryVPSSTP.cpp MargulesVPSSTP.cpp \ - StoichSubstanceSSTP.cpp PureFluidPhase.cpp + StoichSubstanceSSTP.cpp PureFluidPhase.cpp StoichSubstance.cpp AM_CPPFLAGS = -I../base AM_CXXFLAGS = $(AM_CPPFLAGS) diff --git a/config.h.in b/config.h.in index 304c1711e..c0218cee4 100755 --- a/config.h.in +++ b/config.h.in @@ -51,9 +51,15 @@ /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H +/* Define to add string to end of lapack functions */ +#undef LAPACK_FTN_STRING_LEN_AT_END + /* Define to add underscore after fortran functions */ #undef LAPACK_FTN_TRAILING_UNDERSCORE +/* Define to lapack functions lowercase */ +#undef LAPACK_NAMES_LOWERCASE + /* Define to the sub-directory in which libtool stores uninstalled libraries. */ #undef LT_OBJDIR @@ -86,7 +92,23 @@ #undef VERSION -typedef double doublereal; // Fortran double precision -typedef int integer; // Fortran integer -typedef int ftnlen; // Fortran hidden string length type +typedef double doublereal; // Fortran double precision +typedef int integer; // Fortran integer +typedef int ftnlen; // Fortran hidden string length type + +#define STRING_LEN_AT_END +#define STORE_MOLE_FRACTIONS + +#define INCL_PURE_FLUIDS 1 +#define WITH_PURE_FLUIDS 1 + +#define WITH_LATTICE_SOLID 1 +#define WITH_METAL 1 +#define WITH_STOICH_SUBSTANCE 1 +#define WITH_IDEAL_SOLUTIONS 1 +#define WITH_ELECTROLYTES 1 +#define HAS_SSTREAM 1 + +#define CANTERA_DATA "/usr/local/cantera/data" + diff --git a/configure.ac b/configure.ac index 4bd11998e..024bdaeca 100644 --- a/configure.ac +++ b/configure.ac @@ -32,12 +32,32 @@ AC_DEFINE([LAPACK_FTN_TRAILING_UNDERSCORE],1,[Define to add underscore after for LAPACK_FTN_TRAILING_UNDERSCORE=1 AC_DEFINE([FTN_TRAILING_UNDERSCORE],1,[Define to add underscore after fortran functions]) FTN_TRAILING_UNDERSCORE=1 +AC_DEFINE([LAPACK_NAMES_LOWERCASE],1,[Define to lapack functions lowercase]) +LAPACK_NAMES_LOWERCASE 1 +AC_DEFINE([LAPACK_FTN_STRING_LEN_AT_END],1,[Define to add string to end of lapack functions]) +LAPACK_FTN_STRING_LEN_AT_END=1 AC_CHECK_TYPES([uint8_t, uint16_t, uint32_t, int32_t, uint64_t, int64_t]) AH_BOTTOM([ -typedef double doublereal; // Fortran double precision -typedef int integer; // Fortran integer -typedef int ftnlen; // Fortran hidden string length type +typedef double doublereal; // Fortran double precision +typedef int integer; // Fortran integer +typedef int ftnlen; // Fortran hidden string length type + +#define STRING_LEN_AT_END +#define STORE_MOLE_FRACTIONS + +#define INCL_PURE_FLUIDS 1 +#define WITH_PURE_FLUIDS 1 + +#define WITH_LATTICE_SOLID 1 +#define WITH_METAL 1 +#define WITH_STOICH_SUBSTANCE 1 +#define WITH_IDEAL_SOLUTIONS 1 +#define WITH_ELECTROLYTES 1 +#define HAS_SSTREAM 1 + +#define CANTERA_DATA "/usr/local/cantera/data" + ]) # ------------------------------ @@ -72,6 +92,7 @@ DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) AC_OUTPUT(Makefile \ test_problems/Makefile \ + test_problems/mixGasTransport/Makefile \ test_problems/ChemEquil_gri_matrix/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 02df28646..a35597aae 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -5,7 +5,7 @@ ChemEquil_ionizedGas ChemEquil_red1 CpJump \ mixGasTransport multiGasTransport printUtilUnitTest -SUBDIRS = cathermo ChemEquil_gri_matrix +SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix # # would be good to add: # diff --git a/test_problems/mixGasTransport/Makefile.am b/test_problems/mixGasTransport/Makefile.am index 6dffa7547..1d99d54bd 100644 --- a/test_problems/mixGasTransport/Makefile.am +++ b/test_problems/mixGasTransport/Makefile.am @@ -1,6 +1,6 @@ cc_sources = mixGasTransport.cpp -INC = -I. -I$(top_builddir)/build/include/ +INC = -I. -I$(top_builddir)/build/include/ -g AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) diff --git a/test_problems/mixGasTransport/Makefile.in b/test_problems/mixGasTransport/Makefile.in index 8c01007a3..e5267822b 100644 --- a/test_problems/mixGasTransport/Makefile.in +++ b/test_problems/mixGasTransport/Makefile.in @@ -226,7 +226,7 @@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ cc_sources = mixGasTransport.cpp -INC = -I. -I$(top_builddir)/build/include/ +INC = -I. -I$(top_builddir)/build/include/ -g AM_CPPFLAGS = $(INC) AM_CXXFLAGS = $(AM_CPPFLAGS) LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ From 77ef1559499606ded2b0d1bc0f40a1cb1bd3863b Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Mon, 6 Feb 2012 23:51:21 +0000 Subject: [PATCH 094/124] [cantera]: fixing a test that was always returning success even in the face of total failure. --- test_problems/cathermo/HMW_dupl_test/runtest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_problems/cathermo/HMW_dupl_test/runtest b/test_problems/cathermo/HMW_dupl_test/runtest index 5b04008f3..522e697ea 100755 --- a/test_problems/cathermo/HMW_dupl_test/runtest +++ b/test_problems/cathermo/HMW_dupl_test/runtest @@ -39,6 +39,6 @@ else echo "unsuccessful diff comparison on $prog test" echo "FAILED" > csvCode.txt temp_success="0" - return 0 + return 1 fi From a008b930c37897889c626b18c023d5d75c2803cf Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Mon, 6 Feb 2012 23:58:33 +0000 Subject: [PATCH 095/124] [cantera]: adding gri_pairs test (should be working) --- configure.ac | 1 + test_problems/ChemEquil_gri_pairs/Makefile.am | 23 + test_problems/ChemEquil_gri_pairs/Makefile.in | 728 +++++++++++++++--- test_problems/ChemEquil_gri_pairs/runtest | 2 + test_problems/Makefile.am | 2 +- 5 files changed, 663 insertions(+), 93 deletions(-) create mode 100644 test_problems/ChemEquil_gri_pairs/Makefile.am diff --git a/configure.ac b/configure.ac index 024bdaeca..31ece2b54 100644 --- a/configure.ac +++ b/configure.ac @@ -94,6 +94,7 @@ AC_OUTPUT(Makefile \ test_problems/Makefile \ test_problems/mixGasTransport/Makefile \ test_problems/ChemEquil_gri_matrix/Makefile \ + test_problems/ChemEquil_gri_pairs/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ diff --git a/test_problems/ChemEquil_gri_pairs/Makefile.am b/test_problems/ChemEquil_gri_pairs/Makefile.am new file mode 100644 index 000000000..d8f17cfb2 --- /dev/null +++ b/test_problems/ChemEquil_gri_pairs/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = gri_pairs.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = gri_pairs +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +gri_pairs_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/ChemEquil_gri_pairs/Makefile.in b/test_problems/ChemEquil_gri_pairs/Makefile.in index 6e4d84b7f..cd2fba0c6 100644 --- a/test_problems/ChemEquil_gri_pairs/Makefile.in +++ b/test_problems/ChemEquil_gri_pairs/Makefile.in @@ -1,113 +1,657 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = gri_pairs +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = gri_pairs.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = gri_pairs$(EXEEXT) +subdir = test_problems/ChemEquil_gri_pairs +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = gri_pairs.$(OBJEXT) +am_gri_pairs_OBJECTS = $(am__objects_1) +gri_pairs_OBJECTS = $(am_gri_pairs_OBJECTS) +gri_pairs_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(gri_pairs_SOURCES) +DIST_SOURCES = $(gri_pairs_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = gri_pairs.cpp +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo \ + -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase \ + -lcvode -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c \ + -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ +#----------------------- +# Cantera DH graph test +#----------------------- +gri_pairs_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/ChemEquil_gri_pairs/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/ChemEquil_gri_pairs/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +gri_pairs$(EXEEXT): $(gri_pairs_OBJECTS) $(gri_pairs_DEPENDENCIES) + @rm -f gri_pairs$(EXEEXT) + $(CXXLINK) $(gri_pairs_OBJECTS) $(gri_pairs_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gri_pairs.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -all: $(PROGRAM) +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/ChemEquil_gri_pairs/runtest b/test_problems/ChemEquil_gri_pairs/runtest index 05370a71e..bf30f8fa3 100755 --- a/test_problems/ChemEquil_gri_pairs/runtest +++ b/test_problems/ChemEquil_gri_pairs/runtest @@ -24,9 +24,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on ChemEquil_gri_pairs test" + return 0 else echo "unsuccessful diff comparison on ChemEquil_gri_pairs test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index a35597aae..96ce4a2f6 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -5,7 +5,7 @@ ChemEquil_ionizedGas ChemEquil_red1 CpJump \ mixGasTransport multiGasTransport printUtilUnitTest -SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix +SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs # # would be good to add: # From 9ea9bd836f314cd596b4fdb6497db93b9d92679d Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 00:26:39 +0000 Subject: [PATCH 096/124] [cantera]: adding csv for ionized gas tests --- Makefile.am | 2 +- configure.ac | 3 + .../ChemEquil_ionizedGas/Makefile.am | 23 + .../ChemEquil_ionizedGas/Makefile.in | 733 +++++++++++++++--- test_problems/ChemEquil_ionizedGas/runtest | 6 +- test_problems/Makefile.am | 5 +- tools/Makefile.am | 1 + tools/Makefile.in | 63 -- tools/testtools/Makefile.am | 15 + tools/testtools/Makefile.in | 583 +++++++++++++- 10 files changed, 1232 insertions(+), 202 deletions(-) create mode 100644 test_problems/ChemEquil_ionizedGas/Makefile.am create mode 100644 tools/Makefile.am delete mode 100644 tools/Makefile.in create mode 100644 tools/testtools/Makefile.am diff --git a/Makefile.am b/Makefile.am index 52d441ce3..3b2df6997 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,7 @@ include $(top_srcdir)/doxygen/aminclude.am # Build in these directories: -SUBDIRS = Cantera test_problems +SUBDIRS = Cantera tools test_problems SUBDIRS += doxygen examples # Distribute these directories: diff --git a/configure.ac b/configure.ac index 31ece2b54..731cc252b 100644 --- a/configure.ac +++ b/configure.ac @@ -95,6 +95,7 @@ AC_OUTPUT(Makefile \ test_problems/mixGasTransport/Makefile \ test_problems/ChemEquil_gri_matrix/Makefile \ test_problems/ChemEquil_gri_pairs/Makefile \ + test_problems/ChemEquil_ionizedGas/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ @@ -120,6 +121,8 @@ AC_OUTPUT(Makefile \ test_problems/cathermo/VPissp/Makefile \ test_problems/cathermo/wtWater/Makefile \ doxygen/Makefile \ + tools/Makefile \ + tools/testtools/Makefile \ Cantera/ext/Makefile \ Cantera/ext/tpx/Makefile \ Cantera/ext/cvode/Makefile \ diff --git a/test_problems/ChemEquil_ionizedGas/Makefile.am b/test_problems/ChemEquil_ionizedGas/Makefile.am new file mode 100644 index 000000000..fed67a386 --- /dev/null +++ b/test_problems/ChemEquil_ionizedGas/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = ionizedGasEquil.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = ionizedGasEquil +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +ionizedGasEquil_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/ChemEquil_ionizedGas/Makefile.in b/test_problems/ChemEquil_ionizedGas/Makefile.in index d77d9ee7a..ef1ce1e29 100644 --- a/test_problems/ChemEquil_ionizedGas/Makefile.in +++ b/test_problems/ChemEquil_ionizedGas/Makefile.in @@ -1,118 +1,657 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = ionizedGasEquil +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = ionizedGasEquil.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# Executables extension -EXE_EXT = @EXE_EXT@ - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = ionizedGasEquil$(EXEEXT) +subdir = test_problems/ChemEquil_ionizedGas +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = ionizedGasEquil.$(OBJEXT) +am_ionizedGasEquil_OBJECTS = $(am__objects_1) +ionizedGasEquil_OBJECTS = $(am_ionizedGasEquil_OBJECTS) +ionizedGasEquil_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(ionizedGasEquil_SOURCES) +DIST_SOURCES = $(ionizedGasEquil_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = ionizedGasEquil.cpp +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo \ + -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase \ + -lcvode -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c \ + -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +library_includedir = $(INC) -# -# LOCAL_DEFS=-DDEBUG_CHEMEQUIL -# -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(LOCAL_DEFS) @CXX_INCLUDES@ +#----------------------- +# Cantera DH graph test +#----------------------- +ionizedGasEquil_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/ChemEquil_ionizedGas/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/ChemEquil_ionizedGas/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +ionizedGasEquil$(EXEEXT): $(ionizedGasEquil_OBJECTS) $(ionizedGasEquil_DEPENDENCIES) + @rm -f ionizedGasEquil$(EXEEXT) + $(CXXLINK) $(ionizedGasEquil_OBJECTS) $(ionizedGasEquil_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) +distclean-compile: + -rm -f *.tab.c -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ionizedGasEquil.Po@am__quote@ -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -all: $(PROGRAM) +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +mostlyclean-libtool: + -rm -f *.lo -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/ChemEquil_ionizedGas/runtest b/test_problems/ChemEquil_ionizedGas/runtest index b69f109e8..aa1633138 100755 --- a/test_problems/ChemEquil_ionizedGas/runtest +++ b/test_problems/ChemEquil_ionizedGas/runtest @@ -32,21 +32,21 @@ then if [ $retnStat_txt != "0" ] then echo " But, text output files have differences. See diff_out.txt" + return 1 fi else echo "Unsuccessful test comparison on " $testName " test" if test $retnStat_csv != "1" then echo " csv files are different - see diff_csv.txt" + return 1 fi if test $retnStat_txt != "0" then echo " And, text output files have differences. See diff_out.txt" + return 1 fi fi # # exit 0 - - - diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 96ce4a2f6..b8aa9ec81 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -2,10 +2,11 @@ #SUBDIRS = cxx_ex surfkin fracCoeff silane_equil VPsilance_test \ negATest diamondSurf diamondSurf_dupl surfSolverTest \ ChemEquil_gri_matrix ChemEquil_gri_pairs \ - ChemEquil_ionizedGas ChemEquil_red1 CpJump \ + ChemEquil_red1 CpJump \ mixGasTransport multiGasTransport printUtilUnitTest -SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs +SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs +SUBDIRS += ChemEquil_ionizedGas # # would be good to add: # diff --git a/tools/Makefile.am b/tools/Makefile.am new file mode 100644 index 000000000..5cd375fe0 --- /dev/null +++ b/tools/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = testtools \ No newline at end of file diff --git a/tools/Makefile.in b/tools/Makefile.in deleted file mode 100644 index 839919dc3..000000000 --- a/tools/Makefile.in +++ /dev/null @@ -1,63 +0,0 @@ -# -# $Revision: 1.13 $ -# $Author: hkmoffa $ -# $Date: 2008/09/08 23:56:40 $ -# -build_ck=@BUILD_CK@ - -all: apps - -install: templates-install apps-install man-install - -apps: - cd src; @MAKE@ - cd testtools; @MAKE@ - -apps-install: - @INSTALL@ -d @ct_bindir@ -ifeq ($(build_ck),1) - @INSTALL@ -c @buildbin@/ck2cti @ct_bindir@ -endif - @INSTALL@ -c @buildbin@/cti2ctml @ct_bindir@ - @INSTALL@ -c @buildbin@/csvdiff @ct_bindir@ - -man-install: - @INSTALL@ -d @ct_mandir@/man1 - @INSTALL@ -c man/ck2cti.1 @ct_mandir@/man1 - @INSTALL@ -c man/mixmaster.1 @ct_mandir@/man1 - -uninstall: - rm -r -f @ct_mandir@/man1/ck2cti.1 - rm -f @ct_bindir@/ck2cti - -clean: - $(RM) *.*~ - cd src; @MAKE@ clean - cd testtools; @MAKE@ clean - -docs: - cd doc; doxygen Cantera.cfg - -depends: - cd src; @MAKE@ depends - cd testtools; @MAKE@ depends - -templates-install: - @INSTALL@ -d @ct_dir@/templates - @INSTALL@ -d @ct_dir@/templates/f77 - @(for ihhh in templates/f77/*.mak templates/f77/*.f ; do \ - @INSTALL@ -c $${ihhh} @ct_dir@/templates/f77 ; \ - echo "@INSTALL@ -c $${ihhh} @ct_dir@/templates/f77" ; \ - done ) - @INSTALL@ -d @ct_dir@/templates/f90 - @(for ihhh in templates/f90/*.mak templates/f90/*.f90 templates/f90/*.cpp ; do \ - @INSTALL@ -c $${ihhh} @ct_dir@/templates/f90 ; \ - echo "@INSTALL@ -c $${ihhh} @ct_dir@/templates/f90" ; \ - done ) - @INSTALL@ -d @ct_dir@/templates/cxx - @(for ihhh in templates/cxx/*.mak templates/cxx/*.cpp; do \ - @INSTALL@ -c $${ihhh} @ct_dir@/templates/cxx ; \ - echo "@INSTALL@ -c $${ihhh} @ct_dir@/templates/cxx" ; \ - done ) - chown -R @username@ @ct_dir@/templates - diff --git a/tools/testtools/Makefile.am b/tools/testtools/Makefile.am new file mode 100644 index 000000000..884cf1ef8 --- /dev/null +++ b/tools/testtools/Makefile.am @@ -0,0 +1,15 @@ +cc_sources = csvdiff.cpp mdp_allo.cpp tok_input_util.cpp +h_sources = mdp_allo.h + +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LIBS = $(LINK) +bin_PROGRAMS = $(top_builddir)/bin/csvdiff + +#--------------------------------------- +# Cantera comma sep value differ +#--------------------------------------- + +__top_builddir__bin_csvdiff_SOURCES = $(cc_sources) + diff --git a/tools/testtools/Makefile.in b/tools/testtools/Makefile.in index 945b9857b..ce5a3180f 100644 --- a/tools/testtools/Makefile.in +++ b/tools/testtools/Makefile.in @@ -1,53 +1,564 @@ -#/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -LIBDIR = @buildlib@ -INCDIR = @ctroot@/build/include/cantera -BINDIR = @ctroot@/bin -BBINDIR = @buildbin@ -build_ck = @BUILD_CK@ +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -PURIFY=@PURIFY@ +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -LCXX_FLAGS = -L$(LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ -LOCAL_LIBS = -lcantera -lckreader @math_libs@ @LAPACK_LIBRARY@ @BLAS_LIBRARY@ -lctcxx +@SET_MAKE@ -LCXX_END_LIBS = @LCXX_END_LIBS@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = $(top_builddir)/bin/csvdiff$(EXEEXT) +subdir = tools/testtools +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = csvdiff.$(OBJEXT) mdp_allo.$(OBJEXT) \ + tok_input_util.$(OBJEXT) +am___top_builddir__bin_csvdiff_OBJECTS = $(am__objects_1) +__top_builddir__bin_csvdiff_OBJECTS = \ + $(am___top_builddir__bin_csvdiff_OBJECTS) +__top_builddir__bin_csvdiff_LDADD = $(LDADD) +am__dirstamp = $(am__leading_dot)dirstamp +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(__top_builddir__bin_csvdiff_SOURCES) +DIST_SOURCES = $(__top_builddir__bin_csvdiff_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = csvdiff.cpp mdp_allo.cpp tok_input_util.cpp +h_sources = mdp_allo.h +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) -OBJS = mdp_allo.o csvdiff.o tok_input_util.o -DEPENDS = $(OBJS:.o=.d) +#--------------------------------------- +# Cantera comma sep value differ +#--------------------------------------- +__top_builddir__bin_csvdiff_SOURCES = $(cc_sources) +all: all-am -CXX_FLAGS=@CXXFLAGS@ -CONFIGDEFS=@DEFS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tools/testtools/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu tools/testtools/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# Optimization is turned off (-O0) because a strange interal compiler -# error results when using g++ 3.0 on Mac OS X. Optimization should -# not be needed here anyway. +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +$(top_builddir)/bin/$(am__dirstamp): + @$(MKDIR_P) $(top_builddir)/bin + @: > $(top_builddir)/bin/$(am__dirstamp) +$(top_builddir)/bin/csvdiff$(EXEEXT): $(__top_builddir__bin_csvdiff_OBJECTS) $(__top_builddir__bin_csvdiff_DEPENDENCIES) $(top_builddir)/bin/$(am__dirstamp) + @rm -f $(top_builddir)/bin/csvdiff$(EXEEXT) + $(CXXLINK) $(__top_builddir__bin_csvdiff_OBJECTS) $(__top_builddir__bin_csvdiff_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/csvdiff.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mdp_allo.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tok_input_util.Po@am__quote@ .cpp.o: - $(PURIFY) @CXX@ -c $< -I$(INCDIR) @CXXFLAGS@ -O0 +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -all: $(BINDIR)/csvdiff $(BBINDIR)/csvdiff +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -$(BINDIR)/csvdiff: mdp_allo.o csvdiff.o tok_input_util.o - $(PURIFY) @CXX@ -o $(BINDIR)/csvdiff mdp_allo.o csvdiff.o tok_input_util.o \ - $(LCXX_FLAGS) $(LCXX_END_LIBS) +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -$(BBINDIR)/csvdiff: $(BINDIR)/csvdiff - cp -f $(BINDIR)/csvdiff $(BBINDIR) +mostlyclean-libtool: + -rm -f *.lo -clean: - $(RM) *.o *.*~ csvdiff $(BINDIR)/csvdiff $(BBINDIR)/csvdiff +clean-libtool: + -rm -rf $(top_builddir)/bin/.libs $(top_builddir)/bin/_libs + -rm -rf .libs _libs -%.d: - @CXX_DEPENDS@ -MM -I$(INCDIR) $(CXX_FLAGS) $*.cpp > $*.d +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS -depends: $(DEPENDS) - cat *.d &> .depends - $(RM) $(DEPENDS) +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique -TAGS: - etags *.h *.cpp +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" -ifeq ($(wildcard .depends), .depends) -include .depends -endif +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -test -z "$(top_builddir)/bin/$(am__dirstamp)" || rm -f $(top_builddir)/bin/$(am__dirstamp) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ + clean-generic clean-libtool ctags distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-binPROGRAMS install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-binPROGRAMS + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: From afc979c5b179d7edceaf4af80215ddb9fef67680 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 00:31:17 +0000 Subject: [PATCH 097/124] [cantera]: adding basopt red test (succeeds) --- configure.ac | 3 +- .../ChemEquil_ionizedGas/Makefile.in | 657 ---------------- test_problems/ChemEquil_red1/Makefile.am | 23 + test_problems/ChemEquil_red1/Makefile.in | 739 +++++++++++++++--- test_problems/ChemEquil_red1/basopt_red1.cpp | 6 +- test_problems/Makefile.am | 4 +- 6 files changed, 661 insertions(+), 771 deletions(-) delete mode 100644 test_problems/ChemEquil_ionizedGas/Makefile.in create mode 100644 test_problems/ChemEquil_red1/Makefile.am diff --git a/configure.ac b/configure.ac index 731cc252b..415999f54 100644 --- a/configure.ac +++ b/configure.ac @@ -95,7 +95,8 @@ AC_OUTPUT(Makefile \ test_problems/mixGasTransport/Makefile \ test_problems/ChemEquil_gri_matrix/Makefile \ test_problems/ChemEquil_gri_pairs/Makefile \ - test_problems/ChemEquil_ionizedGas/Makefile \ + test_problems/ChemEquil_ionizedGas/Makefile \ + test_problems/ChemEquil_red1/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ diff --git a/test_problems/ChemEquil_ionizedGas/Makefile.in b/test_problems/ChemEquil_ionizedGas/Makefile.in deleted file mode 100644 index ef1ce1e29..000000000 --- a/test_problems/ChemEquil_ionizedGas/Makefile.in +++ /dev/null @@ -1,657 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = ionizedGasEquil$(EXEEXT) -subdir = test_problems/ChemEquil_ionizedGas -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = ionizedGasEquil.$(OBJEXT) -am_ionizedGasEquil_OBJECTS = $(am__objects_1) -ionizedGasEquil_OBJECTS = $(am_ionizedGasEquil_OBJECTS) -ionizedGasEquil_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(ionizedGasEquil_SOURCES) -DIST_SOURCES = $(ionizedGasEquil_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = ionizedGasEquil.cpp -INC = -I. -I$(top_builddir)/build/include/ -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo \ - -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase \ - -lcvode -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c \ - -lstdc++ -AM_LDFLAGS = -L$(top_builddir)/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -ionizedGasEquil_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/ChemEquil_ionizedGas/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/ChemEquil_ionizedGas/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -ionizedGasEquil$(EXEEXT): $(ionizedGasEquil_OBJECTS) $(ionizedGasEquil_DEPENDENCIES) - @rm -f ionizedGasEquil$(EXEEXT) - $(CXXLINK) $(ionizedGasEquil_OBJECTS) $(ionizedGasEquil_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ionizedGasEquil.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/ChemEquil_red1/Makefile.am b/test_problems/ChemEquil_red1/Makefile.am new file mode 100644 index 000000000..cf76ee85f --- /dev/null +++ b/test_problems/ChemEquil_red1/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = basopt_red1.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = basopt_red1 +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +basopt_red1_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/ChemEquil_red1/Makefile.in b/test_problems/ChemEquil_red1/Makefile.in index 6da68eafd..7695a2bad 100644 --- a/test_problems/ChemEquil_red1/Makefile.in +++ b/test_problems/ChemEquil_red1/Makefile.in @@ -1,134 +1,657 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = basopt_red1 +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = basopt_red1.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -# This variable determines whether we are making this example in the -# build tree environment or in the install tree environment. -in_CanteraBuildTree = 1 - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = basopt_red1$(EXEEXT) +subdir = test_problems/ChemEquil_red1 +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = basopt_red1.$(OBJEXT) +am_basopt_red1_OBJECTS = $(am__objects_1) +basopt_red1_OBJECTS = $(am_basopt_red1_OBJECTS) +basopt_red1_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(basopt_red1_SOURCES) +DIST_SOURCES = $(basopt_red1_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = basopt_red1.cpp +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo \ + -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase \ + -lcvode -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c \ + -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +library_includedir = $(INC) -# the directory where Cantera include files may be found. -ifeq ($(in_CanteraBuildTree),1) -CANTERA_INCROOTDIR=@ctroot@/build/include -else -CANTERA_INCROOTDIR=@ct_incroot@ -endif -CANTERA_INCLUDES=-I$(CANTERA_INCROOTDIR) -I$(CANTERA_INCROOTDIR)/cantera +#----------------------- +# Cantera DH graph test +#----------------------- +basopt_red1_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# LOCAL_DEFS = -DDEBUG_CHEMEQUIL -# LOCAL_DEFS = -DEBUG_BASISOPTIMIZE -# -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(CANTERA_INCLUDES) $(LOCAL_DEFS) @CXX_INCLUDES@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/ChemEquil_red1/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/ChemEquil_red1/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# the directory where the Cantera libraries are located -ifeq ($(in_CanteraBuildTree),1) -CANTERA_LIBDIR=@buildlib@ -else -CANTERA_LIBDIR=@ct_libdir@ -endif +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# required Cantera libraries -CANTERA_LIBS = -L$(CANTERA_LIBDIR) @LOCAL_LIBS@ -lctcxx +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -ifeq ($(in_CanteraBuildTree),1) -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a -else -CANTERA_LIBS_DEP = @INSTALL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a -endif -# -# Alternate form of dependencies: (uses a gnu make extensions) -ALT_LIBS_DEP := $(addprefix $(CANTER_LIBDIR), @RAW_LIBS_DEP@ libctcxx.a) +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +basopt_red1$(EXEEXT): $(basopt_red1_OBJECTS) $(basopt_red1_DEPENDENCIES) + @rm -f basopt_red1$(EXEEXT) + $(CXXLINK) $(basopt_red1_OBJECTS) $(basopt_red1_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = @CXXFLAGS@ @LOCAL_LIB_DIRS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/basopt_red1.Po@am__quote@ -# How to compile C++ source files to object files .cpp.o: - $(CXX) -c $< $(CXX_FLAGS) +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(CXX_FLAGS) $*.cpp > $*.d +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +mostlyclean-libtool: + -rm -f *.lo -all: $(PROGRAM) +clean-libtool: + -rm -rf .libs _libs -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" -.depends: $(DEPENDS) - cat *.d > .depends +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am -ifeq ($(wildcard .depends), .depends) -include .depends -endif +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/ChemEquil_red1/basopt_red1.cpp b/test_problems/ChemEquil_red1/basopt_red1.cpp index 3630cbaca..cf183fdd3 100644 --- a/test_problems/ChemEquil_red1/basopt_red1.cpp +++ b/test_problems/ChemEquil_red1/basopt_red1.cpp @@ -5,9 +5,9 @@ * */ -#include "cantera/Cantera.h" -#include "cantera/IdealGasMix.h" -#include "cantera/equilibrium.h" +#include "Cantera.h" +#include "IdealGasMix.h" +#include "equilibrium.h" using namespace std; using namespace Cantera; diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index b8aa9ec81..4798e57d4 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -2,11 +2,11 @@ #SUBDIRS = cxx_ex surfkin fracCoeff silane_equil VPsilance_test \ negATest diamondSurf diamondSurf_dupl surfSolverTest \ ChemEquil_gri_matrix ChemEquil_gri_pairs \ - ChemEquil_red1 CpJump \ + CpJump \ mixGasTransport multiGasTransport printUtilUnitTest SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs -SUBDIRS += ChemEquil_ionizedGas +SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 # # would be good to add: # From fd7b517c77061d28d08f54fde5bca0ca9f284fa9 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 00:46:30 +0000 Subject: [PATCH 098/124] [cantera]: adding CpJump test routine --- configure.ac | 6 +- test_problems/CpJump/Makefile.am | 23 + test_problems/CpJump/Makefile.in | 743 ++++++++++++++++++++++---- test_problems/Makefile.am | 12 +- test_problems/ck2cti_test/Makefile.am | 3 + 5 files changed, 672 insertions(+), 115 deletions(-) create mode 100644 test_problems/CpJump/Makefile.am create mode 100644 test_problems/ck2cti_test/Makefile.am diff --git a/configure.ac b/configure.ac index 415999f54..9bd43f407 100644 --- a/configure.ac +++ b/configure.ac @@ -88,8 +88,6 @@ DX_PS_FEATURE(OFF) DX_INIT_DOXYGEN(cantera, doxygen/cantera.dox, docs) # Generate Output Files - - AC_OUTPUT(Makefile \ test_problems/Makefile \ test_problems/mixGasTransport/Makefile \ @@ -97,6 +95,7 @@ AC_OUTPUT(Makefile \ test_problems/ChemEquil_gri_pairs/Makefile \ test_problems/ChemEquil_ionizedGas/Makefile \ test_problems/ChemEquil_red1/Makefile \ + test_problems/CpJump/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ @@ -147,6 +146,9 @@ AC_OUTPUT(Makefile \ examples/Makefile \ examples/cxx/Makefile) +# test_problems/ck2cti/Makefile + + # FINAL SUMMARY AX_SUMMARIZE_CONFIG diff --git a/test_problems/CpJump/Makefile.am b/test_problems/CpJump/Makefile.am new file mode 100644 index 000000000..8c631190b --- /dev/null +++ b/test_problems/CpJump/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = CpJump.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = CpJump +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +CpJump_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/CpJump/Makefile.in b/test_problems/CpJump/Makefile.in index 80d82350d..ab6b36a94 100644 --- a/test_problems/CpJump/Makefile.in +++ b/test_problems/CpJump/Makefile.in @@ -1,134 +1,657 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = CpJump +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = CpJump.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = CpJump$(EXEEXT) +subdir = test_problems/CpJump +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = CpJump.$(OBJEXT) +am_CpJump_OBJECTS = $(am__objects_1) +CpJump_OBJECTS = $(am_CpJump_OBJECTS) +CpJump_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(CpJump_SOURCES) +DIST_SOURCES = $(CpJump_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = CpJump.cpp +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo \ + -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase \ + -lcvode -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c \ + -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ +#----------------------- +# Cantera DH graph test +#----------------------- +CpJump_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/CpJump/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/CpJump/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# Cantera library Dependencies -CANTERA_LIB_DEPS = $(CANTERA_LIBDIR)/liboneD.a \ - $(CANTERA_LIBDIR)/libzeroD.a \ - $(CANTERA_LIBDIR)/libkinetics.a \ - $(CANTERA_LIBDIR)/libtransport.a \ - $(CANTERA_LIBDIR)/libthermo.a \ - $(CANTERA_LIBDIR)/libctnumerics.a \ - $(CANTERA_LIBDIR)/libctbase.a \ - $(CANTERA_LIBDIR)/libctmath.a \ - $(CANTERA_LIBDIR)/libtpx.a \ - $(CANTERA_LIBDIR)/libconverters.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -ifeq (@build_lapack@, 1) -CANTERA_LAPACK_DEPS = $(CANTERA_LIBDIR)/libctblas.a \ - $(CANTERA_LIBDIR)/libctlapack.a -endif +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +CpJump$(EXEEXT): $(CpJump_OBJECTS) $(CpJump_DEPENDENCIES) + @rm -f CpJump$(EXEEXT) + $(CXXLINK) $(CpJump_OBJECTS) $(CpJump_LDADD) $(LIBS) -ifeq (@use_sundials@, 0) -CANTERA_CVODE_DEPS = $(CANTERA_LIBDIR)/libcvode.a -endif +mostlyclean-compile: + -rm -f *.$(OBJEXT) -LIB_DEPS = $(CANTERA_LIB_DEPS) $(CANTERA_LAPACK_DEPS) $(CANTERA_CVODE_DEPS) +distclean-compile: + -rm -f *.tab.c -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CpJump.Po@am__quote@ -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +mostlyclean-libtool: + -rm -f *.lo -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +clean-libtool: + -rm -rf .libs _libs -all: $(PROGRAM) +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS -$(PROGRAM): $(OBJS) $(LIB_DEPS) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 4798e57d4..e88cc3e43 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -2,22 +2,28 @@ #SUBDIRS = cxx_ex surfkin fracCoeff silane_equil VPsilance_test \ negATest diamondSurf diamondSurf_dupl surfSolverTest \ ChemEquil_gri_matrix ChemEquil_gri_pairs \ - CpJump \ mixGasTransport multiGasTransport printUtilUnitTest SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs -SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 +SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump + + # # would be good to add: # # pureFluidTest # rankine_democxx # min_python -# ck2cti_test +# # nasa9_reader # cathermo # VCSnonideal + +# skipped: +# ck2cti_test + + EXTRA_DIST = dist-hook: diff --git a/test_problems/ck2cti_test/Makefile.am b/test_problems/ck2cti_test/Makefile.am new file mode 100644 index 000000000..f54f8002e --- /dev/null +++ b/test_problems/ck2cti_test/Makefile.am @@ -0,0 +1,3 @@ + +TESTS_ENVIRONMENT = +TESTS = runtest From c599918145a9507f2a330d082eb610c73832a16b Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 00:48:32 +0000 Subject: [PATCH 099/124] [cantera]: adding cxx_ex test (successfully) --- configure.ac | 1 + test_problems/Makefile.am | 4 ++-- test_problems/cxx_ex/Makefile.am | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 test_problems/cxx_ex/Makefile.am diff --git a/configure.ac b/configure.ac index 9bd43f407..733cf9b43 100644 --- a/configure.ac +++ b/configure.ac @@ -96,6 +96,7 @@ AC_OUTPUT(Makefile \ test_problems/ChemEquil_ionizedGas/Makefile \ test_problems/ChemEquil_red1/Makefile \ test_problems/CpJump/Makefile \ + test_problems/cxx_ex/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index e88cc3e43..4287fcedf 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -1,11 +1,11 @@ -#SUBDIRS = cxx_ex surfkin fracCoeff silane_equil VPsilance_test \ +#SUBDIRS = surfkin fracCoeff silane_equil VPsilance_test \ negATest diamondSurf diamondSurf_dupl surfSolverTest \ ChemEquil_gri_matrix ChemEquil_gri_pairs \ mixGasTransport multiGasTransport printUtilUnitTest SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs -SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump +SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex # diff --git a/test_problems/cxx_ex/Makefile.am b/test_problems/cxx_ex/Makefile.am new file mode 100644 index 000000000..1773e7087 --- /dev/null +++ b/test_problems/cxx_ex/Makefile.am @@ -0,0 +1 @@ +TESTS = runtest \ No newline at end of file From 79dc26413446f1792941c3c57a1f76574f4700fa Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 00:52:40 +0000 Subject: [PATCH 100/124] [cantera]: adding diamond surface test, moving home and getting some food. --- Cantera/cxx/include/kinetics.h | 10 +- configure.ac | 1 + test_problems/Makefile.am | 4 +- test_problems/diamondSurf/Makefile.am | 23 + test_problems/diamondSurf/Makefile.in | 731 ++++++++++++++++++++++---- 5 files changed, 668 insertions(+), 101 deletions(-) create mode 100644 test_problems/diamondSurf/Makefile.am diff --git a/Cantera/cxx/include/kinetics.h b/Cantera/cxx/include/kinetics.h index f19fd9114..466d5d85b 100644 --- a/Cantera/cxx/include/kinetics.h +++ b/Cantera/cxx/include/kinetics.h @@ -6,10 +6,10 @@ #include "thermo.h" -#include "kernel/Kinetics.h" -#include "kernel/InterfaceKinetics.h" -#include "kernel/GasKinetics.h" -#include "kernel/KineticsFactory.h" -#include "kernel/importKinetics.h" +#include "Kinetics.h" +#include "InterfaceKinetics.h" +#include "GasKinetics.h" +#include "KineticsFactory.h" +#include "importKinetics.h" #endif diff --git a/configure.ac b/configure.ac index 733cf9b43..741acec1f 100644 --- a/configure.ac +++ b/configure.ac @@ -97,6 +97,7 @@ AC_OUTPUT(Makefile \ test_problems/ChemEquil_red1/Makefile \ test_problems/CpJump/Makefile \ test_problems/cxx_ex/Makefile \ + test_problems/diamondSurf/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 4287fcedf..392b02784 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -1,11 +1,11 @@ #SUBDIRS = surfkin fracCoeff silane_equil VPsilance_test \ - negATest diamondSurf diamondSurf_dupl surfSolverTest \ + negATest diamondSurf_dupl surfSolverTest \ ChemEquil_gri_matrix ChemEquil_gri_pairs \ mixGasTransport multiGasTransport printUtilUnitTest SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs -SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex +SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf # diff --git a/test_problems/diamondSurf/Makefile.am b/test_problems/diamondSurf/Makefile.am new file mode 100644 index 000000000..4c39cc948 --- /dev/null +++ b/test_problems/diamondSurf/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = runDiamond.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = runDiamond +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +runDiamond_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/diamondSurf/Makefile.in b/test_problems/diamondSurf/Makefile.in index 2e782f307..0eb3ff564 100644 --- a/test_problems/diamondSurf/Makefile.in +++ b/test_problems/diamondSurf/Makefile.in @@ -1,114 +1,657 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = runDiamond +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = runDiamond.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = runDiamond$(EXEEXT) +subdir = test_problems/diamondSurf +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = runDiamond.$(OBJEXT) +am_runDiamond_OBJECTS = $(am__objects_1) +runDiamond_OBJECTS = $(am_runDiamond_OBJECTS) +runDiamond_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(runDiamond_SOURCES) +DIST_SOURCES = $(runDiamond_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = runDiamond.cpp +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo \ + -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase \ + -lcvode -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c \ + -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ +#----------------------- +# Cantera DH graph test +#----------------------- +runDiamond_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/diamondSurf/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/diamondSurf/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +runDiamond$(EXEEXT): $(runDiamond_OBJECTS) $(runDiamond_DEPENDENCIES) + @rm -f runDiamond$(EXEEXT) + $(CXXLINK) $(runDiamond_OBJECTS) $(runDiamond_LDADD) $(LIBS) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d +distclean-compile: + -rm -f *.tab.c -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/runDiamond.Po@am__quote@ -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# all rule makes a single program -all: $(PROGRAM) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libctbase.a - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: From 4915b3e9c414e904126ae181f141d4c925262f58 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 03:21:22 +0000 Subject: [PATCH 101/124] [cantera]: few edits to get everything working --- Cantera/Makefile.am | 2 +- Cantera/ext/f2c_libs/Makefile.am | 3 +- Cantera/ext/f2c_libs/signal1.h | 35 ++++++++++++++ Cantera/ext/f2c_libs/sysdep1.h | 78 ++++++++++++++++++++++++++++++++ Cantera/src/Makefile.am | 2 +- Cantera/src/base/Makefile.am | 1 + 6 files changed, 117 insertions(+), 4 deletions(-) create mode 100644 Cantera/ext/f2c_libs/signal1.h create mode 100644 Cantera/ext/f2c_libs/sysdep1.h diff --git a/Cantera/Makefile.am b/Cantera/Makefile.am index 25ffef14a..e7f5b3e5b 100644 --- a/Cantera/Makefile.am +++ b/Cantera/Makefile.am @@ -1,4 +1,4 @@ # $Id: $ # will need to add python and matlab -SUBDIRS = src user cxx ext +SUBDIRS = ext src user cxx diff --git a/Cantera/ext/f2c_libs/Makefile.am b/Cantera/ext/f2c_libs/Makefile.am index ed9f91ba1..234868e93 100644 --- a/Cantera/ext/f2c_libs/Makefile.am +++ b/Cantera/ext/f2c_libs/Makefile.am @@ -36,7 +36,7 @@ cc_sources = abort_.c c_log.c d_atn2.c dfe.c d_prod.c \ # arithchk.c getarg_.c iargc_.c -h_sources = f2c.h fio.h fmt.h fp.h lio.h rawio.h sysdep1.h +h_sources = f2c.h sysdep1.h fio.h fmt.h fp.h lio.h rawio.h AM_CPPFLAGS = -I. AM_CXXFLAGS = $(AM_CPPFLAGS) @@ -57,7 +57,6 @@ all: cp -u signal1.h0 signal1.h cp $(h_sources) $(top_builddir)/build/include/ - __top_builddir__build_lib_libctf2c_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libctf2c_la_SOURCES = $(cc_sources) $(h_sources) diff --git a/Cantera/ext/f2c_libs/signal1.h b/Cantera/ext/f2c_libs/signal1.h new file mode 100644 index 000000000..a383774b8 --- /dev/null +++ b/Cantera/ext/f2c_libs/signal1.h @@ -0,0 +1,35 @@ +/* You may need to adjust the definition of signal1 to supply a */ +/* cast to the correct argument type. This detail is system- and */ +/* compiler-dependent. The #define below assumes signal.h declares */ +/* type SIG_PF for the signal function's second argument. */ + +/* For some C++ compilers, "#define Sigarg_t ..." may be appropriate. */ + +#include + +#ifndef Sigret_t +#define Sigret_t void +#endif +#ifndef Sigarg_t +#ifdef KR_headers +#define Sigarg_t +#else +#define Sigarg_t int +#endif +#endif /*Sigarg_t*/ + +#ifdef USE_SIG_PF /* compile with -DUSE_SIG_PF under IRIX */ +#define sig_pf SIG_PF +#else +typedef Sigret_t (*sig_pf)(Sigarg_t); +#endif + +#define signal1(a,b) signal(a,(sig_pf)b) + +#ifdef __cplusplus +#define Sigarg ... +#define Use_Sigarg +#else +#define Sigarg Int n +#define Use_Sigarg n = n /* shut up compiler warning */ +#endif diff --git a/Cantera/ext/f2c_libs/sysdep1.h b/Cantera/ext/f2c_libs/sysdep1.h new file mode 100644 index 000000000..259b2b020 --- /dev/null +++ b/Cantera/ext/f2c_libs/sysdep1.h @@ -0,0 +1,78 @@ +#ifndef SYSDEP_H_INCLUDED +#define SYSDEP_H_INCLUDED +#undef USE_LARGEFILE +#ifndef NO_LONG_LONG + +#ifdef __sun__ +#define USE_LARGEFILE +#define OFF_T off64_t +// On some older solaris systems, it seems that OFF_T needed to +// be set to an int sometimes. It didn't cause crashes if you +// didn't. However, ld warnings would occur if the sys -lg2c +// libs were loaded at the same time. +// see man pages for fseek and fseeko. +// Can be debugged by finding out what off_t is set to in the +// the standard compiler headings. +//#define OFF_T int +#endif + +#ifdef __linux__ +#define USE_LARGEFILE +#define OFF_T __off64_t +#endif + +#ifdef _AIX43 +#define _LARGE_FILES +#define _LARGE_FILE_API +#define USE_LARGEFILE +#endif /*_AIX43*/ + +#ifdef __hpux +#define _FILE64 +#define _LARGEFILE64_SOURCE +#define USE_LARGEFILE +#endif /*__hpux*/ + +#ifdef __sgi +#define USE_LARGEFILE +#endif /*__sgi*/ + +#ifdef __FreeBSD__ +#define OFF_T off_t +#define FSEEK fseeko +#define FTELL ftello +#endif + +#ifdef USE_LARGEFILE +#ifndef OFF_T +#define OFF_T off64_t +#endif +#ifndef _LARGEFILE_SOURCE +#define _LARGEFILE_SOURCE +#endif +#ifndef _LARGEFILE64_SOURCE +#define _LARGEFILE64_SOURCE +#endif +#include +#include +#define FOPEN fopen64 +#define FREOPEN freopen64 +#define FSEEK fseeko64 +#define FSTAT fstat64 +#define FTELL ftello64 +#define FTRUNCATE ftruncate64 +#define STAT stat64 +#define STAT_ST stat64 +#endif /*USE_LARGEFILE*/ +#endif /*NO_LONG_LONG*/ + +#ifndef NON_UNIX_STDIO +#ifndef USE_LARGEFILE +#define _INCLUDE_POSIX_SOURCE /* for HP-UX */ +#define _INCLUDE_XOPEN_SOURCE /* for HP-UX */ +#include "sys/types.h" +#include "sys/stat.h" +#endif +#endif + +#endif /*SYSDEP_H_INCLUDED*/ diff --git a/Cantera/src/Makefile.am b/Cantera/src/Makefile.am index 836d04dc6..9e77467e2 100644 --- a/Cantera/src/Makefile.am +++ b/Cantera/src/Makefile.am @@ -1,6 +1,6 @@ # $Id: $ # will need to add python and matlab -SUBDIRS = numerics base converters thermo transport oneD zeroD kinetics spectra equil +SUBDIRS = base numerics converters thermo transport oneD zeroD kinetics spectra equil diff --git a/Cantera/src/base/Makefile.am b/Cantera/src/base/Makefile.am index 688dc57bd..2a9401316 100644 --- a/Cantera/src/base/Makefile.am +++ b/Cantera/src/base/Makefile.am @@ -30,6 +30,7 @@ __top_builddir__build_lib_libctbase_la_SOURCES = $(cc_sources) $(h_sources) # header file accumulation -- only copy if file updated! all: @echo copying headers $< + mkdir $(top_builddir)/build/include/ cp -u *.h $(top_builddir)/build/include/ CLEANFILES = *.o From 51caa1374e2cdb4e6638f0cbe25d538447de357e Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 03:26:03 +0000 Subject: [PATCH 102/124] [cantera]: all set now --- Cantera/src/base/Makefile.am | 1 - 1 file changed, 1 deletion(-) diff --git a/Cantera/src/base/Makefile.am b/Cantera/src/base/Makefile.am index 2a9401316..688dc57bd 100644 --- a/Cantera/src/base/Makefile.am +++ b/Cantera/src/base/Makefile.am @@ -30,7 +30,6 @@ __top_builddir__build_lib_libctbase_la_SOURCES = $(cc_sources) $(h_sources) # header file accumulation -- only copy if file updated! all: @echo copying headers $< - mkdir $(top_builddir)/build/include/ cp -u *.h $(top_builddir)/build/include/ CLEANFILES = *.o From 14b29fd855f83da2076c2ba9292060c9b68e8c06 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 16:37:24 +0000 Subject: [PATCH 103/124] [cantera]: adding diamond dupl test (successful) --- configure.ac | 3 +- test_problems/Makefile.am | 1 + test_problems/diamondSurf_dupl/Makefile.am | 23 + test_problems/diamondSurf_dupl/Makefile.in | 733 ++++++++++++++++++--- 4 files changed, 663 insertions(+), 97 deletions(-) create mode 100644 test_problems/diamondSurf_dupl/Makefile.am diff --git a/configure.ac b/configure.ac index 741acec1f..20a9dabd2 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# -*- Autoconf -*- + -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) @@ -98,6 +98,7 @@ AC_OUTPUT(Makefile \ test_problems/CpJump/Makefile \ test_problems/cxx_ex/Makefile \ test_problems/diamondSurf/Makefile \ + test_problems/diamondSurf_dupl/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 392b02784..f75ce1f7e 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -6,6 +6,7 @@ SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf +SUBDIRS += diamondSurf_dupl # diff --git a/test_problems/diamondSurf_dupl/Makefile.am b/test_problems/diamondSurf_dupl/Makefile.am new file mode 100644 index 000000000..41485a59f --- /dev/null +++ b/test_problems/diamondSurf_dupl/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = runDiamondDupl.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = runDiamondDupl +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +runDiamondDupl_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/diamondSurf_dupl/Makefile.in b/test_problems/diamondSurf_dupl/Makefile.in index cc0e4d5be..0833106e5 100644 --- a/test_problems/diamondSurf_dupl/Makefile.in +++ b/test_problems/diamondSurf_dupl/Makefile.in @@ -1,116 +1,657 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = runDiamondDupl +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = runDiamondDupl.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = runDiamondDupl$(EXEEXT) +subdir = test_problems/diamondSurf_dupl +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = runDiamondDupl.$(OBJEXT) +am_runDiamondDupl_OBJECTS = $(am__objects_1) +runDiamondDupl_OBJECTS = $(am_runDiamondDupl_OBJECTS) +runDiamondDupl_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(runDiamondDupl_SOURCES) +DIST_SOURCES = $(runDiamondDupl_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = runDiamondDupl.cpp +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo \ + -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase \ + -lcvode -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c \ + -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +library_includedir = $(INC) -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ +#----------------------- +# Cantera DH graph test +#----------------------- +runDiamondDupl_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/diamondSurf_dupl/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/diamondSurf_dupl/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +runDiamondDupl$(EXEEXT): $(runDiamondDupl_OBJECTS) $(runDiamondDupl_DEPENDENCIES) + @rm -f runDiamondDupl$(EXEEXT) + $(CXXLINK) $(runDiamondDupl_OBJECTS) $(runDiamondDupl_LDADD) $(LIBS) -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(PURIFY) $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) +mostlyclean-compile: + -rm -f *.$(OBJEXT) -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d +distclean-compile: + -rm -f *.tab.c -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/runDiamondDupl.Po@am__quote@ -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# all rule makes a single program -all: $(PROGRAM) +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libctbase.a - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: From 35c088a406d06e7fc988a75ada352a82bd3174a5 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 16:43:23 +0000 Subject: [PATCH 104/124] [cantera]: removing all these makefile.in's --- test_problems/ChemEquil_gri_pairs/Makefile.in | 657 ------------------ test_problems/ChemEquil_red1/Makefile.in | 657 ------------------ test_problems/CpJump/Makefile.in | 657 ------------------ test_problems/Makefile.am | 5 +- test_problems/NASA9poly_test/Makefile.in | 131 ---- test_problems/VCSnonideal/Makefile.in | 33 - test_problems/VPsilane_test/Makefile.in | 113 --- test_problems/ck2cti_test/Makefile.in | 16 - test_problems/diamondSurf/Makefile.in | 657 ------------------ test_problems/diamondSurf_dupl/Makefile.in | 657 ------------------ test_problems/fracCoeff/Makefile.am | 23 + test_problems/fracCoeff/Makefile.in | 116 ---- test_problems/min_python/Makefile.in | 31 - test_problems/mixGasTransport/Makefile.in | 656 ----------------- test_problems/multiGasTransport/Makefile.in | 124 ---- test_problems/nasa9_reader/Makefile.in | 16 - test_problems/negATest/Makefile.in | 114 --- test_problems/printUtilUnitTest/Makefile.in | 122 ---- test_problems/pureFluidTest/Makefile.in | 115 --- test_problems/python/Makefile.in | 22 - test_problems/rankine_democxx/Makefile.in | 132 ---- test_problems/silane_equil/Makefile.in | 112 --- test_problems/spectroscopy/Makefile.in | 117 ---- test_problems/surfSolverTest/Makefile.in | 123 ---- test_problems/surfkin/Makefile.in | 114 --- 25 files changed, 25 insertions(+), 5495 deletions(-) delete mode 100644 test_problems/ChemEquil_gri_pairs/Makefile.in delete mode 100644 test_problems/ChemEquil_red1/Makefile.in delete mode 100644 test_problems/CpJump/Makefile.in delete mode 100644 test_problems/NASA9poly_test/Makefile.in delete mode 100644 test_problems/VCSnonideal/Makefile.in delete mode 100644 test_problems/VPsilane_test/Makefile.in delete mode 100644 test_problems/ck2cti_test/Makefile.in delete mode 100644 test_problems/diamondSurf/Makefile.in delete mode 100644 test_problems/diamondSurf_dupl/Makefile.in create mode 100644 test_problems/fracCoeff/Makefile.am delete mode 100644 test_problems/fracCoeff/Makefile.in delete mode 100644 test_problems/min_python/Makefile.in delete mode 100644 test_problems/mixGasTransport/Makefile.in delete mode 100644 test_problems/multiGasTransport/Makefile.in delete mode 100644 test_problems/nasa9_reader/Makefile.in delete mode 100644 test_problems/negATest/Makefile.in delete mode 100644 test_problems/printUtilUnitTest/Makefile.in delete mode 100644 test_problems/pureFluidTest/Makefile.in delete mode 100644 test_problems/python/Makefile.in delete mode 100644 test_problems/rankine_democxx/Makefile.in delete mode 100644 test_problems/silane_equil/Makefile.in delete mode 100644 test_problems/spectroscopy/Makefile.in delete mode 100644 test_problems/surfSolverTest/Makefile.in delete mode 100644 test_problems/surfkin/Makefile.in diff --git a/test_problems/ChemEquil_gri_pairs/Makefile.in b/test_problems/ChemEquil_gri_pairs/Makefile.in deleted file mode 100644 index cd2fba0c6..000000000 --- a/test_problems/ChemEquil_gri_pairs/Makefile.in +++ /dev/null @@ -1,657 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = gri_pairs$(EXEEXT) -subdir = test_problems/ChemEquil_gri_pairs -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = gri_pairs.$(OBJEXT) -am_gri_pairs_OBJECTS = $(am__objects_1) -gri_pairs_OBJECTS = $(am_gri_pairs_OBJECTS) -gri_pairs_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(gri_pairs_SOURCES) -DIST_SOURCES = $(gri_pairs_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = gri_pairs.cpp -INC = -I. -I$(top_builddir)/build/include/ -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo \ - -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase \ - -lcvode -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c \ - -lstdc++ -AM_LDFLAGS = -L$(top_builddir)/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -gri_pairs_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/ChemEquil_gri_pairs/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/ChemEquil_gri_pairs/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -gri_pairs$(EXEEXT): $(gri_pairs_OBJECTS) $(gri_pairs_DEPENDENCIES) - @rm -f gri_pairs$(EXEEXT) - $(CXXLINK) $(gri_pairs_OBJECTS) $(gri_pairs_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gri_pairs.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/ChemEquil_red1/Makefile.in b/test_problems/ChemEquil_red1/Makefile.in deleted file mode 100644 index 7695a2bad..000000000 --- a/test_problems/ChemEquil_red1/Makefile.in +++ /dev/null @@ -1,657 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = basopt_red1$(EXEEXT) -subdir = test_problems/ChemEquil_red1 -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = basopt_red1.$(OBJEXT) -am_basopt_red1_OBJECTS = $(am__objects_1) -basopt_red1_OBJECTS = $(am_basopt_red1_OBJECTS) -basopt_red1_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(basopt_red1_SOURCES) -DIST_SOURCES = $(basopt_red1_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = basopt_red1.cpp -INC = -I. -I$(top_builddir)/build/include/ -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo \ - -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase \ - -lcvode -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c \ - -lstdc++ -AM_LDFLAGS = -L$(top_builddir)/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -basopt_red1_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/ChemEquil_red1/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/ChemEquil_red1/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -basopt_red1$(EXEEXT): $(basopt_red1_OBJECTS) $(basopt_red1_DEPENDENCIES) - @rm -f basopt_red1$(EXEEXT) - $(CXXLINK) $(basopt_red1_OBJECTS) $(basopt_red1_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/basopt_red1.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/CpJump/Makefile.in b/test_problems/CpJump/Makefile.in deleted file mode 100644 index ab6b36a94..000000000 --- a/test_problems/CpJump/Makefile.in +++ /dev/null @@ -1,657 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = CpJump$(EXEEXT) -subdir = test_problems/CpJump -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = CpJump.$(OBJEXT) -am_CpJump_OBJECTS = $(am__objects_1) -CpJump_OBJECTS = $(am_CpJump_OBJECTS) -CpJump_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(CpJump_SOURCES) -DIST_SOURCES = $(CpJump_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = CpJump.cpp -INC = -I. -I$(top_builddir)/build/include/ -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo \ - -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase \ - -lcvode -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c \ - -lstdc++ -AM_LDFLAGS = -L$(top_builddir)/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -CpJump_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/CpJump/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/CpJump/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -CpJump$(EXEEXT): $(CpJump_OBJECTS) $(CpJump_DEPENDENCIES) - @rm -f CpJump$(EXEEXT) - $(CXXLINK) $(CpJump_OBJECTS) $(CpJump_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CpJump.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index f75ce1f7e..9cb0d3a6c 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -1,13 +1,12 @@ -#SUBDIRS = surfkin fracCoeff silane_equil VPsilance_test \ +#SUBDIRS = surfkin silane_equil VPsilance_test \ negATest diamondSurf_dupl surfSolverTest \ ChemEquil_gri_matrix ChemEquil_gri_pairs \ mixGasTransport multiGasTransport printUtilUnitTest SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf -SUBDIRS += diamondSurf_dupl - +SUBDIRS += diamondSurf_dupl fracCoeff # # would be good to add: diff --git a/test_problems/NASA9poly_test/Makefile.in b/test_problems/NASA9poly_test/Makefile.in deleted file mode 100644 index da793449f..000000000 --- a/test_problems/NASA9poly_test/Makefile.in +++ /dev/null @@ -1,131 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = NASA9poly_test - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = NASA9poly_test.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Cantera library Dependencies -CANTERA_LIB_DEPS = $(CANTERA_LIBDIR)/liboneD.a \ - $(CANTERA_LIBDIR)/libzeroD.a \ - $(CANTERA_LIBDIR)/libkinetics.a \ - $(CANTERA_LIBDIR)/libtransport.a \ - $(CANTERA_LIBDIR)/libthermo.a \ - $(CANTERA_LIBDIR)/libctnumerics.a \ - $(CANTERA_LIBDIR)/libctbase.a \ - $(CANTERA_LIBDIR)/libctmath.a \ - $(CANTERA_LIBDIR)/libtpx.a \ - $(CANTERA_LIBDIR)/libconverters.a - -ifeq (@build_lapack@, 1) -CANTERA_LAPACK_DEPS = $(CANTERA_LIBDIR)/libctblas.a \ - $(CANTERA_LIBDIR)/libctlapack.a -endif - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: $(PROGRAM) - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIB_DEPS) $(CANTERA_LAPACK_DEPS) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/VCSnonideal/Makefile.in b/test_problems/VCSnonideal/Makefile.in deleted file mode 100644 index 704cb03d3..000000000 --- a/test_problems/VCSnonideal/Makefile.in +++ /dev/null @@ -1,33 +0,0 @@ -# -# $Revision: 1.1 $ -# $Author: hkmoffa $ -# $Date: 2007/12/20 23:47:41 $ -# -# -test_vcs_nonideal=@COMPILE_VCSNONIDEAL@ - - -all: -ifeq ($(test_vcs_nonideal),1) - cd NaCl_equil; @MAKE@ all -endif - -test: -ifeq ($(test_vcs_nonideal),1) - cd NaCl_equil; @MAKE@ -s test -endif - -# -# Have to remove .depends before calling make, because -# the rule for updating .depends is invoked, before the clean rule, -# if .depends exists in the directory. -# -clean: - $(RM) *.*~ - cd NaCl_equil; $(RM) .depends ; @MAKE@ clean - - -depends: -ifeq ($(test_vcs_nonideal),1) - cd NaCl_equil; @MAKE@ depends -endif diff --git a/test_problems/VPsilane_test/Makefile.in b/test_problems/VPsilane_test/Makefile.in deleted file mode 100644 index 7c4fefd3c..000000000 --- a/test_problems/VPsilane_test/Makefile.in +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = VPsilane_test - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = silane_equil.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Dependencies of the static libraries -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: - -$(OBJS): Makefile - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/ck2cti_test/Makefile.in b/test_problems/ck2cti_test/Makefile.in deleted file mode 100644 index 7c29bc16f..000000000 --- a/test_problems/ck2cti_test/Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ -# -# $Revision: 1.2 $ -# $Author: hkmoffa $ -# $Date: 2004/07/29 22:14:56 $ -# -# -all: - -test: - ./runtest - -clean: - ../../bin/rm_cvsignore - -depends: - diff --git a/test_problems/diamondSurf/Makefile.in b/test_problems/diamondSurf/Makefile.in deleted file mode 100644 index 0eb3ff564..000000000 --- a/test_problems/diamondSurf/Makefile.in +++ /dev/null @@ -1,657 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = runDiamond$(EXEEXT) -subdir = test_problems/diamondSurf -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = runDiamond.$(OBJEXT) -am_runDiamond_OBJECTS = $(am__objects_1) -runDiamond_OBJECTS = $(am_runDiamond_OBJECTS) -runDiamond_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(runDiamond_SOURCES) -DIST_SOURCES = $(runDiamond_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = runDiamond.cpp -INC = -I. -I$(top_builddir)/build/include/ -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo \ - -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase \ - -lcvode -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c \ - -lstdc++ -AM_LDFLAGS = -L$(top_builddir)/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -runDiamond_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/diamondSurf/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/diamondSurf/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -runDiamond$(EXEEXT): $(runDiamond_OBJECTS) $(runDiamond_DEPENDENCIES) - @rm -f runDiamond$(EXEEXT) - $(CXXLINK) $(runDiamond_OBJECTS) $(runDiamond_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/runDiamond.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/diamondSurf_dupl/Makefile.in b/test_problems/diamondSurf_dupl/Makefile.in deleted file mode 100644 index 0833106e5..000000000 --- a/test_problems/diamondSurf_dupl/Makefile.in +++ /dev/null @@ -1,657 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = runDiamondDupl$(EXEEXT) -subdir = test_problems/diamondSurf_dupl -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = runDiamondDupl.$(OBJEXT) -am_runDiamondDupl_OBJECTS = $(am__objects_1) -runDiamondDupl_OBJECTS = $(am_runDiamondDupl_OBJECTS) -runDiamondDupl_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(runDiamondDupl_SOURCES) -DIST_SOURCES = $(runDiamondDupl_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = runDiamondDupl.cpp -INC = -I. -I$(top_builddir)/build/include/ -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo \ - -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase \ - -lcvode -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c \ - -lstdc++ -AM_LDFLAGS = -L$(top_builddir)/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -runDiamondDupl_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/diamondSurf_dupl/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/diamondSurf_dupl/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -runDiamondDupl$(EXEEXT): $(runDiamondDupl_OBJECTS) $(runDiamondDupl_DEPENDENCIES) - @rm -f runDiamondDupl$(EXEEXT) - $(CXXLINK) $(runDiamondDupl_OBJECTS) $(runDiamondDupl_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/runDiamondDupl.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/fracCoeff/Makefile.am b/test_problems/fracCoeff/Makefile.am new file mode 100644 index 000000000..2e764696b --- /dev/null +++ b/test_problems/fracCoeff/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = fracCoef.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = fracCoef +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +fracCoef_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/fracCoeff/Makefile.in b/test_problems/fracCoeff/Makefile.in deleted file mode 100644 index a4b2bd09c..000000000 --- a/test_problems/fracCoeff/Makefile.in +++ /dev/null @@ -1,116 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = fracCoeff - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = fracCoeff.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(PURIFY) $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: $(PROGRAM) - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libctbase.a - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/min_python/Makefile.in b/test_problems/min_python/Makefile.in deleted file mode 100644 index b9fe3dffc..000000000 --- a/test_problems/min_python/Makefile.in +++ /dev/null @@ -1,31 +0,0 @@ -# -# $Revision: 1.4 $ -# $Author: hkmoffa $ -# $Date: 2009/07/13 16:51:56 $ -# -# -test_python=@BUILD_PYTHON@ -test_ck=@BUILD_CK@ -test_cathermo=@NEED_CATHERMO@ - -all: - cd minDiamond; @MAKE@ all - cd negATest; @MAKE@ all - -test: - @(echo "***************************************************") - @(echo " Testing the Cantera Minimun Python Interface ") - @(echo " python executable: " `which "${PYTHON_CMD}" 2>&1` ) - @(echo " python version: " `"${PYTHON_CMD}" -V 2>&1` ) - @(echo "***************************************************") - cd minDiamond; @MAKE@ -s test - cd negATest; @MAKE@ -s test - -clean: - $(RM) *.*~ - cd minDiamond; @MAKE@ clean - cd negATest; @MAKE@ clean - -depends: - cd minDiamond; @MAKE@ depends - cd negATest; @MAKE@ depends diff --git a/test_problems/mixGasTransport/Makefile.in b/test_problems/mixGasTransport/Makefile.in deleted file mode 100644 index e5267822b..000000000 --- a/test_problems/mixGasTransport/Makefile.in +++ /dev/null @@ -1,656 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = mixGasTransport$(EXEEXT) -subdir = test_problems/mixGasTransport -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ - $(top_srcdir)/m4/common/ax_split_version.m4 \ - $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -am__objects_1 = mixGasTransport.$(OBJEXT) -am_mixGasTransport_OBJECTS = $(am__objects_1) -mixGasTransport_OBJECTS = $(am_mixGasTransport_OBJECTS) -mixGasTransport_LDADD = $(LDADD) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(mixGasTransport_SOURCES) -DIST_SOURCES = $(mixGasTransport_SOURCES) -ETAGS = etags -CTAGS = ctags -am__tty_colors = \ -red=; grn=; lgn=; blu=; std= -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DX_CONFIG = @DX_CONFIG@ -DX_DOCDIR = @DX_DOCDIR@ -DX_DOT = @DX_DOT@ -DX_DOXYGEN = @DX_DOXYGEN@ -DX_DVIPS = @DX_DVIPS@ -DX_EGREP = @DX_EGREP@ -DX_ENV = @DX_ENV@ -DX_FLAG_chi = @DX_FLAG_chi@ -DX_FLAG_chm = @DX_FLAG_chm@ -DX_FLAG_doc = @DX_FLAG_doc@ -DX_FLAG_dot = @DX_FLAG_dot@ -DX_FLAG_html = @DX_FLAG_html@ -DX_FLAG_man = @DX_FLAG_man@ -DX_FLAG_pdf = @DX_FLAG_pdf@ -DX_FLAG_ps = @DX_FLAG_ps@ -DX_FLAG_rtf = @DX_FLAG_rtf@ -DX_FLAG_xml = @DX_FLAG_xml@ -DX_HHC = @DX_HHC@ -DX_LATEX = @DX_LATEX@ -DX_MAKEINDEX = @DX_MAKEINDEX@ -DX_PDFLATEX = @DX_PDFLATEX@ -DX_PERL = @DX_PERL@ -DX_PROJECT = @DX_PROJECT@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FC = @FC@ -FCFLAGS = @FCFLAGS@ -FFLAGS = @FFLAGS@ -FGREP = @FGREP@ -GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ -GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ -GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ -GENERIC_RELEASE = @GENERIC_RELEASE@ -GENERIC_VERSION = @GENERIC_VERSION@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = $(LINK) -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_FC = @ac_ct_FC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -cc_sources = mixGasTransport.cpp -INC = -I. -I$(top_builddir)/build/include/ -g -AM_CPPFLAGS = $(INC) -AM_CXXFLAGS = $(AM_CPPFLAGS) -LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport \ - -lthermo -lctnumerics -lctmath -ltpx -lctspectra -lconverters \ - -lctbase -lcvode -lctlapack -lctblas -lctf2c -lm -lstdc++ -AM_LDFLAGS = -L$(top_builddir)/build/lib/ -library_includedir = $(INC) - -#----------------------- -# Cantera DH graph test -#----------------------- -mixGasTransport_SOURCES = $(cc_sources) -TESTS_ENVIRONMENT = -TESTS = runtest -all: all-am - -.SUFFIXES: -.SUFFIXES: .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/mixGasTransport/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu test_problems/mixGasTransport/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -mixGasTransport$(EXEEXT): $(mixGasTransport_OBJECTS) $(mixGasTransport_DEPENDENCIES) - @rm -f mixGasTransport$(EXEEXT) - $(CXXLINK) $(mixGasTransport_OBJECTS) $(mixGasTransport_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mixGasTransport.Po@am__quote@ - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - $(am__tty_colors); \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - col=$$red; res=XPASS; \ - ;; \ - *) \ - col=$$grn; res=PASS; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *[\ \ ]$$tst[\ \ ]*) \ - xfail=`expr $$xfail + 1`; \ - col=$$lgn; res=XFAIL; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - col=$$red; res=FAIL; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - col=$$blu; res=SKIP; \ - fi; \ - echo "$${col}$$res$${std}: $$tst"; \ - done; \ - if test "$$all" -eq 1; then \ - tests="test"; \ - All=""; \ - else \ - tests="tests"; \ - All="All "; \ - fi; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="$$All$$all $$tests passed"; \ - else \ - if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ - banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all $$tests failed"; \ - else \ - if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ - banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - if test "$$skip" -eq 1; then \ - skipped="($$skip test was not run)"; \ - else \ - skipped="($$skip tests were not run)"; \ - fi; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - if test "$$failed" -eq 0; then \ - echo "$$grn$$dashes"; \ - else \ - echo "$$red$$dashes"; \ - fi; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes$$std"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-binPROGRAMS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/test_problems/multiGasTransport/Makefile.in b/test_problems/multiGasTransport/Makefile.in deleted file mode 100644 index 951247869..000000000 --- a/test_problems/multiGasTransport/Makefile.in +++ /dev/null @@ -1,124 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = multiGasTransport - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = multiGasTransport.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Cantera library Dependencies -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -ifeq (@build_lapack@, 1) -CANTERA_LAPACK_DEPS = $(CANTERA_LIBDIR)/libctblas.a \ - $(CANTERA_LIBDIR)/libctlapack.a -endif - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(PURIFY) $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: .depends $(PROGRAM) - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIB_DEPS) $(CANTERA_LAPACK_DEPS) - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/nasa9_reader/Makefile.in b/test_problems/nasa9_reader/Makefile.in deleted file mode 100644 index 13c5104ab..000000000 --- a/test_problems/nasa9_reader/Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ -# -# $Revision: 1.1 $ -# $Author: hkmoffa $ -# $Date: 2007/09/13 15:12:46 $ -# -# -all: - -test: - ./runtest - -clean: - ../../bin/rm_cvsignore - -depends: - diff --git a/test_problems/negATest/Makefile.in b/test_problems/negATest/Makefile.in deleted file mode 100644 index bd11bd1b4..000000000 --- a/test_problems/negATest/Makefile.in +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = negATest - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = negATest.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: $(PROGRAM) .depends - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libctbase.a - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a -$(OBJS): Makefile - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/printUtilUnitTest/Makefile.in b/test_problems/printUtilUnitTest/Makefile.in deleted file mode 100644 index f4f9cd77b..000000000 --- a/test_problems/printUtilUnitTest/Makefile.in +++ /dev/null @@ -1,122 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = pUtest - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = pUtest.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Cantera library Dependencies -CANTERA_LIB_DEPS = @LOCAL_LIBS_DEP@ - -ifeq (@build_lapack@, 1) -CANTERA_LAPACK_DEPS = $(CANTERA_LIBDIR)/libctblas.a \ - $(CANTERA_LIBDIR)/libctlapack.a -endif - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: $(PROGRAM) - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIB_DEPS) $(CANTERA_LAPACK_DEPS) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/pureFluidTest/Makefile.in b/test_problems/pureFluidTest/Makefile.in deleted file mode 100644 index b87b12f8a..000000000 --- a/test_problems/pureFluidTest/Makefile.in +++ /dev/null @@ -1,115 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = testPureWater - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = testPureWater.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -PURIFY=@PURIFY@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = -L$(CANTERA_LIBDIR) @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera -INCLUDES=-I$(CANTERA_INCDIR) -I$(CANTERA_INCDIR)/kernel @CXX_INCLUDES@ - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = @CXXFLAGS@ @LOCAL_LIB_DIRS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< $(INCLUDES) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(INCLUDES) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libctbase.a \ - $(CANTERA_LIBDIR)/libthermo.a - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - @MAKE@ .depends - -.depends: $(DEPENDS) - cat $(DEPENDS) > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/python/Makefile.in b/test_problems/python/Makefile.in deleted file mode 100644 index 7689c8e8e..000000000 --- a/test_problems/python/Makefile.in +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -# test target -> make the program and run the test -test: - ./runtest @PYTHON_CMD@ - @cd tut1; ./runtest @PYTHON_CMD@ - @cd tut2; ./runtest @PYTHON_CMD@ - @cd tut3; ./runtest @PYTHON_CMD@ - @cd tut4; ./runtest @PYTHON_CMD@ - @cd flame1; ./runtest @PYTHON_CMD@ - -# clean target -> clean up -clean: - ../../bin/rm_cvsignore - cd tut1; ./cleanup - cd tut2; ./cleanup - cd tut3; ./cleanup - cd tut4; ./cleanup - cd flame1; ./cleanup - -depends: - diff --git a/test_problems/rankine_democxx/Makefile.in b/test_problems/rankine_democxx/Makefile.in deleted file mode 100644 index 19a4a97af..000000000 --- a/test_problems/rankine_democxx/Makefile.in +++ /dev/null @@ -1,132 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# Addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = rankine - -# The object files to be linked together. -OBJS = rankine.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -# This variable determines whether we are making this example in the -# build tree environment or in the install tree environment. -in_CanteraBuildTree = 1 - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# the directory where Cantera include files may be found. -ifeq ($(in_CanteraBuildTree),1) -CANTERA_INCROOTDIR=@ctroot@/build/include -else -CANTERA_INCROOTDIR=@ct_incroot@ -endif -CANTERA_INCLUDES=-I$(CANTERA_INCROOTDIR) -I$(CANTERA_INCROOTDIR)/cantera - -# LOCAL_DEFS = -DDEBUG_CHEMEQUIL -# LOCAL_DEFS = -DEBUG_BASISOPTIMIZE -# -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(CANTERA_INCLUDES) $(LOCAL_DEFS) @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -ifeq ($(in_CanteraBuildTree),1) -CANTERA_LIBDIR=@buildlib@ -else -CANTERA_LIBDIR=@ct_libdir@ -endif - -# required Cantera libraries -CANTERA_LIBS = -L$(CANTERA_LIBDIR) @LOCAL_LIBS@ -lctcxx - -ifeq ($(in_CanteraBuildTree),1) -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a -else -CANTERA_LIBS_DEP = @INSTALL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a -endif -# -# Alternate form of dependencies: (uses a gnu make extensions) -ALT_LIBS_DEP := $(addprefix $(CANTER_LIBDIR), @RAW_LIBS_DEP@ libctcxx.a) - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = @CXXFLAGS@ @LOCAL_LIB_DIRS@ - -# How to compile C++ source files to object files -.cpp.o: - $(CXX) -c $< -I$(CANTERA_INCDIR) $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -$(OBJS): Makefile - -# -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif diff --git a/test_problems/silane_equil/Makefile.in b/test_problems/silane_equil/Makefile.in deleted file mode 100644 index 9fb9af396..000000000 --- a/test_problems/silane_equil/Makefile.in +++ /dev/null @@ -1,112 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = silane_equil - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = silane_equil.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -PURIFY=@PURIFY@ - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: - $(PURIFY) $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: .depends $(PROGRAM) - -$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libctbase.a - $(PURIFY) $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - diff --git a/test_problems/spectroscopy/Makefile.in b/test_problems/spectroscopy/Makefile.in deleted file mode 100644 index 9a2cfaa93..000000000 --- a/test_problems/spectroscopy/Makefile.in +++ /dev/null @@ -1,117 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -.SUFFIXES : .d -# the name of the executable program to be created -PROG_NAME = spectratest - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = spectratest.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ -lctcxx - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# Cantera library Dependencies -CANTERA_LIB_DEPS = $(CANTERA_LIBDIR)/libtransport.a \ - $(CANTERA_LIBDIR)/libthermo.a \ - $(CANTERA_LIBDIR)/libctspectra.a \ - $(CANTERA_LIBDIR)/libctnumerics.a \ - $(CANTERA_LIBDIR)/libctbase.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -DEPENDS=$(OBJS:.o=.d) - -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) - -$(PROGRAM): $(OBJS) $(CANTERA_LIB_DEPS) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; fi ) - - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/surfSolverTest/Makefile.in b/test_problems/surfSolverTest/Makefile.in deleted file mode 100644 index c3e454b9b..000000000 --- a/test_problems/surfSolverTest/Makefile.in +++ /dev/null @@ -1,123 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -# addition to suffixes -.SUFFIXES : .d - -# the name of the executable program to be created -PROG_NAME = surfaceSolver - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = surfaceSolver.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@ - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# Cantera library Dependencies -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# How to compile C++ source files to object files -.cpp.o: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) surfaceSolver2.d - -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -# all rule makes a single program -all: $(PROGRAM) surfaceSolver2 .depends - -# Rule to make the program -$(PROGRAM): $(OBJS) $(CANTERA_LIB_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -surfaceSolver2: surfaceSolver2.o $(CANTERA_LIB_DEP) - $(CXX) -o surfaceSolver2 surfaceSolver2.o $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS) surfaceSolver2.o : $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a -$(OBJS) surfaceSolver2.o : Makefile - -# depends target -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @ @MAKE@ -s $(PROGRAM) -endif - @ ./runtest - @ ./runtest2 - -# clean target -> clean up -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends surfaceSolver2 *.o - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - diff --git a/test_problems/surfkin/Makefile.in b/test_problems/surfkin/Makefile.in deleted file mode 100644 index 121ed2127..000000000 --- a/test_problems/surfkin/Makefile.in +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh - -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# - -.SUFFIXES : .d -# the name of the executable program to be created -PROG_NAME = surfdemo - -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = surfdemo.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = @EXTRA_LINK@ - -############################################################################# - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler -CXX = @CXX@ - -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ - -# external libraries -EXT_LIBS = @LOCAL_LIBS@ -lctcxx - -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ - -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ - -# required Cantera libraries -CANTERA_LIBS = @LOCAL_LIBS@ -lctcxx - -CANTERA_LIBS_DEP = @LOCAL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - -# the directory where Cantera include files may be found. -CANTERA_INCDIR=@ctroot@/build/include/cantera - -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@ - -# how to compile C++ source files to object files -.@CXX_EXT@.@OBJ_EXT@: Interface.h - $(CXX) -c $< -I$(CANTERA_INCDIR) @CXX_INCLUDES@ $(CXX_FLAGS) - -DEPENDS=$(OBJS:.o=.d) - -%.d: %.o - @CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d - - -PROGRAM = $(PROG_NAME)$(EXE_EXT) - -all: $(PROGRAM) .depends - -$(PROGRAM): $(OBJS) $(CANTERA_LIBS_DEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) \ - $(LCXX_END_LIBS) - -# Add an additional target for stability: -$(OBJS): $(CANTERA_LIBDIR)/libctbase.a $(CANTERA_LIBDIR)/libthermo.a - - -depends: - $(RM) *.d .depends - @MAKE@ .depends - -.depends: $(DEPENDS) - cat *.d > .depends - -$(OBJS): Makefile - -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest - -clean: - $(RM) $(OBJS) $(PROGRAM) .depends *.d - ../../bin/rm_cvsignore - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; fi ) - - - -ifeq ($(wildcard .depends), .depends) -include .depends -endif - - From 343906be99aa808b6e0225bdeff12ccd41a523b9 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 16:44:16 +0000 Subject: [PATCH 105/124] [cantera]: adding fracCoeff tests --- configure.ac | 1 + test_problems/fracCoeff/Makefile.am | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 20a9dabd2..70cea94da 100644 --- a/configure.ac +++ b/configure.ac @@ -99,6 +99,7 @@ AC_OUTPUT(Makefile \ test_problems/cxx_ex/Makefile \ test_problems/diamondSurf/Makefile \ test_problems/diamondSurf_dupl/Makefile \ + test_problems/fracCoeff/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ diff --git a/test_problems/fracCoeff/Makefile.am b/test_problems/fracCoeff/Makefile.am index 2e764696b..96c8e3b78 100644 --- a/test_problems/fracCoeff/Makefile.am +++ b/test_problems/fracCoeff/Makefile.am @@ -1,4 +1,4 @@ -cc_sources = fracCoef.cpp +cc_sources = fracCoeff.cpp INC = -I. -I$(top_builddir)/build/include/ AM_CPPFLAGS = $(INC) @@ -10,14 +10,14 @@ LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ AM_LDFLAGS = -L$(top_builddir)/build/lib/ LIBS = $(LINK) -bin_PROGRAMS = fracCoef +bin_PROGRAMS = fracCoeff library_includedir = $(INC) #----------------------- -# Cantera DH graph test +# Cantera fraccoeff tests #----------------------- -fracCoef_SOURCES = $(cc_sources) +fracCoeff_SOURCES = $(cc_sources) TESTS_ENVIRONMENT = TESTS = runtest From 26f81ad26a36e0bf08f9336c1bbc3971f6172794 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 16:47:30 +0000 Subject: [PATCH 106/124] [cantera]: adding multigastransport test --- configure.ac | 1 + test_problems/Makefile.am | 4 ++-- test_problems/multiGasTransport/Makefile.am | 23 +++++++++++++++++++ .../multiGasTransport/multiGasTransport.cpp | 2 +- 4 files changed, 27 insertions(+), 3 deletions(-) create mode 100644 test_problems/multiGasTransport/Makefile.am diff --git a/configure.ac b/configure.ac index 70cea94da..eef8cc8ac 100644 --- a/configure.ac +++ b/configure.ac @@ -100,6 +100,7 @@ AC_OUTPUT(Makefile \ test_problems/diamondSurf/Makefile \ test_problems/diamondSurf_dupl/Makefile \ test_problems/fracCoeff/Makefile \ + test_problems/multiGasTransport/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 9cb0d3a6c..43b2852f5 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -2,11 +2,11 @@ #SUBDIRS = surfkin silane_equil VPsilance_test \ negATest diamondSurf_dupl surfSolverTest \ ChemEquil_gri_matrix ChemEquil_gri_pairs \ - mixGasTransport multiGasTransport printUtilUnitTest + mixGasTransport printUtilUnitTest SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf -SUBDIRS += diamondSurf_dupl fracCoeff +SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport # # would be good to add: diff --git a/test_problems/multiGasTransport/Makefile.am b/test_problems/multiGasTransport/Makefile.am new file mode 100644 index 000000000..280b44c5c --- /dev/null +++ b/test_problems/multiGasTransport/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = multiGasTransport.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = multiGasTransport +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +multiGasTransport_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/multiGasTransport/multiGasTransport.cpp b/test_problems/multiGasTransport/multiGasTransport.cpp index e2f6ddc9e..c3d261eb3 100644 --- a/test_problems/multiGasTransport/multiGasTransport.cpp +++ b/test_problems/multiGasTransport/multiGasTransport.cpp @@ -36,7 +36,7 @@ using namespace std; #include "transport.h" #include "IdealGasMix.h" -#include "kernel/TransportFactory.h" +#include "TransportFactory.h" using namespace Cantera; using namespace Cantera_CXX; From 259ee0c852ed22bdd8b5155a2ea746c896d5da1b Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 16:49:49 +0000 Subject: [PATCH 107/124] [cantera]: adding nasa9 diff poly test --- configure.ac | 1 + test_problems/Makefile.am | 2 +- test_problems/NASA9poly_test/Makefile.am | 23 +++++++++++++++++++ .../NASA9poly_test/NASA9poly_test.cpp | 2 +- 4 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 test_problems/NASA9poly_test/Makefile.am diff --git a/configure.ac b/configure.ac index eef8cc8ac..eafa164bd 100644 --- a/configure.ac +++ b/configure.ac @@ -101,6 +101,7 @@ AC_OUTPUT(Makefile \ test_problems/diamondSurf_dupl/Makefile \ test_problems/fracCoeff/Makefile \ test_problems/multiGasTransport/Makefile \ + test_problems/NASA9poly_test/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 43b2852f5..12438679c 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -6,7 +6,7 @@ SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf -SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport +SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport NASA9poly_test # # would be good to add: diff --git a/test_problems/NASA9poly_test/Makefile.am b/test_problems/NASA9poly_test/Makefile.am new file mode 100644 index 000000000..2861aa81d --- /dev/null +++ b/test_problems/NASA9poly_test/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = NASA9poly_test.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = NASA9poly_test +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +NASA9poly_test_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/NASA9poly_test/NASA9poly_test.cpp b/test_problems/NASA9poly_test/NASA9poly_test.cpp index 55a2acdcd..5d8937e97 100644 --- a/test_problems/NASA9poly_test/NASA9poly_test.cpp +++ b/test_problems/NASA9poly_test/NASA9poly_test.cpp @@ -24,7 +24,7 @@ using namespace std; #include "transport.h" #include "IdealGasMix.h" -#include "kernel/TransportFactory.h" +#include "TransportFactory.h" using namespace Cantera; using namespace Cantera_CXX; From fc617190c9940a11bd66acdfd65a5d3bc1a732ed Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 16:56:09 +0000 Subject: [PATCH 108/124] [cantera]: adding negAtest and skipping nasa9 reader for now --- configure.ac | 3 +++ test_problems/Makefile.am | 7 ++++--- test_problems/nasa9_reader/Makefile.am | 1 + test_problems/nasa9_reader/{runtest.in => runtest} | 2 ++ test_problems/negATest/runtest | 2 ++ 5 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 test_problems/nasa9_reader/Makefile.am rename test_problems/nasa9_reader/{runtest.in => runtest} (98%) diff --git a/configure.ac b/configure.ac index eafa164bd..d5a980252 100644 --- a/configure.ac +++ b/configure.ac @@ -101,6 +101,7 @@ AC_OUTPUT(Makefile \ test_problems/diamondSurf_dupl/Makefile \ test_problems/fracCoeff/Makefile \ test_problems/multiGasTransport/Makefile \ + test_problems/negATest/Makefile \ test_problems/NASA9poly_test/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ @@ -152,7 +153,9 @@ AC_OUTPUT(Makefile \ examples/Makefile \ examples/cxx/Makefile) +# skipped tests # test_problems/ck2cti/Makefile +# test_problems/nasa9_reader/Makefile # FINAL SUMMARY diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 12438679c..4de188647 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -1,12 +1,13 @@ #SUBDIRS = surfkin silane_equil VPsilance_test \ - negATest diamondSurf_dupl surfSolverTest \ + diamondSurf_dupl surfSolverTest \ ChemEquil_gri_matrix ChemEquil_gri_pairs \ mixGasTransport printUtilUnitTest SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport NASA9poly_test +SUBDIRS += negATest # # would be good to add: @@ -15,14 +16,14 @@ SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport NASA9poly_test # rankine_democxx # min_python # -# nasa9_reader +# # cathermo # VCSnonideal # skipped: # ck2cti_test - +# nasa9_reader (uses ck2cti) EXTRA_DIST = diff --git a/test_problems/nasa9_reader/Makefile.am b/test_problems/nasa9_reader/Makefile.am new file mode 100644 index 000000000..1773e7087 --- /dev/null +++ b/test_problems/nasa9_reader/Makefile.am @@ -0,0 +1 @@ +TESTS = runtest \ No newline at end of file diff --git a/test_problems/nasa9_reader/runtest.in b/test_problems/nasa9_reader/runtest similarity index 98% rename from test_problems/nasa9_reader/runtest.in rename to test_problems/nasa9_reader/runtest index 2811d162e..a7df09c83 100755 --- a/test_problems/nasa9_reader/runtest.in +++ b/test_problems/nasa9_reader/runtest @@ -30,6 +30,7 @@ retnStat=$? if [ $retnStat = "0" ] then echo "Successful diff comparison on ck2cti test (nasa9_reader/sample.inp)" + return 0 else echo "########################################################" echo "Unsuccessful diff comparison on ck2cti test (nasa9_reader/sample.inp)" @@ -38,4 +39,5 @@ else echo " test_problems/nasa9_reader/sampleb.cti" echo " test_problems/nasa9_reader/sample_blessed.cti" echo "########################################################" + return 1 fi diff --git a/test_problems/negATest/runtest b/test_problems/negATest/runtest index 2bce01d44..922586252 100755 --- a/test_problems/negATest/runtest +++ b/test_problems/negATest/runtest @@ -26,9 +26,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on $testName test" + return 0 else echo "unsuccessful diff comparison on $testName test" echo "FAILED" > csvCode.txt temp_success="1" + return 1 fi # From 86fd453daa1d838e0b05a6e009f777ffb9d87c1b Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 17:00:01 +0000 Subject: [PATCH 109/124] [cantera]: adding printU test --- configure.ac | 1 + test_problems/Makefile.am | 18 ++-------------- test_problems/printUtilUnitTest/Makefile.am | 23 +++++++++++++++++++++ test_problems/printUtilUnitTest/pUtest.cpp | 4 ++-- test_problems/printUtilUnitTest/runtest | 2 ++ 5 files changed, 30 insertions(+), 18 deletions(-) create mode 100644 test_problems/printUtilUnitTest/Makefile.am diff --git a/configure.ac b/configure.ac index d5a980252..c1f76ae82 100644 --- a/configure.ac +++ b/configure.ac @@ -103,6 +103,7 @@ AC_OUTPUT(Makefile \ test_problems/multiGasTransport/Makefile \ test_problems/negATest/Makefile \ test_problems/NASA9poly_test/Makefile \ + test_problems/printUtilUnitTest/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 4de188647..a8829d8f8 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -1,25 +1,11 @@ #SUBDIRS = surfkin silane_equil VPsilance_test \ - diamondSurf_dupl surfSolverTest \ - ChemEquil_gri_matrix ChemEquil_gri_pairs \ - mixGasTransport printUtilUnitTest + diamondSurf_dupl surfSolverTest SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport NASA9poly_test -SUBDIRS += negATest - -# -# would be good to add: -# -# pureFluidTest -# rankine_democxx -# min_python -# -# -# cathermo -# VCSnonideal - +SUBDIRS += negATest printUtilUnitTest # skipped: # ck2cti_test diff --git a/test_problems/printUtilUnitTest/Makefile.am b/test_problems/printUtilUnitTest/Makefile.am new file mode 100644 index 000000000..7b824815e --- /dev/null +++ b/test_problems/printUtilUnitTest/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = pUtest.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = pUtest +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +pUtest_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/printUtilUnitTest/pUtest.cpp b/test_problems/printUtilUnitTest/pUtest.cpp index 59b59a5dc..763babf66 100644 --- a/test_problems/printUtilUnitTest/pUtest.cpp +++ b/test_problems/printUtilUnitTest/pUtest.cpp @@ -7,8 +7,8 @@ #include #include "Cantera.h" -#include "kernel/PrintCtrl.h" -#include "kernel/LogPrintCtrl.h" +#include "PrintCtrl.h" +#include "LogPrintCtrl.h" using namespace Cantera; using namespace std; diff --git a/test_problems/printUtilUnitTest/runtest b/test_problems/printUtilUnitTest/runtest index dbbc2ba6d..4e6b0bf6d 100755 --- a/test_problems/printUtilUnitTest/runtest +++ b/test_problems/printUtilUnitTest/runtest @@ -26,9 +26,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on $tname test" + return 0 else echo "unsuccessful diff comparison on $tname test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi From aa02a1a6992d4e76dc682fa2a442f34518ad9e79 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 17:11:49 +0000 Subject: [PATCH 110/124] [cantera]: adding pure fluid test --- Cantera/cxx/include/PureFluid.h | 4 ++-- ChangeLog | 1 + configure.ac | 1 + test_problems/Makefile.am | 3 ++- test_problems/pureFluidTest/Makefile.am | 23 +++++++++++++++++++++++ test_problems/pureFluidTest/runtest | 2 ++ 6 files changed, 31 insertions(+), 3 deletions(-) create mode 100644 test_problems/pureFluidTest/Makefile.am diff --git a/Cantera/cxx/include/PureFluid.h b/Cantera/cxx/include/PureFluid.h index ce7ec4c9e..91b7ca8ed 100644 --- a/Cantera/cxx/include/PureFluid.h +++ b/Cantera/cxx/include/PureFluid.h @@ -6,9 +6,9 @@ #include -#include "kernel/PureFluidPhase.h" +#include "PureFluidPhase.h" #include "kinetics.h" -#include "kernel/stringUtils.h" +#include "stringUtils.h" namespace Cantera { diff --git a/ChangeLog b/ChangeLog index a43a08899..c6cb9b751 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ 2011-11-10 15:09 nick * major overhaul of build system to use GNU autotools + * make check now supports nearly all tests 2008-01-07 15:02 hkmoffa diff --git a/configure.ac b/configure.ac index c1f76ae82..6c57c7541 100644 --- a/configure.ac +++ b/configure.ac @@ -104,6 +104,7 @@ AC_OUTPUT(Makefile \ test_problems/negATest/Makefile \ test_problems/NASA9poly_test/Makefile \ test_problems/printUtilUnitTest/Makefile \ + test_problems/pureFluidTest/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index a8829d8f8..11e3f1f05 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -5,11 +5,12 @@ SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport NASA9poly_test -SUBDIRS += negATest printUtilUnitTest +SUBDIRS += negATest printUtilUnitTest pureFluidTest # skipped: # ck2cti_test # nasa9_reader (uses ck2cti) +# python EXTRA_DIST = diff --git a/test_problems/pureFluidTest/Makefile.am b/test_problems/pureFluidTest/Makefile.am new file mode 100644 index 000000000..94d5fb54e --- /dev/null +++ b/test_problems/pureFluidTest/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = testPureWater.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = testPureWater +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +testPureWater_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/pureFluidTest/runtest b/test_problems/pureFluidTest/runtest index 1e805529a..5f00f43ef 100755 --- a/test_problems/pureFluidTest/runtest +++ b/test_problems/pureFluidTest/runtest @@ -25,9 +25,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on $testName test" + return 0 else echo "unsuccessful diff comparison on $testName test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi From 483bcab744531362016554ded85872546643385e Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 17:29:32 +0000 Subject: [PATCH 111/124] [cantera]: adding silane_equil test --- configure.ac | 2 ++ test_problems/Makefile.am | 6 ++++-- test_problems/rankine_democxx/Makefile.am | 23 +++++++++++++++++++++++ test_problems/rankine_democxx/rankine.cpp | 4 ++-- test_problems/rankine_democxx/runtest | 3 +++ test_problems/silane_equil/Makefile.am | 23 +++++++++++++++++++++++ test_problems/silane_equil/runtest | 2 ++ 7 files changed, 59 insertions(+), 4 deletions(-) create mode 100644 test_problems/rankine_democxx/Makefile.am create mode 100644 test_problems/silane_equil/Makefile.am diff --git a/configure.ac b/configure.ac index 6c57c7541..86a196d57 100644 --- a/configure.ac +++ b/configure.ac @@ -105,6 +105,7 @@ AC_OUTPUT(Makefile \ test_problems/NASA9poly_test/Makefile \ test_problems/printUtilUnitTest/Makefile \ test_problems/pureFluidTest/Makefile \ + test_problems/silane_equil/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ @@ -158,6 +159,7 @@ AC_OUTPUT(Makefile \ # skipped tests # test_problems/ck2cti/Makefile # test_problems/nasa9_reader/Makefile +# test_problems/rankine_democxx/Makefile \ # FINAL SUMMARY diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 11e3f1f05..408d9ad5d 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -1,16 +1,18 @@ -#SUBDIRS = surfkin silane_equil VPsilance_test \ +#SUBDIRS = surfkin VPsilance_test \ diamondSurf_dupl surfSolverTest SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport NASA9poly_test -SUBDIRS += negATest printUtilUnitTest pureFluidTest +SUBDIRS += negATest printUtilUnitTest pureFluidTest silane_equil + # skipped: # ck2cti_test # nasa9_reader (uses ck2cti) # python +# rankine_democxx EXTRA_DIST = diff --git a/test_problems/rankine_democxx/Makefile.am b/test_problems/rankine_democxx/Makefile.am new file mode 100644 index 000000000..2c6362af4 --- /dev/null +++ b/test_problems/rankine_democxx/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = rankine.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = rankine +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +rankine_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/rankine_democxx/rankine.cpp b/test_problems/rankine_democxx/rankine.cpp index be637aaa6..ea4ed1b5f 100644 --- a/test_problems/rankine_democxx/rankine.cpp +++ b/test_problems/rankine_democxx/rankine.cpp @@ -3,8 +3,8 @@ #include #include -#include -#include // defines class Water +#include +#include // defines class Water using namespace Cantera; using namespace std; diff --git a/test_problems/rankine_democxx/runtest b/test_problems/rankine_democxx/runtest index ecebf0c49..f25678108 100755 --- a/test_problems/rankine_democxx/runtest +++ b/test_problems/rankine_democxx/runtest @@ -18,6 +18,7 @@ if test $retnStat != "0" then temp_success="0" echo "$testName returned with bad status, $retnStat, check output" + exit 1 fi diff -w output.txt output_blessed.txt > diff_test.out @@ -25,9 +26,11 @@ retnStat=$? if test $retnStat = "0" then echo "successful diff comparison on $testName test" + return 0 else echo "unsuccessful diff comparison on $testName test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi diff --git a/test_problems/silane_equil/Makefile.am b/test_problems/silane_equil/Makefile.am new file mode 100644 index 000000000..4b8e65eef --- /dev/null +++ b/test_problems/silane_equil/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = silane_equil.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = silane_equil +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +silane_equil_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/silane_equil/runtest b/test_problems/silane_equil/runtest index adb5f75ff..b6fcd134f 100755 --- a/test_problems/silane_equil/runtest +++ b/test_problems/silane_equil/runtest @@ -24,9 +24,11 @@ retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on silane_equil test" + return 0 else echo "unsuccessful diff comparison on silane_equil test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi From 2f197f0dc07aa60e01b194da3866bc2d23894fe4 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 17:45:05 +0000 Subject: [PATCH 112/124] [cantera]: adding and updating spectra tests --- Cantera/cxx/include/spectra.h | 4 +- configure.ac | 1 + test_problems/Makefile.am | 1 + test_problems/spectroscopy/Makefile.am | 23 ++++++++++ test_problems/spectroscopy/spectratest.cpp | 52 ++++++++++++++++++++-- 5 files changed, 76 insertions(+), 5 deletions(-) create mode 100644 test_problems/spectroscopy/Makefile.am diff --git a/Cantera/cxx/include/spectra.h b/Cantera/cxx/include/spectra.h index 58ccdac61..fa5adaab7 100644 --- a/Cantera/cxx/include/spectra.h +++ b/Cantera/cxx/include/spectra.h @@ -1,8 +1,8 @@ #ifndef CT_SPECTRA_H_INCL #define CT_SECTRA_H_INCL -#include "kernel/LineBroadener.h" -#include "kernel/rotor.h" +#include "LineBroadener.h" +#include "rotor.h" //#include "kernel/AbsorptionLine.h" #endif diff --git a/configure.ac b/configure.ac index 86a196d57..663ceb582 100644 --- a/configure.ac +++ b/configure.ac @@ -106,6 +106,7 @@ AC_OUTPUT(Makefile \ test_problems/printUtilUnitTest/Makefile \ test_problems/pureFluidTest/Makefile \ test_problems/silane_equil/Makefile \ + test_problems/spectroscopy/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 408d9ad5d..557d589ae 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -6,6 +6,7 @@ SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport NASA9poly_test SUBDIRS += negATest printUtilUnitTest pureFluidTest silane_equil +SUBDIRS += spectroscopy # skipped: diff --git a/test_problems/spectroscopy/Makefile.am b/test_problems/spectroscopy/Makefile.am new file mode 100644 index 000000000..e6e24fc42 --- /dev/null +++ b/test_problems/spectroscopy/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = spectratest.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = spectroscopy +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +spectroscopy_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = spectroscopy diff --git a/test_problems/spectroscopy/spectratest.cpp b/test_problems/spectroscopy/spectratest.cpp index 35790f660..9c453f43d 100644 --- a/test_problems/spectroscopy/spectratest.cpp +++ b/test_problems/spectroscopy/spectratest.cpp @@ -1,7 +1,16 @@ +/** + * @file spectratest.cpp + * + * $Author: $ + * $Date: 2007/05/04 15:18:45 $ + * $Revision: 1.3 $ + * + * nick adding more useful on 2/7/12 + */ #include "Cantera.h" #include "spectra.h" -#include "kernel/Nuclei.h" +#include "Nuclei.h" #include using namespace std; using namespace CanteraSpectra; @@ -13,6 +22,11 @@ int main() { if (*a == *b) { cout << "a and b and indistinguishable" << endl; } + else + { + cout << "\nwhy are a and b not indistinguishable?\n"; + return 1; + } // test line broading classes double gam = 2.0e0; @@ -32,10 +46,42 @@ int main() { sumg += gaus->profile(nu)*dnu; sum += voig->profile(nu)*dnu; sumlor += lor->profile(nu)*dnu; - cout << nu << ", " << (*lor)(nu) << ", " << (*gaus)(nu) - << ", " << (*voig)(nu) << endl; + //cout << nu << ", " << (*lor)(nu) << ", " << (*gaus)(nu) + // << ", " << (*voig)(nu) << endl; } + + /* old output cout << "Voigt area = " << sum << endl; cout << "Gaussian area = " << sumg << endl; cout << "Lorentzian area = " << sumlor << endl; + */ + + // 'blessed' output: + // Voigt area = 0.99363 + // Gaussian area = 1 + // Lorentzian area = 0.993634 + + // guessing a sane tolerance + double TOL = .0001; + + if(abs(sum-.99363) > TOL) + { + cout << "\nVOIGT AREA REGRESSION TEST FAILURE\n"; + return 1; + } + + if(abs(sumg-1.0) > TOL) + { + cout << "\nGAUSSIAN AREA REGRESSION TEST FAILURE\n"; + return 1; + } + if(abs(sumlor-.993634) > TOL) + { + cout << "\nLORENTZIAN AREA REGRESSION TEST FAILURE\n"; + return 1; + } + + // steady as she goes + return 0; + } From da16edb98bf7fdf5fa1b143f8f611dfb3e3a4159 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 17:48:01 +0000 Subject: [PATCH 113/124] [cantera]: adding surfkin test --- configure.ac | 1 + test_problems/Makefile.am | 4 ++-- test_problems/surfkin/Makefile.am | 23 +++++++++++++++++++++++ test_problems/surfkin/runtest | 3 ++- 4 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 test_problems/surfkin/Makefile.am diff --git a/configure.ac b/configure.ac index 663ceb582..758b12da9 100644 --- a/configure.ac +++ b/configure.ac @@ -107,6 +107,7 @@ AC_OUTPUT(Makefile \ test_problems/pureFluidTest/Makefile \ test_problems/silane_equil/Makefile \ test_problems/spectroscopy/Makefile \ + test_problems/surfkin/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 557d589ae..7cc24c5ef 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -1,12 +1,12 @@ -#SUBDIRS = surfkin VPsilance_test \ +#SUBDIRS = VPsilance_test \ diamondSurf_dupl surfSolverTest SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport NASA9poly_test SUBDIRS += negATest printUtilUnitTest pureFluidTest silane_equil -SUBDIRS += spectroscopy +SUBDIRS += spectroscopy surfkin # skipped: diff --git a/test_problems/surfkin/Makefile.am b/test_problems/surfkin/Makefile.am new file mode 100644 index 000000000..18d793ea6 --- /dev/null +++ b/test_problems/surfkin/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = surfdemo.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = surfdemo +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +surfdemo_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/surfkin/runtest b/test_problems/surfkin/runtest index 5ad51209f..460789937 100755 --- a/test_problems/surfkin/runtest +++ b/test_problems/surfkin/runtest @@ -19,15 +19,16 @@ then echo "surfdemo returned with bad status, $retnStat, check output" fi - diff -w output.txt output_blessed.txt > diff_test.out retnStat=$? if [ $retnStat = "0" ] then echo "successful diff comparison on surfkin test" + return 0 else echo "unsuccessful diff comparison on surfkin test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi From 71e9c26375ff14bc5b2a966c5f7a2b1ad9e387fb Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 17:58:44 +0000 Subject: [PATCH 114/124] [cantera]: adding all cantera tests in surfSolverTest --- configure.ac | 1 + test_problems/Makefile.am | 8 +++--- test_problems/surfSolverTest/Makefile.am | 25 +++++++++++++++++++ test_problems/surfSolverTest/runtest | 5 +++- test_problems/surfSolverTest/runtest2 | 4 +++ .../surfSolverTest/surfaceSolver.cpp | 4 +-- .../surfSolverTest/surfaceSolver2.cpp | 4 +-- 7 files changed, 41 insertions(+), 10 deletions(-) create mode 100644 test_problems/surfSolverTest/Makefile.am diff --git a/configure.ac b/configure.ac index 758b12da9..171b5d305 100644 --- a/configure.ac +++ b/configure.ac @@ -108,6 +108,7 @@ AC_OUTPUT(Makefile \ test_problems/silane_equil/Makefile \ test_problems/spectroscopy/Makefile \ test_problems/surfkin/Makefile \ + test_problems/surfSolverTest/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 7cc24c5ef..cce21848e 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -1,15 +1,13 @@ -#SUBDIRS = VPsilance_test \ - diamondSurf_dupl surfSolverTest +#SUBDIRS = VPsilance_test VCSnonideal SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport NASA9poly_test SUBDIRS += negATest printUtilUnitTest pureFluidTest silane_equil -SUBDIRS += spectroscopy surfkin +SUBDIRS += spectroscopy surfkin surfSolverTest - -# skipped: +# skipped (uses ck2cti or python): # ck2cti_test # nasa9_reader (uses ck2cti) # python diff --git a/test_problems/surfSolverTest/Makefile.am b/test_problems/surfSolverTest/Makefile.am new file mode 100644 index 000000000..c7cf5b769 --- /dev/null +++ b/test_problems/surfSolverTest/Makefile.am @@ -0,0 +1,25 @@ +cc_sources = surfaceSolver.cpp +cc2_sources = surfaceSolver2.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = surfaceSolver surfaceSolver2 +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +surfaceSolver_SOURCES = $(cc_sources) +surfaceSolver2_SOURCES = $(cc2_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest runtest2 diff --git a/test_problems/surfSolverTest/runtest b/test_problems/surfSolverTest/runtest index 1f1ed8cfd..b54b19154 100755 --- a/test_problems/surfSolverTest/runtest +++ b/test_problems/surfSolverTest/runtest @@ -31,19 +31,22 @@ then if [ $retnStat_txt != "0" ] then echo " But, text output files have differences. See diff_out.txt" + return 1 fi else echo "Unsuccessful test comparison on "`pwd` " test" if test $retnStat_csv != "0" then echo " results files are different - see diff_csv.txt" + return 1 fi if test $retnStat_txt != "0" then echo " And, text output files have differences. See diff_out.txt" + return 1 fi fi - +return 0 diff --git a/test_problems/surfSolverTest/runtest2 b/test_problems/surfSolverTest/runtest2 index 76ca39fca..304d2cd0c 100755 --- a/test_problems/surfSolverTest/runtest2 +++ b/test_problems/surfSolverTest/runtest2 @@ -31,17 +31,21 @@ then if [ $retnStat_txt != "0" ] then echo " But, text output files have differences. See diff_2out.txt" + return 1 fi else echo "Unsuccessful test comparison on "`pwd` " test" if test $retnStat_csv != "0" then echo " results files are different - see diff_2csv.txt" + return 1 fi if test $retnStat_txt != "0" then echo " And, text output files have differences. See diff_2out.txt" + return 1 fi fi +return 0 diff --git a/test_problems/surfSolverTest/surfaceSolver.cpp b/test_problems/surfSolverTest/surfaceSolver.cpp index 3474a45e5..4f0ea189d 100644 --- a/test_problems/surfSolverTest/surfaceSolver.cpp +++ b/test_problems/surfSolverTest/surfaceSolver.cpp @@ -38,8 +38,8 @@ static void printUsage() #include "Interface.h" #include "kinetics.h" -#include "kernel/ImplicitSurfChem.h" -#include "kernel/solveSP.h" +#include "ImplicitSurfChem.h" +#include "solveSP.h" using namespace Cantera; diff --git a/test_problems/surfSolverTest/surfaceSolver2.cpp b/test_problems/surfSolverTest/surfaceSolver2.cpp index 7794fd926..56149008a 100644 --- a/test_problems/surfSolverTest/surfaceSolver2.cpp +++ b/test_problems/surfSolverTest/surfaceSolver2.cpp @@ -37,8 +37,8 @@ static void printUsage() #include "Interface.h" #include "kinetics.h" -#include "kernel/ImplicitSurfChem.h" -#include "kernel/solveSP.h" +#include "ImplicitSurfChem.h" +#include "solveSP.h" using namespace Cantera; From ad8587763fc27e47a8177f8bb469350ff008dd92 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 18:02:56 +0000 Subject: [PATCH 115/124] [cantera]: adding VPsilane test --- configure.ac | 1 + test_problems/Makefile.am | 4 ++-- test_problems/VPsilane_test/Makefile.am | 23 +++++++++++++++++++ .../VPsilane_test/{runtest.in => runtest} | 2 ++ test_problems/VPsilane_test/silane_equil.cpp | 6 ++--- 5 files changed, 31 insertions(+), 5 deletions(-) create mode 100644 test_problems/VPsilane_test/Makefile.am rename test_problems/VPsilane_test/{runtest.in => runtest} (97%) diff --git a/configure.ac b/configure.ac index 171b5d305..9c9595a6d 100644 --- a/configure.ac +++ b/configure.ac @@ -109,6 +109,7 @@ AC_OUTPUT(Makefile \ test_problems/spectroscopy/Makefile \ test_problems/surfkin/Makefile \ test_problems/surfSolverTest/Makefile \ + test_problems/VPsilane_test/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index cce21848e..8cb22867b 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -1,11 +1,11 @@ -#SUBDIRS = VPsilance_test VCSnonideal +#SUBDIRS = VCSnonideal SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport NASA9poly_test SUBDIRS += negATest printUtilUnitTest pureFluidTest silane_equil -SUBDIRS += spectroscopy surfkin surfSolverTest +SUBDIRS += spectroscopy surfkin surfSolverTest VPsilane_test # skipped (uses ck2cti or python): # ck2cti_test diff --git a/test_problems/VPsilane_test/Makefile.am b/test_problems/VPsilane_test/Makefile.am new file mode 100644 index 000000000..efdc073c5 --- /dev/null +++ b/test_problems/VPsilane_test/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = silane_equil.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS =VPsilane_test +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +VPsilane_test_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/VPsilane_test/runtest.in b/test_problems/VPsilane_test/runtest similarity index 97% rename from test_problems/VPsilane_test/runtest.in rename to test_problems/VPsilane_test/runtest index 474603001..ebace70ee 100755 --- a/test_problems/VPsilane_test/runtest.in +++ b/test_problems/VPsilane_test/runtest @@ -31,9 +31,11 @@ fi if [ $retnStat = "0" ] then echo "successful diff comparison on VPsilane_test test" + return 0 else echo "unsuccessful diff comparison on VPsilane_test test" echo "FAILED" > csvCode.txt temp_success="0" + return 1 fi diff --git a/test_problems/VPsilane_test/silane_equil.cpp b/test_problems/VPsilane_test/silane_equil.cpp index cead069de..c64f5ec64 100644 --- a/test_problems/VPsilane_test/silane_equil.cpp +++ b/test_problems/VPsilane_test/silane_equil.cpp @@ -11,9 +11,9 @@ #include "Cantera.h" #include "IdealGasMix.h" #include "equilibrium.h" -#include "kernel/IdealSolnGasVPSS.h" -#include "kernel/ThermoFactory.h" -#include "kernel/PrintCtrl.h" +#include "IdealSolnGasVPSS.h" +#include "ThermoFactory.h" +#include "PrintCtrl.h" using namespace std; using namespace Cantera; From 2e519973ea50f17b55c6bb226e4920294b4bf697 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 19:00:48 +0000 Subject: [PATCH 116/124] [cantera]: all done with tests, adding -u flag to some copy commands, and tidying up --- Cantera/ext/f2c_libs/Makefile.am | 2 +- Cantera/src/equil/Makefile.am | 41 +- configure.ac | 4 +- test_problems/Makefile.am | 4 +- test_problems/VCSnonideal/Makefile.am | 1 + .../VCSnonideal/NaCl_equil/Makefile.am | 23 + .../VCSnonideal/NaCl_equil/Makefile.in | 733 +++++++++++++++--- .../VCSnonideal/NaCl_equil/nacl_equil.cpp | 12 +- 8 files changed, 701 insertions(+), 119 deletions(-) create mode 100644 test_problems/VCSnonideal/Makefile.am create mode 100644 test_problems/VCSnonideal/NaCl_equil/Makefile.am diff --git a/Cantera/ext/f2c_libs/Makefile.am b/Cantera/ext/f2c_libs/Makefile.am index 234868e93..e82959b15 100644 --- a/Cantera/ext/f2c_libs/Makefile.am +++ b/Cantera/ext/f2c_libs/Makefile.am @@ -55,7 +55,7 @@ all: @echo copying headers $< cp -u sysdep1.h0 sysdep1.h cp -u signal1.h0 signal1.h - cp $(h_sources) $(top_builddir)/build/include/ + cp -u $(h_sources) $(top_builddir)/build/include/ __top_builddir__build_lib_libctf2c_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libctf2c_la_SOURCES = $(cc_sources) $(h_sources) diff --git a/Cantera/src/equil/Makefile.am b/Cantera/src/equil/Makefile.am index 3ccb35403..c94af37b5 100644 --- a/Cantera/src/equil/Makefile.am +++ b/Cantera/src/equil/Makefile.am @@ -1,11 +1,38 @@ -h_sources = ChemEquil.h MultiPhase.h MultiPhaseEquil.h equil.h \ - PropertyCalculator.h +h_sources = ChemEquil.h PropertyCalculator.h vcs_internal.h \ + equil.h vcs_defs.h vcs_IntStarStar.h vcs_SpeciesProperties.h \ + MultiPhaseEquil.h vcs_DoubleStarStar.h vcs_MultiPhaseEquil.h vcs_species_thermo.h \ + MultiPhase.h vcs_Exception.h vcs_prob.h vcs_VolPhase.h \ + vcs_solve.h -cc_sources = BasisOptimize.cpp ChemEquil.cpp MultiPhase.cpp \ - MultiPhaseEquil.cpp equilibrate.cpp +#ChemEquil.h MultiPhase.h MultiPhaseEquil.h equil.h \ + PropertyCalculator.h vcs_equilibrate.h \ + vcs_MultiPhaseEquil.h vcs_VolPhase.h vcs_DoubleStarStar.h \ + vcs_prob.h vcs_SpeciesProperties.h vcs_internal.h \ + vcs_species_thermo.h vcs_TP.h vcs_util.h vcs_VolPhase.h \ + vcs_MultiPhaseEquil.h -AM_CPPFLAGS = -I../base -I../thermo -I../numerics -I../../../ -AM_CPPFLAGS += -I../../../ext/f2c_libs/ +cc_sources = BasisOptimize.cpp vcs_Gibbs.cpp vcs_root1d.cpp \ + ChemEquil.cpp vcs_rxnadj.cpp vcs_TP.cpp \ + equilibrate.cpp vcs_IntStarStar.cpp vcs_setMolesLinProg.cpp \ + MultiPhase.cpp vcs_MultiPhaseEquil.cpp vcs_solve.cpp \ + MultiPhaseEquil.cpp vcs_nondim.cpp vcs_solve_TP.cpp \ + vcs_DoubleStarStar.cpp vcs_phaseStability.cpp vcs_SpeciesProperties.cpp \ + vcs_elem.cpp vcs_prep.cpp vcs_species_thermo.cpp \ + vcs_elem_rearrange.cpp vcs_prob.cpp vcs_inest.cpp \ + vcs_equilibrate.cpp vcs_rearrange.cpp vcs_util.cpp \ + vcs_Exception.cpp vcs_report.cpp vcs_VolPhase.cpp \ + vcs_linmaxc.cpp vcs_dbocls.c vcs_dbolsm.c vcs_dbols.c vcs_dvout.c \ + vcs_ivout.c vcs_dmout.c vcs_xerror.c + +#BasisOptimize.cpp ChemEquil.cpp MultiPhase.cpp \ + MultiPhaseEquil.cpp equilibrate.cpp vcs_equilibrate.cpp \ + vcs_MultiPhaseEquil.cpp vcs_VolPhase.cpp \ + vcs_DoubleStarStar.cpp vcs_prob.cpp \ + vcs_SpeciesProperties.cpp vcs_MultiPhaseEquil.cpp \ + vcs_species_thermo.cpp vcs_TP.cpp vcs_util.cpp \ + vcs_VolPhase.cpp + +AM_CPPFLAGS = -I$(top_builddir)/build/include AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libequil.la @@ -21,4 +48,4 @@ __top_builddir__build_lib_libequil_la_SOURCES = $(cc_sources) $(h_sources) # header file accumulation all: @echo copying headers $< - cp -u $(h_sources) $(top_builddir)/build/include/ + cp -u *.h $(top_builddir)/build/include/ diff --git a/configure.ac b/configure.ac index 9c9595a6d..a21a485eb 100644 --- a/configure.ac +++ b/configure.ac @@ -110,6 +110,7 @@ AC_OUTPUT(Makefile \ test_problems/surfkin/Makefile \ test_problems/surfSolverTest/Makefile \ test_problems/VPsilane_test/Makefile \ + test_problems/VCSnonideal/Makefile \ test_problems/cathermo/Makefile \ test_problems/cathermo/DH_graph_1/Makefile \ test_problems/cathermo/DH_graph_acommon/Makefile \ @@ -163,7 +164,8 @@ AC_OUTPUT(Makefile \ # skipped tests # test_problems/ck2cti/Makefile # test_problems/nasa9_reader/Makefile -# test_problems/rankine_democxx/Makefile \ +# test_problems/rankine_democxx/Makefile +# test_problems/VCSnonideal/NaCl_equil/Makefile # FINAL SUMMARY diff --git a/test_problems/Makefile.am b/test_problems/Makefile.am index 8cb22867b..9d9eceb04 100644 --- a/test_problems/Makefile.am +++ b/test_problems/Makefile.am @@ -1,17 +1,17 @@ -#SUBDIRS = VCSnonideal - SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport NASA9poly_test SUBDIRS += negATest printUtilUnitTest pureFluidTest silane_equil SUBDIRS += spectroscopy surfkin surfSolverTest VPsilane_test +SUBDIRS += VCSnonideal # skipped (uses ck2cti or python): # ck2cti_test # nasa9_reader (uses ck2cti) # python # rankine_democxx +# VCSnonideal (unsure of problem) EXTRA_DIST = diff --git a/test_problems/VCSnonideal/Makefile.am b/test_problems/VCSnonideal/Makefile.am new file mode 100644 index 000000000..ce5c90005 --- /dev/null +++ b/test_problems/VCSnonideal/Makefile.am @@ -0,0 +1 @@ +#SUBDIRS = NaCl_equil \ No newline at end of file diff --git a/test_problems/VCSnonideal/NaCl_equil/Makefile.am b/test_problems/VCSnonideal/NaCl_equil/Makefile.am new file mode 100644 index 000000000..8906088b8 --- /dev/null +++ b/test_problems/VCSnonideal/NaCl_equil/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = nacl_equil.cpp + +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = nacl_equil +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +nacl_equil_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest diff --git a/test_problems/VCSnonideal/NaCl_equil/Makefile.in b/test_problems/VCSnonideal/NaCl_equil/Makefile.in index 9b24dbd03..5bf6eb2a3 100644 --- a/test_problems/VCSnonideal/NaCl_equil/Makefile.in +++ b/test_problems/VCSnonideal/NaCl_equil/Makefile.in @@ -1,128 +1,657 @@ -#!/bin/sh +# Makefile.in generated by automake 1.11.1 from Makefile.am. +# @configure_input@ -############################################################################ -# -# Makefile to compile and link a C++ application to -# Cantera. -# -############################################################################# +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# addition to suffixes -.SUFFIXES : .d +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. -# the name of the executable program to be created -PROG_NAME = nacl_equil +@SET_MAKE@ -# the object files to be linked together. List those generated from Fortran -# and from C/C++ separately -OBJS = nacl_equil.o - -# additional flags to be passed to the linker. If your program -# requires other external libraries, put them here -LINK_OPTIONS = - -############################################################################# - -on_DEBUG_MODE=@CANTERA_DEBUG_MODE@ - -# Check to see whether we are in the msvc++ environment -os_is_win = @OS_IS_WIN@ - -# Fortran libraries -ifeq (@build_with_f2c@, 0) -FORT_LIBS = @FLIBS@ -else -FORT_LIBS = -endif - -# the C++ compiler +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = nacl_equil$(EXEEXT) +subdir = test_problems/VCSnonideal/NaCl_equil +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/common/ax_prog_doxygen.m4 \ + $(top_srcdir)/m4/common/ax_split_version.m4 \ + $(top_srcdir)/m4/config_summary.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = nacl_equil.$(OBJEXT) +am_nacl_equil_OBJECTS = $(am__objects_1) +nacl_equil_OBJECTS = $(am_nacl_equil_OBJECTS) +nacl_equil_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(nacl_equil_SOURCES) +DIST_SOURCES = $(nacl_equil_SOURCES) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ -# -# The directory where Cantera include files may be found. -# -CANTERA_INCDIR=@ctroot@/build/include/cantera +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FC = @FC@ +FCFLAGS = @FCFLAGS@ +FFLAGS = @FFLAGS@ +FGREP = @FGREP@ +GENERIC_MAJOR_VERSION = @GENERIC_MAJOR_VERSION@ +GENERIC_MICRO_VERSION = @GENERIC_MICRO_VERSION@ +GENERIC_MINOR_VERSION = @GENERIC_MINOR_VERSION@ +GENERIC_RELEASE = @GENERIC_RELEASE@ +GENERIC_VERSION = @GENERIC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = $(LINK) +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DESCRIPTION = @PACKAGE_DESCRIPTION@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_FC = @ac_ct_FC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +lt_ECHO = @lt_ECHO@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +cc_sources = nacl_equil.cpp +INC = -I. -I$(top_builddir)/build/include/ +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) +LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo \ + -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase \ + -lcvode -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c \ + -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +library_includedir = $(INC) -INCLUDE_DIRS = -I$(CANTERA_INCDIR) +#----------------------- +# Cantera DH graph test +#----------------------- +nacl_equil_SOURCES = $(cc_sources) +TESTS_ENVIRONMENT = +TESTS = runtest +all: all-am -# C++ compile flags -CXX_FLAGS = @CXXFLAGS@ $(INCLUDE_DIRS) @CXX_INCLUDES@ +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test_problems/VCSnonideal/NaCl_equil/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu test_problems/VCSnonideal/NaCl_equil/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; -# Ending C++ linking libraries -LCXX_END_LIBS = @LCXX_END_LIBS@ +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -# the directory where the Cantera libraries are located -CANTERA_LIBDIR=@buildlib@ -# -# Setup The Cantera Interface -# -CANTERA_LIBS= @LOCAL_LIBS@ -lctcxx +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done -CANTERA_LIBDEP = \ - $(CANTERA_LIBDIR)/libequil.a \ - $(CANTERA_LIBDIR)/libVCSnonideal.a \ - $(CANTERA_LIBDIR)/libkinetics.a \ - $(CANTERA_LIBDIR)/libtransport.a \ - $(CANTERA_LIBDIR)/libthermo.a \ - $(CANTERA_LIBDIR)/libctnumerics.a \ - $(CANTERA_LIBDIR)/libctmath.a \ - $(CANTERA_LIBDIR)/libtpx.a \ - $(CANTERA_LIBDIR)/libconverters.a \ - $(CANTERA_LIBDIR)/libctbase.a \ - $(CANTERA_LIBDIR)/libctlapack.a \ - $(CANTERA_LIBDIR)/libctblas.a \ - $(CANTERA_LIBDIR)/libctcxx.a +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +nacl_equil$(EXEEXT): $(nacl_equil_OBJECTS) $(nacl_equil_DEPENDENCIES) + @rm -f nacl_equil$(EXEEXT) + $(CXXLINK) $(nacl_equil_OBJECTS) $(nacl_equil_LDADD) $(LIBS) -# flags passed to the C++ compiler/linker for the linking step -LCXX_FLAGS = @CXXFLAGS@ @LOCAL_LIB_DIRS@ +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nacl_equil.Po@am__quote@ -# How to compile C++ source files to object files .cpp.o: - @CXX@ $(CXX_FLAGS) -c $< +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -# How to compile the dependency file -.cpp.d: - @CXX_DEPENDS@ $(CXX_FLAGS) $*.cpp > $*.d +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -# List of dependency files to be created -DEPENDS=$(OBJS:.o=.d) +.cpp.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< -# Program Name -PROGRAM = $(PROG_NAME)$(EXE_EXT) +mostlyclean-libtool: + -rm -f *.lo -all: .depends $(PROGRAM) +clean-libtool: + -rm -rf .libs _libs -$(PROGRAM): $(OBJS) $(CANTERA_LIBDEP) - $(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(LINK_OPTIONS) \ - $(CANTERA_LIBS) @LIBS@ $(FORT_LIBS) $(LCXX_END_LIBS) +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS -# depends target -> forces recalculation of dependencies -depends: - $(RM) *.d .depends - @MAKE@ .depends +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique -.depends: $(DEPENDS) - cat *.d > .depends +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" -# Do the test -> For the windows vc++ environment, we have to skip checking on -# whether the program is uptodate, because we don't utilize make -# in that environment to build programs. -test: -ifeq ($(os_is_win), 1) -else - @MAKE@ $(PROGRAM) -endif - ./runtest +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -clean: - $(RM) $(OBJS) $(PROGRAM) $(DEPENDS) .depends diff.out out.txt \ - diff_csv.txt diff_out.txt err_out.txt vcs_equilibrate_res.csv - (if test -d SunWS_cache ; then \ - $(RM) -rf SunWS_cache ; \ - fi ) +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + echo "$$grn$$dashes"; \ + else \ + echo "$$red$$dashes"; \ + fi; \ + echo "$$banner"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ + echo "$$dashes$$std"; \ + test "$$failed" -eq 0; \ + else :; fi -ifeq ($(wildcard .depends), .depends) -include .depends -endif +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/test_problems/VCSnonideal/NaCl_equil/nacl_equil.cpp b/test_problems/VCSnonideal/NaCl_equil/nacl_equil.cpp index de88f1ebd..efdb3044b 100644 --- a/test_problems/VCSnonideal/NaCl_equil/nacl_equil.cpp +++ b/test_problems/VCSnonideal/NaCl_equil/nacl_equil.cpp @@ -9,13 +9,13 @@ #include "Cantera.h" #include "equilibrium.h" -#include "kernel/vcs_MultiPhaseEquil.h" -#include "kernel/vcs_internal.h" +#include "vcs_MultiPhaseEquil.h" +#include "vcs_internal.h" -#include "kernel/ThermoFactory.h" -#include "kernel/IdealGasPhase.h" -#include "kernel/HMWSoln.h" -#include "kernel/StoichSubstanceSSTP.h" +#include "ThermoFactory.h" +#include "IdealGasPhase.h" +#include "HMWSoln.h" +#include "StoichSubstanceSSTP.h" using namespace Cantera; using namespace std; From 0e03383cf0dbc4f091c914c091786e8b9e222af2 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 7 Feb 2012 20:07:30 +0000 Subject: [PATCH 117/124] [cantera]: oops, missing makefile.am --- test_problems/negATest/Makefile.am | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test_problems/negATest/Makefile.am diff --git a/test_problems/negATest/Makefile.am b/test_problems/negATest/Makefile.am new file mode 100644 index 000000000..4bb8ff193 --- /dev/null +++ b/test_problems/negATest/Makefile.am @@ -0,0 +1,23 @@ +cc_sources = negATest.cpp + +INC = -I. -I$(top_builddir)/build/include/ -g +AM_CPPFLAGS = $(INC) +AM_CXXFLAGS = $(AM_CPPFLAGS) + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ +AM_LDFLAGS = -L$(top_builddir)/build/lib/ +LIBS = $(LINK) + +bin_PROGRAMS = negATest +library_includedir = $(INC) + +#----------------------- +# Cantera DH graph test +#----------------------- + +negATest_SOURCES = $(cc_sources) + +TESTS_ENVIRONMENT = +TESTS = runtest From 1ab9bc6deb1af0e0285a725804c0872d342ca1ac Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Wed, 8 Feb 2012 17:00:14 +0000 Subject: [PATCH 118/124] [cantera]: adding pkdgconfig support (I think) --- Makefile.am | 9 +++++++-- cantera.pc.in | 22 ++++++++++++++++++++++ configure.ac | 3 ++- 3 files changed, 31 insertions(+), 3 deletions(-) create mode 100644 cantera.pc.in diff --git a/Makefile.am b/Makefile.am index 3b2df6997..9509f8fd0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5,8 +5,13 @@ SUBDIRS = Cantera tools test_problems SUBDIRS += doxygen examples # Distribute these directories: -DIST_SUBDIRS = Cantera examples +DISTDIRS = Cantera examples # generated documentation will be included in distributed archive -EXTRA_DIST= bootstrap $(DX_CONFIG) +EXTRA_DIST = bootstrap $(DX_CONFIG) +EXTRA_DIST += AUTHORS README + +# Support for pkgconfig +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = cantera.pc diff --git a/cantera.pc.in b/cantera.pc.in new file mode 100644 index 000000000..95b788f1e --- /dev/null +++ b/cantera.pc.in @@ -0,0 +1,22 @@ +# @PACKAGE_NAME@ installation details +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ +# Fortran compilation and linking information +# Retrieve these using `pkg-config --variable=name @PACKAGE_NAME@` +fflags=-I@libdir@ +flibs=-L@libdir@ -lf@PACKAGE_NAME@ -l@PACKAGE_NAME@ + +Name: @PACKAGE_NAME@ +Description: @PACKAGE_DESCRIPTION@ +URL: @PACKAGE_URL@ +Requires: +Version: @VERSION@ + +LINK = -lctcxx -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo +LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode +LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ + +Libs: -L${libdir} ${LINK} +Cflags: -I${includedir} diff --git a/configure.ac b/configure.ac index a21a485eb..0b1edcb3a 100644 --- a/configure.ac +++ b/configure.ac @@ -159,7 +159,8 @@ AC_OUTPUT(Makefile \ Cantera/src/spectra/Makefile Cantera/src/zeroD/Makefile \ Cantera/src/equil/Makefile \ examples/Makefile \ - examples/cxx/Makefile) + examples/cxx/Makefile \ + cantera.pc) # skipped tests # test_problems/ck2cti/Makefile From 2c19a43fec5abab45a7b3b595c098705b9b93578 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 9 Feb 2012 20:28:27 +0000 Subject: [PATCH 119/124] [cantera]: fixing configure line error --- Cantera/src/base/Makefile.am | 5 ++++- config.h.in | 2 +- configure.ac | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Cantera/src/base/Makefile.am b/Cantera/src/base/Makefile.am index 688dc57bd..bb72fd831 100644 --- a/Cantera/src/base/Makefile.am +++ b/Cantera/src/base/Makefile.am @@ -14,7 +14,7 @@ AM_CXXFLAGS = $(AM_CPPFLAGS) lib_LTLIBRARIES = $(top_builddir)/build/lib/libctbase.la library_includedir = $(top_builddir)/build/include -library_include_HEADERS = $(h_sources) +library_include_HEADERS = utilities.h otherincludedir = $(top_builddir)/build/include/cantera/kernel otherinclude_HEADERS = $(h_sources) @@ -26,6 +26,9 @@ otherinclude_HEADERS = $(h_sources) __top_builddir__build_lib_libctbase_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libctbase_la_SOURCES = $(cc_sources) $(h_sources) +__top_builddir__build_lib_libctbase_include = $(h_sources) +__top_builddir__build_lib_libctbase_includedir = $(prefix)/include + # header file accumulation -- only copy if file updated! all: diff --git a/config.h.in b/config.h.in index c0218cee4..6181f8b67 100755 --- a/config.h.in +++ b/config.h.in @@ -57,7 +57,7 @@ /* Define to add underscore after fortran functions */ #undef LAPACK_FTN_TRAILING_UNDERSCORE -/* Define to lapack functions lowercase */ +/* Define to make lapack functions lowercase */ #undef LAPACK_NAMES_LOWERCASE /* Define to the sub-directory in which libtool stores uninstalled libraries. diff --git a/configure.ac b/configure.ac index 0b1edcb3a..ccad871e0 100644 --- a/configure.ac +++ b/configure.ac @@ -32,8 +32,8 @@ AC_DEFINE([LAPACK_FTN_TRAILING_UNDERSCORE],1,[Define to add underscore after for LAPACK_FTN_TRAILING_UNDERSCORE=1 AC_DEFINE([FTN_TRAILING_UNDERSCORE],1,[Define to add underscore after fortran functions]) FTN_TRAILING_UNDERSCORE=1 -AC_DEFINE([LAPACK_NAMES_LOWERCASE],1,[Define to lapack functions lowercase]) -LAPACK_NAMES_LOWERCASE 1 +AC_DEFINE([LAPACK_NAMES_LOWERCASE],1,[Define to make lapack functions lowercase]) +LAPACK_NAMES_LOWERCASE=1 AC_DEFINE([LAPACK_FTN_STRING_LEN_AT_END],1,[Define to add string to end of lapack functions]) LAPACK_FTN_STRING_LEN_AT_END=1 From 3a3657275ba9bb7791d5ae322e07b68ee5d50d3e Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 9 Feb 2012 21:03:06 +0000 Subject: [PATCH 120/124] [cantera]: fixing 'make install' -- thanks to Todd Oliver's sharp eyes on this one. --- Cantera/cxx/src/Makefile.am | 6 ++++++ Cantera/ext/cvode/Makefile.am | 3 +++ Cantera/ext/f2c_blas/Makefile.am | 4 ++++ Cantera/ext/f2c_lapack/Makefile.am | 4 ++++ Cantera/ext/f2c_libs/Makefile.am | 4 ++++ Cantera/ext/f2c_math/Makefile.am | 4 ++++ Cantera/ext/tpx/Makefile.am | 4 ++++ Cantera/src/base/Makefile.am | 5 ++--- Cantera/src/converters/Makefile.am | 4 ++++ Cantera/src/equil/Makefile.am | 6 +++++- Cantera/src/kinetics/Makefile.am | 4 ++++ Cantera/src/numerics/Makefile.am | 3 +++ Cantera/src/oneD/Makefile.am | 3 +++ Cantera/src/thermo/Makefile.am | 2 ++ Cantera/src/transport/Makefile.am | 6 +++++- Cantera/src/zeroD/Makefile.am | 3 +++ 16 files changed, 60 insertions(+), 5 deletions(-) diff --git a/Cantera/cxx/src/Makefile.am b/Cantera/cxx/src/Makefile.am index a01693752..af723bf44 100644 --- a/Cantera/cxx/src/Makefile.am +++ b/Cantera/cxx/src/Makefile.am @@ -1,3 +1,5 @@ +h_sources = + cc_sources = importPhase.cpp AM_CPPFLAGS = -I$(top_builddir)/build/include @@ -14,6 +16,10 @@ library_include_HEADERS = $(h_sources) __top_builddir__build_lib_libctcxx_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libctcxx_la_SOURCES = $(cc_sources) $(h_sources) +__top_builddir__build_lib_libctcxx_include_HEADERS = $(h_sources) +__top_builddir__build_lib_libctcxx_includedir = $(prefix)/include + + # header file accumulation all: @echo copying headers $< diff --git a/Cantera/ext/cvode/Makefile.am b/Cantera/ext/cvode/Makefile.am index dfef74fbd..21f7f9802 100644 --- a/Cantera/ext/cvode/Makefile.am +++ b/Cantera/ext/cvode/Makefile.am @@ -21,6 +21,9 @@ library_include_HEADERS = $(h_sources) __top_builddir__build_lib_libcvode_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libcvode_la_SOURCES = $(fc_sources) $(cc_sources) +__top_builddir__build_lib_libcvode_include_HEADERS = $(h_sources) +__top_builddir__build_lib_libcvode_includedir = $(prefix)/include + CLEANFILES = *.o # header file accumulation diff --git a/Cantera/ext/f2c_blas/Makefile.am b/Cantera/ext/f2c_blas/Makefile.am index 108d15c26..c80242f58 100644 --- a/Cantera/ext/f2c_blas/Makefile.am +++ b/Cantera/ext/f2c_blas/Makefile.am @@ -57,6 +57,10 @@ library_include_HEADERS = $(h_sources) __top_builddir__build_lib_libctblas_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libctblas_la_SOURCES = $(cc_sources) $(h_sources) +__top_builddir__build_lib_libctblas_include_HEADERS = $(h_sources) +__top_builddir__build_lib_libctblas_includedir = $(prefix)/include + + CLEANFILES = *.o # header file accumulation diff --git a/Cantera/ext/f2c_lapack/Makefile.am b/Cantera/ext/f2c_lapack/Makefile.am index 019a47083..5ee31aad4 100644 --- a/Cantera/ext/f2c_lapack/Makefile.am +++ b/Cantera/ext/f2c_lapack/Makefile.am @@ -24,6 +24,10 @@ library_include_HEADERS = $(h_sources) __top_builddir__build_lib_libctlapack_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libctlapack_la_SOURCES = $(cc_sources) $(h_sources) +__top_builddir__build_lib_libctlapack_include_HEADERS = $(h_sources) +__top_builddir__build_lib_libctlapack_includedir = $(prefix)/include + + CLEANFILES = *.o # header file accumulation diff --git a/Cantera/ext/f2c_libs/Makefile.am b/Cantera/ext/f2c_libs/Makefile.am index e82959b15..b503c634a 100644 --- a/Cantera/ext/f2c_libs/Makefile.am +++ b/Cantera/ext/f2c_libs/Makefile.am @@ -60,4 +60,8 @@ all: __top_builddir__build_lib_libctf2c_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libctf2c_la_SOURCES = $(cc_sources) $(h_sources) +__top_builddir__build_lib_libctf2c_include_HEADERS = $(h_sources) +__top_builddir__build_lib_libctf2c_includedir = $(prefix)/include + + CLEANFILES = *.o diff --git a/Cantera/ext/f2c_math/Makefile.am b/Cantera/ext/f2c_math/Makefile.am index f63e27ecc..8fcada505 100644 --- a/Cantera/ext/f2c_math/Makefile.am +++ b/Cantera/ext/f2c_math/Makefile.am @@ -39,6 +39,10 @@ library_include_HEADERS = $(h_sources) __top_builddir__build_lib_libctmath_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libctmath_la_SOURCES = $(cc_sources) $(h_sources) +__top_builddir__build_lib_libctmath_include_HEADERS = $(h_sources) +__top_builddir__build_lib_libctmath_includedir = $(prefix)/include + + CLEANFILES = *.o # header file accumulation diff --git a/Cantera/ext/tpx/Makefile.am b/Cantera/ext/tpx/Makefile.am index c03d7284a..03a9971b4 100644 --- a/Cantera/ext/tpx/Makefile.am +++ b/Cantera/ext/tpx/Makefile.am @@ -18,6 +18,10 @@ library_include_HEADERS = $(h_sources) __top_builddir__build_lib_libtpx_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libtpx_la_SOURCES = $(cc_sources) $(h_sources) +__top_builddir__build_lib_libtpx_include_HEADERS = $(h_sources) +__top_builddir__build_lib_libtpx_includedir = $(prefix)/include + + CLEANFILES = *.o # header file accumulation diff --git a/Cantera/src/base/Makefile.am b/Cantera/src/base/Makefile.am index bb72fd831..4095a095e 100644 --- a/Cantera/src/base/Makefile.am +++ b/Cantera/src/base/Makefile.am @@ -26,9 +26,8 @@ otherinclude_HEADERS = $(h_sources) __top_builddir__build_lib_libctbase_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libctbase_la_SOURCES = $(cc_sources) $(h_sources) -__top_builddir__build_lib_libctbase_include = $(h_sources) -__top_builddir__build_lib_libctbase_includedir = $(prefix)/include - +__top_builddir__build_lib_libctbase_include_HEADERS = $(h_sources) +__top_builddir__build_lib_libctbase_includedir = $(prefix)/include # header file accumulation -- only copy if file updated! all: diff --git a/Cantera/src/converters/Makefile.am b/Cantera/src/converters/Makefile.am index 61c96b495..26fe964a6 100644 --- a/Cantera/src/converters/Makefile.am +++ b/Cantera/src/converters/Makefile.am @@ -19,6 +19,10 @@ library_includedir = $(includedir) __top_builddir__build_lib_libconverters_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libconverters_la_SOURCES = $(cc_sources) $(h_sources) +__top_builddir__build_lib_libconverters_include_HEADERS = $(h_sources) +__top_builddir__build_lib_libconverters_includedir = $(prefix)/include + + # header file accumulation all: @echo copying headers $< diff --git a/Cantera/src/equil/Makefile.am b/Cantera/src/equil/Makefile.am index c94af37b5..e7162fb0d 100644 --- a/Cantera/src/equil/Makefile.am +++ b/Cantera/src/equil/Makefile.am @@ -45,7 +45,11 @@ library_includedir = $(includedir) __top_builddir__build_lib_libequil_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libequil_la_SOURCES = $(cc_sources) $(h_sources) -# header file accumulation +__top_builddir__build_lib_libequil_include_HEADERS = $(h_sources) +__top_builddir__build_lib_libequil_includedir = $(prefix)/include + + +# header file accumulation before install all: @echo copying headers $< cp -u *.h $(top_builddir)/build/include/ diff --git a/Cantera/src/kinetics/Makefile.am b/Cantera/src/kinetics/Makefile.am index 584698c66..3302085d3 100644 --- a/Cantera/src/kinetics/Makefile.am +++ b/Cantera/src/kinetics/Makefile.am @@ -25,6 +25,10 @@ library_includedir = $(includedir) __top_builddir__build_lib_libkinetics_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libkinetics_la_SOURCES = $(cc_sources) $(h_sources) +__top_builddir__build_lib_libkinetics_include_HEADERS = $(h_sources) +__top_builddir__build_lib_libkinetics_includedir = $(prefix)/include + + # header file accumulation all: @echo copying headers $< diff --git a/Cantera/src/numerics/Makefile.am b/Cantera/src/numerics/Makefile.am index 72e695cb6..cc8d8cf13 100644 --- a/Cantera/src/numerics/Makefile.am +++ b/Cantera/src/numerics/Makefile.am @@ -20,6 +20,9 @@ library_includedir = $(includedir) __top_builddir__build_lib_libctnumerics_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libctnumerics_la_SOURCES = $(cc_sources) $(h_sources) +__top_builddir__build_lib_libctnumerics_include_HEADERS = $(h_sources) +__top_builddir__build_lib_libctnumerics_includedir = $(prefix)/include + # header file accumulation all: diff --git a/Cantera/src/oneD/Makefile.am b/Cantera/src/oneD/Makefile.am index 56affcb29..742f8258c 100644 --- a/Cantera/src/oneD/Makefile.am +++ b/Cantera/src/oneD/Makefile.am @@ -18,6 +18,9 @@ library_includedir = $(includedir) __top_builddir__build_lib_liboneD_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_liboneD_la_SOURCES = $(cc_sources) $(h_sources) +__top_builddir__build_lib_liboneD_include_HEADERS = $(h_sources) +__top_builddir__build_lib_liboneD_includedir = $(prefix)/include + # header file accumulation all: diff --git a/Cantera/src/thermo/Makefile.am b/Cantera/src/thermo/Makefile.am index 217268a09..eb0f6712e 100644 --- a/Cantera/src/thermo/Makefile.am +++ b/Cantera/src/thermo/Makefile.am @@ -56,6 +56,8 @@ library_includedir = $(includedir) __top_builddir__build_lib_libthermo_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libthermo_la_SOURCES = $(cc_sources) $(h_sources) +__top_builddir__build_lib_libthermo_include_HEADERS = $(h_sources) +__top_builddir__build_lib_libthermo_includedir = $(prefix)/include # header file accumulation all: diff --git a/Cantera/src/transport/Makefile.am b/Cantera/src/transport/Makefile.am index 1a5210daa..a0654b70e 100644 --- a/Cantera/src/transport/Makefile.am +++ b/Cantera/src/transport/Makefile.am @@ -3,7 +3,8 @@ h_sources = AqueousTransport.h LiquidTransportData.h L_matrix.h \ DustyGasTransport.h LiquidTransport.h MixTransport.h \ SimpleTransport.h TransportFactory.h FtnTransport.h \ LiquidTransportParams.h MMCollisionInt.h \ - SolidTransport.h TransportParams.h WaterSSTP.h + SolidTransport.h TransportParams.h +# WaterSSTP.h cc_sources = AqueousTransport.cpp LiquidTransport.cpp MMCollisionInt.cpp \ SimpleTransport.cpp TransportBase.cpp WaterTransport.cpp \ @@ -23,6 +24,9 @@ library_includedir = $(includedir) __top_builddir__build_lib_libtransport_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libtransport_la_SOURCES = $(cc_sources) $(h_sources) +__top_builddir__build_lib_libtransport_include_HEADERS = $(h_sources) +__top_builddir__build_lib_libtransport_includedir = $(prefix)/include + # header file accumulation all: diff --git a/Cantera/src/zeroD/Makefile.am b/Cantera/src/zeroD/Makefile.am index 670de7274..3f0b728e3 100644 --- a/Cantera/src/zeroD/Makefile.am +++ b/Cantera/src/zeroD/Makefile.am @@ -19,6 +19,9 @@ library_includedir = $(includedir) __top_builddir__build_lib_libzeroD_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libzeroD_la_SOURCES = $(cc_sources) $(h_sources) +__top_builddir__build_lib_libzeroD_include_HEADERS = $(h_sources) +__top_builddir__build_lib_libzeroD_includedir = $(prefix)/include + # header file accumulation all: @echo copying headers $< From 22f0e3317e8fe5c007b9f7d82598e7c01c18332b Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 9 Feb 2012 21:09:19 +0000 Subject: [PATCH 121/124] [cantera]: moving include files to a more sane directory for cxx --- Cantera/cxx/include/.cvsignore | 4 - Cantera/cxx/include/CMakeLists.txt | 8 - Cantera/cxx/include/Cantera.mak.in | 150 ------------------ Cantera/cxx/include/Cantera_bt.mak.in | 137 ---------------- Cantera/cxx/{include => src}/Cantera.h | 0 Cantera/cxx/{include => src}/Edge.h | 0 Cantera/cxx/{include => src}/GRI30.h | 0 Cantera/cxx/{include => src}/IdealGasMix.h | 0 .../{include => src}/IncompressibleSolid.h | 0 Cantera/cxx/{include => src}/Interface.h | 0 Cantera/cxx/src/Makefile.am | 2 +- Cantera/cxx/{include => src}/Metal.h | 0 Cantera/cxx/{include => src}/PureFluid.h | 0 .../cxx/{include => src}/electrolyteThermo.h | 0 Cantera/cxx/{include => src}/equilibrium.h | 0 Cantera/cxx/{include => src}/importPhase.h | 0 Cantera/cxx/{include => src}/integrators.h | 0 Cantera/cxx/{include => src}/kinetics.h | 0 Cantera/cxx/{include => src}/numerics.h | 0 Cantera/cxx/{include => src}/onedim.h | 0 Cantera/cxx/{include => src}/radiation.h | 0 Cantera/cxx/{include => src}/reactionpaths.h | 0 Cantera/cxx/{include => src}/spectra.h | 0 Cantera/cxx/{include => src}/surface.h | 0 Cantera/cxx/{include => src}/thermo.h | 0 Cantera/cxx/{include => src}/transport.h | 0 Cantera/cxx/{include => src}/zerodim.h | 0 27 files changed, 1 insertion(+), 300 deletions(-) delete mode 100644 Cantera/cxx/include/.cvsignore delete mode 100644 Cantera/cxx/include/CMakeLists.txt delete mode 100644 Cantera/cxx/include/Cantera.mak.in delete mode 100644 Cantera/cxx/include/Cantera_bt.mak.in rename Cantera/cxx/{include => src}/Cantera.h (100%) rename Cantera/cxx/{include => src}/Edge.h (100%) rename Cantera/cxx/{include => src}/GRI30.h (100%) rename Cantera/cxx/{include => src}/IdealGasMix.h (100%) rename Cantera/cxx/{include => src}/IncompressibleSolid.h (100%) rename Cantera/cxx/{include => src}/Interface.h (100%) rename Cantera/cxx/{include => src}/Metal.h (100%) rename Cantera/cxx/{include => src}/PureFluid.h (100%) rename Cantera/cxx/{include => src}/electrolyteThermo.h (100%) rename Cantera/cxx/{include => src}/equilibrium.h (100%) rename Cantera/cxx/{include => src}/importPhase.h (100%) rename Cantera/cxx/{include => src}/integrators.h (100%) rename Cantera/cxx/{include => src}/kinetics.h (100%) rename Cantera/cxx/{include => src}/numerics.h (100%) rename Cantera/cxx/{include => src}/onedim.h (100%) rename Cantera/cxx/{include => src}/radiation.h (100%) rename Cantera/cxx/{include => src}/reactionpaths.h (100%) rename Cantera/cxx/{include => src}/spectra.h (100%) rename Cantera/cxx/{include => src}/surface.h (100%) rename Cantera/cxx/{include => src}/thermo.h (100%) rename Cantera/cxx/{include => src}/transport.h (100%) rename Cantera/cxx/{include => src}/zerodim.h (100%) diff --git a/Cantera/cxx/include/.cvsignore b/Cantera/cxx/include/.cvsignore deleted file mode 100644 index 867b46681..000000000 --- a/Cantera/cxx/include/.cvsignore +++ /dev/null @@ -1,4 +0,0 @@ -Cantera_bt.mak -Cantera.mak -CMakeFiles -cmake_install.cmake diff --git a/Cantera/cxx/include/CMakeLists.txt b/Cantera/cxx/include/CMakeLists.txt deleted file mode 100644 index c073b848f..000000000 --- a/Cantera/cxx/include/CMakeLists.txt +++ /dev/null @@ -1,8 +0,0 @@ -SET(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 - reactionpaths.h zerodim.h importPhase.h thermo.h - radiation.h spectra.h) - -INSTALL_FILES(/include/cantera FILES ${CXX_H}) diff --git a/Cantera/cxx/include/Cantera.mak.in b/Cantera/cxx/include/Cantera.mak.in deleted file mode 100644 index 29d63639f..000000000 --- a/Cantera/cxx/include/Cantera.mak.in +++ /dev/null @@ -1,150 +0,0 @@ -####################################################################### -# Include Snipet for Makefiles -# -# To create Cantera C++ applications from the install environment -# include this file into your Makefile environment -# -# Main Variables: -# -# CANTERA_INCLUDES = Variable containing the include path -# -# -# CANTERA_LIBS = List of libraries to include on the link line -# -# CANTERA_LIBS_DEP = dependency line for Cantera libs -# -# -##################################################################### -# $Id: Cantera.mak.in,v 1.5 2009/01/09 23:26:41 hkmoffa Exp $ -# -# -# This variable determines whether we are making this example in the -# build tree environment or in the install tree environment. -# -in_CanteraBuildTree = 0 - -CANTERA_VERSION=@ctversion@ - -############################################################################### -# CANTERA CORE -############################################################################### -# -# The directory where Cantera include files may be found. -# Include files in application programs should start with: -# #include "cantera/thermo.h" -# #include "cantera/kernel/HMWSoln.h" -# -CANTERA_INCROOTDIR= @ct_incroot@ - -CANTERA_CORE_INCLUDES=-I$(CANTERA_INCROOTDIR) -# -# Library location -# -CANTERA_LIBSDIR= @ct_libdir@ - -# -# Required Cantera libraries -# -CANTERA_CORE_LIBS= -L$(CANTERA_LIBSDIR) @CANTERA_CORE_LIBS@ -lctcxx - -# -# Cantera Core Lib Dependencies -# -CANTERA_CORE_LIBS_DEP= @CANTERA_CORE_LIBS_DEP@ $(CANTERA_LIBSDIR)/libctcxx.a - -##################################################################### -# BOOST -#################################################################### -# -# Cantera Boost Include -# -CANTERA_BOOST_INCLUDES=@BOOST_INCLUDE@ -# -# Location of the boost library that Cantera linked against -# -CANTERA_BOOST_LIB_DIR=@BOOST_LIB_DIR@ -# -# Linkage extras for linking against boost -# -ifeq ("x$(CANTERA_BOOST_LIB_DIR)","x") -CANTERA_BOOST_LIBS= -else -CANTERA_BOOST_LIBS= -L$(CANTERA_BOOST_LIB_DIR) -l@BOOST_LIB@ -endif - -##################################################################### -# CVODE/SUNDIALS LINKAGE -#################################################################### -# -CANTERA_use_sundials = @use_sundials@ -# -# Includes for Sundials - none for cvode -# -CANTERA_CVODE_INCLUDE=@sundials_include@ -CANTERA_SUNDIALS_LIB_DIR=@sundials_lib_dir@ -# -# Link line for cvode and sundials -# -ifeq ($(CANTERA_use_sundials), 1) -CANTERA_CVODE_LIBS=-L$(CANTERA_SUNDIALS_LIB_DIR) @CVODE_LIBS@ -CANTERA_CVODE_LIBS_DEP=@sundials_lib_dep@ -else -CANTERA_CVODE_LIBS= -L$(CANTERA_LIBSDIR) -lcvode -CANTERA_CVODE_LIBS_DEP=$(CANTERA_LIBSDIR)/libcvode.a -endif -# -####################################################################### -# BLAS LAPACK LINKAGE -####################################################################### -# -CANTERA_build_lapack= @build_lapack@ -CANTERA_build_blas= @build_blas@ - -CANTERA_BLAS_LAPACK_DIR= @ct_libdir@ - -CANTERA_BLAS_LAPACK_LIBS = -L$(CANTERA_BLAS_LAPACK_DIR) @BLAS_LAPACK_LIBS@ -CANTERA_BLAS_LAPACK_LIBS_DEP= -# -####################################################################### -# CANTERA's F2C Linkage -####################################################################### -# -CANTERA_build_with_f2c= @build_with_f2c@ -CANTERA_build_f2c_lib= @build_f2c_lib@ - -ifeq ($(CANTERA_build_f2c_lib), 1) -CANTERA_F2C_LIBS= -L$(CANTERA_LIBSDIR) -lctf2c -else -CANTERA_F2C_LIBS= @F2C_SYSTEMLIB@ -endif -# -##################################################################### -# COMBINATIONS OF INCLUDES AND LIBS -#################################################################### -# -CANTERA_TOTAL_INCLUDES= $(CANTERA_CORE_INCLUDES) $(CANTERA_BOOST_INCLUDES) $(CANTERA_CVODE_INCLUDE) -# -# You can add this into the compilation environment to identify the version number -# -CANTERA_DEFINES = -DCANTERA_VERSION=@ctversion@ -# -# LIBS and LIBS should be the same ... -# -CANTERA_TOTAL_LIBS2 = -L$(CANTERA_LIBSDIR) @LOCAL_LIBS@ -# -CANTERA_TOTAL_LIBS= $(CANTERA_CORE_LIBS) $(CANTERA_BOOST_LIBS) \ - $(CANTERA_CVODE_LIBS) $(CANTERA_BLAS_LAPACK_LIBS) \ - $(CANTERA_F2C_LIBS) -# -CANTERA_TOTAL_LIBS_DEP= $(CANTERA_CORE_LIBS_DEP) \ - $(CANTERA_CVODE_LIBS_DEP) \ - $(CANTERA_BLAS_LAPACK_LIBS_DEP) -# -# -# Dependency Line -# -CANTERA_LIBS_DEP= @INSTALL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a -# -##################################################################### -# END -#################################################################### diff --git a/Cantera/cxx/include/Cantera_bt.mak.in b/Cantera/cxx/include/Cantera_bt.mak.in deleted file mode 100644 index b98df72c3..000000000 --- a/Cantera/cxx/include/Cantera_bt.mak.in +++ /dev/null @@ -1,137 +0,0 @@ -####################################################################### -# Include Snipet for Makefiles -# -# To create Cantera C++ applications from the build tree environment -# include this file into your Makefile environment -# -# Main Variables: -# -# CANTERA_INCLUDES = Variable containing the include path -# -# -# CANTERA_LIBS = List of libraries to include on the link line -# -# CANTERA_LIBS_DEP = dependency line for Cantera libs -# -# -##################################################################### -# $Id: Cantera_bt.mak.in,v 1.2 2008/01/21 21:17:52 hkmoffa Exp $ -# -# -# This variable determines whether we are making this example in the -# build tree environment or in the install tree environment. -# -in_CanteraBuildTree = 0 - -CANTERA_VERSION=@ctversion@ - -############################################################################### -# CANTERA CORE -############################################################################### -# -# The directory where Cantera include files may be found. -# Include files in application programs should start with: -# #include "cantera/thermo.h" -# #include "cantera/kernel/HMWSoln.h" -# -CANTERA_INCROOTDIR= @ct_incroot@ - -CANTERA_CORE_INCLUDES=-I$(CANTERA_INCROOTDIR) -# -# Library location -# -CANTERA_LIBSDIR= @ct_libdir@ - -# -# Required Cantera libraries -# -CANTERA_CORE_LIBS= -L$(CANTERA_LIBSDIR) @CANTERA_CORE_LIBS@ -lctcxx - -# -# Cantera Core Lib Dependencies -# -CANTERA_CORE_LIBS_DEP= @CANTERA_CORE_LIBS_DEP@ $(CANTERA_LIBSDIR)/libctcxx.a - -##################################################################### -# BOOST -#################################################################### -# -# Cantera Boost Include -# -CANTERA_BOOST_INCLUDES= @BOOST_INCLUDE@ -# -# Location of the boost library that Cantera linked against -# -CANTERA_BOOST_LIB_DIR= @BOOST_LIB_DIR@ -# -# Linkage extras for linking against boost -# -ifeq ("x$(CANTERA_BOOST_LIB_DIR)","x") -CANTERA_BOOST_LIBS= -else -CANTERA_BOOST_LIBS= -L$(CANTERA_BOOST_LIB_DIR) -l@BOOST_LIB@ -endif - -##################################################################### -# CVODE/SUNDIALS LINKAGE -#################################################################### -CANTERA_use_sundials = @use_sundials@ - -# -# Includes for Sundials - none for cvode -# -CANTERA_CVODE_INCLUDE=@sundials_include@ -# -# Link line for cvode and sundials -# -ifeq ($(CANTERA_user_sundials), 1) - -else -CANTERA_CVODE_LIBS= -L$(CANTERA_LIBSDIR) @CVODE_LIBS@ -endif - - -####################################################################### -# BLAS LAPACK LINKAGE -####################################################################### -CANTERA_build_lapack= @build_lapack@ -CANTERA_build_blas= @build_blas@ - -CANTERA_BLAS_LAPACK_DIR= @BLAS_LAPACK_DIR@ - -CANTERA_BLAS_LAPACK_LIBS = -L$(CANTERA_BLAS_LAPACK_DIR) @BLAS_LAPACK_LIBS@ - -####################################################################### -# CANTERA's F2C Linkage -####################################################################### -CANTERA_build_with_f2c= @build_with_f2c@ -CANTERA_build_f2c_lib= @build_f2c_lib@ - -ifeq ($(CANTERA_build_f2c_lib), 1) -CANTERA_F2C_LIBS= -L$(CANTERA_LIBSDIR) -lctf2c -else -CANTERA_F2C_LIBS= @F2C_SYSTEMLIB@ -endif - - -##################################################################### -# COMBINATIONS OF INCLUDES AND LIBS -#################################################################### - -CANTERA_TOTAL_INCLUDES= $(CANTERA_CORE_INCLUDES) $(CANTERA_BOOST_INCLUDES) $(CANTERA_CVODE_INCLUDE) -# -# You can add this into the compilation environment to identify the version number -# -CANTERA_DEFINES = -DCANTERA_VERSION=@ctversion@ - -CANTERA_TOTAL_LIBS2 = @LOCAL_LIB_DIRS@ @LOCAL_LIBS@ - -CANTERA_TOTAL_LIBS= $(CANTERA_CORE_LIBS) $(CANTERA_BOOST_LIBS) \ - $(CANTERA_CVODE_LIBS) $(CANTERA_BLAS_LAPACK_LIBS) \ - $(CANTERA_F2C_LIBS) - -# -# Dependency Line -# -CANTERA_LIBS_DEP= @INSTALL_LIBS_DEP@ $(CANTERA_LIBDIR)/libctcxx.a - diff --git a/Cantera/cxx/include/Cantera.h b/Cantera/cxx/src/Cantera.h similarity index 100% rename from Cantera/cxx/include/Cantera.h rename to Cantera/cxx/src/Cantera.h diff --git a/Cantera/cxx/include/Edge.h b/Cantera/cxx/src/Edge.h similarity index 100% rename from Cantera/cxx/include/Edge.h rename to Cantera/cxx/src/Edge.h diff --git a/Cantera/cxx/include/GRI30.h b/Cantera/cxx/src/GRI30.h similarity index 100% rename from Cantera/cxx/include/GRI30.h rename to Cantera/cxx/src/GRI30.h diff --git a/Cantera/cxx/include/IdealGasMix.h b/Cantera/cxx/src/IdealGasMix.h similarity index 100% rename from Cantera/cxx/include/IdealGasMix.h rename to Cantera/cxx/src/IdealGasMix.h diff --git a/Cantera/cxx/include/IncompressibleSolid.h b/Cantera/cxx/src/IncompressibleSolid.h similarity index 100% rename from Cantera/cxx/include/IncompressibleSolid.h rename to Cantera/cxx/src/IncompressibleSolid.h diff --git a/Cantera/cxx/include/Interface.h b/Cantera/cxx/src/Interface.h similarity index 100% rename from Cantera/cxx/include/Interface.h rename to Cantera/cxx/src/Interface.h diff --git a/Cantera/cxx/src/Makefile.am b/Cantera/cxx/src/Makefile.am index af723bf44..30c3558c7 100644 --- a/Cantera/cxx/src/Makefile.am +++ b/Cantera/cxx/src/Makefile.am @@ -23,6 +23,6 @@ __top_builddir__build_lib_libctcxx_includedir = $(prefix)/include # header file accumulation all: @echo copying headers $< - cp -u ../include/*.h $(top_builddir)/build/include/ + cp -p ../include/*.h $(top_builddir)/build/include/ CLEANFILES = *.o diff --git a/Cantera/cxx/include/Metal.h b/Cantera/cxx/src/Metal.h similarity index 100% rename from Cantera/cxx/include/Metal.h rename to Cantera/cxx/src/Metal.h diff --git a/Cantera/cxx/include/PureFluid.h b/Cantera/cxx/src/PureFluid.h similarity index 100% rename from Cantera/cxx/include/PureFluid.h rename to Cantera/cxx/src/PureFluid.h diff --git a/Cantera/cxx/include/electrolyteThermo.h b/Cantera/cxx/src/electrolyteThermo.h similarity index 100% rename from Cantera/cxx/include/electrolyteThermo.h rename to Cantera/cxx/src/electrolyteThermo.h diff --git a/Cantera/cxx/include/equilibrium.h b/Cantera/cxx/src/equilibrium.h similarity index 100% rename from Cantera/cxx/include/equilibrium.h rename to Cantera/cxx/src/equilibrium.h diff --git a/Cantera/cxx/include/importPhase.h b/Cantera/cxx/src/importPhase.h similarity index 100% rename from Cantera/cxx/include/importPhase.h rename to Cantera/cxx/src/importPhase.h diff --git a/Cantera/cxx/include/integrators.h b/Cantera/cxx/src/integrators.h similarity index 100% rename from Cantera/cxx/include/integrators.h rename to Cantera/cxx/src/integrators.h diff --git a/Cantera/cxx/include/kinetics.h b/Cantera/cxx/src/kinetics.h similarity index 100% rename from Cantera/cxx/include/kinetics.h rename to Cantera/cxx/src/kinetics.h diff --git a/Cantera/cxx/include/numerics.h b/Cantera/cxx/src/numerics.h similarity index 100% rename from Cantera/cxx/include/numerics.h rename to Cantera/cxx/src/numerics.h diff --git a/Cantera/cxx/include/onedim.h b/Cantera/cxx/src/onedim.h similarity index 100% rename from Cantera/cxx/include/onedim.h rename to Cantera/cxx/src/onedim.h diff --git a/Cantera/cxx/include/radiation.h b/Cantera/cxx/src/radiation.h similarity index 100% rename from Cantera/cxx/include/radiation.h rename to Cantera/cxx/src/radiation.h diff --git a/Cantera/cxx/include/reactionpaths.h b/Cantera/cxx/src/reactionpaths.h similarity index 100% rename from Cantera/cxx/include/reactionpaths.h rename to Cantera/cxx/src/reactionpaths.h diff --git a/Cantera/cxx/include/spectra.h b/Cantera/cxx/src/spectra.h similarity index 100% rename from Cantera/cxx/include/spectra.h rename to Cantera/cxx/src/spectra.h diff --git a/Cantera/cxx/include/surface.h b/Cantera/cxx/src/surface.h similarity index 100% rename from Cantera/cxx/include/surface.h rename to Cantera/cxx/src/surface.h diff --git a/Cantera/cxx/include/thermo.h b/Cantera/cxx/src/thermo.h similarity index 100% rename from Cantera/cxx/include/thermo.h rename to Cantera/cxx/src/thermo.h diff --git a/Cantera/cxx/include/transport.h b/Cantera/cxx/src/transport.h similarity index 100% rename from Cantera/cxx/include/transport.h rename to Cantera/cxx/src/transport.h diff --git a/Cantera/cxx/include/zerodim.h b/Cantera/cxx/src/zerodim.h similarity index 100% rename from Cantera/cxx/include/zerodim.h rename to Cantera/cxx/src/zerodim.h From 9bcc178ff04f648974cc33965d42862e81bcfd7d Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 9 Feb 2012 21:10:59 +0000 Subject: [PATCH 122/124] [cantera]: adding special update to support our mac using friends --- Cantera/ext/cvode/Makefile.am | 2 +- Cantera/ext/f2c_blas/Makefile.am | 2 +- Cantera/ext/f2c_lapack/Makefile.am | 2 +- Cantera/ext/f2c_libs/Makefile.am | 6 +++--- Cantera/ext/f2c_math/Makefile.am | 2 +- Cantera/ext/tpx/Makefile.am | 2 +- Cantera/src/base/Makefile.am | 2 +- Cantera/src/converters/Makefile.am | 2 +- Cantera/src/equil/Makefile.am | 2 +- Cantera/src/kinetics/Makefile.am | 2 +- Cantera/src/numerics/Makefile.am | 2 +- Cantera/src/oneD/Makefile.am | 2 +- Cantera/src/thermo/Makefile.am | 2 +- Cantera/src/transport/Makefile.am | 2 +- Cantera/src/zeroD/Makefile.am | 2 +- 15 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cantera/ext/cvode/Makefile.am b/Cantera/ext/cvode/Makefile.am index 21f7f9802..49208664e 100644 --- a/Cantera/ext/cvode/Makefile.am +++ b/Cantera/ext/cvode/Makefile.am @@ -29,4 +29,4 @@ CLEANFILES = *.o # header file accumulation all: @echo copying headers $< - cp -u *.h $(top_builddir)/build/include/ + cp -p *.h $(top_builddir)/build/include/ diff --git a/Cantera/ext/f2c_blas/Makefile.am b/Cantera/ext/f2c_blas/Makefile.am index c80242f58..15aaa52c9 100644 --- a/Cantera/ext/f2c_blas/Makefile.am +++ b/Cantera/ext/f2c_blas/Makefile.am @@ -66,4 +66,4 @@ CLEANFILES = *.o # header file accumulation all: @echo copying headers $< - cp -u *.h $(top_builddir)/build/include/ + cp -p *.h $(top_builddir)/build/include/ diff --git a/Cantera/ext/f2c_lapack/Makefile.am b/Cantera/ext/f2c_lapack/Makefile.am index 5ee31aad4..e3330e6c1 100644 --- a/Cantera/ext/f2c_lapack/Makefile.am +++ b/Cantera/ext/f2c_lapack/Makefile.am @@ -33,4 +33,4 @@ CLEANFILES = *.o # header file accumulation all: @echo copying headers $< - cp -u *.h $(top_builddir)/build/include/ + cp -p *.h $(top_builddir)/build/include/ diff --git a/Cantera/ext/f2c_libs/Makefile.am b/Cantera/ext/f2c_libs/Makefile.am index b503c634a..717b494cf 100644 --- a/Cantera/ext/f2c_libs/Makefile.am +++ b/Cantera/ext/f2c_libs/Makefile.am @@ -53,9 +53,9 @@ library_include_HEADERS = $(h_sources) # header file accumulation all: @echo copying headers $< - cp -u sysdep1.h0 sysdep1.h - cp -u signal1.h0 signal1.h - cp -u $(h_sources) $(top_builddir)/build/include/ + cp -p sysdep1.h0 sysdep1.h + cp -p signal1.h0 signal1.h + cp -p $(h_sources) $(top_builddir)/build/include/ __top_builddir__build_lib_libctf2c_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE) __top_builddir__build_lib_libctf2c_la_SOURCES = $(cc_sources) $(h_sources) diff --git a/Cantera/ext/f2c_math/Makefile.am b/Cantera/ext/f2c_math/Makefile.am index 8fcada505..94a041f8a 100644 --- a/Cantera/ext/f2c_math/Makefile.am +++ b/Cantera/ext/f2c_math/Makefile.am @@ -48,4 +48,4 @@ CLEANFILES = *.o # header file accumulation all: @echo copying headers $< - cp -u *.h $(top_builddir)/build/include/ + cp -p *.h $(top_builddir)/build/include/ diff --git a/Cantera/ext/tpx/Makefile.am b/Cantera/ext/tpx/Makefile.am index 03a9971b4..ab1a96b75 100644 --- a/Cantera/ext/tpx/Makefile.am +++ b/Cantera/ext/tpx/Makefile.am @@ -27,4 +27,4 @@ CLEANFILES = *.o # header file accumulation all: @echo copying headers $< - cp -u *.h $(top_builddir)/build/include/ + cp -p *.h $(top_builddir)/build/include/ diff --git a/Cantera/src/base/Makefile.am b/Cantera/src/base/Makefile.am index 4095a095e..02ee0b8ed 100644 --- a/Cantera/src/base/Makefile.am +++ b/Cantera/src/base/Makefile.am @@ -32,6 +32,6 @@ __top_builddir__build_lib_libctbase_includedir = $(prefix)/include # header file accumulation -- only copy if file updated! all: @echo copying headers $< - cp -u *.h $(top_builddir)/build/include/ + cp -p *.h $(top_builddir)/build/include/ CLEANFILES = *.o diff --git a/Cantera/src/converters/Makefile.am b/Cantera/src/converters/Makefile.am index 26fe964a6..490ea50d3 100644 --- a/Cantera/src/converters/Makefile.am +++ b/Cantera/src/converters/Makefile.am @@ -26,4 +26,4 @@ __top_builddir__build_lib_libconverters_includedir = $(prefix)/include # header file accumulation all: @echo copying headers $< - cp -u $(h_sources) $(top_builddir)/build/include/ + cp -p $(h_sources) $(top_builddir)/build/include/ diff --git a/Cantera/src/equil/Makefile.am b/Cantera/src/equil/Makefile.am index e7162fb0d..e20bd0a85 100644 --- a/Cantera/src/equil/Makefile.am +++ b/Cantera/src/equil/Makefile.am @@ -52,4 +52,4 @@ __top_builddir__build_lib_libequil_includedir = $(prefix)/include # header file accumulation before install all: @echo copying headers $< - cp -u *.h $(top_builddir)/build/include/ + cp -p *.h $(top_builddir)/build/include/ diff --git a/Cantera/src/kinetics/Makefile.am b/Cantera/src/kinetics/Makefile.am index 3302085d3..f823ecdad 100644 --- a/Cantera/src/kinetics/Makefile.am +++ b/Cantera/src/kinetics/Makefile.am @@ -32,4 +32,4 @@ __top_builddir__build_lib_libkinetics_includedir = $(prefix)/include # header file accumulation all: @echo copying headers $< - cp -u $(h_sources) $(top_builddir)/build/include/ + cp -p $(h_sources) $(top_builddir)/build/include/ diff --git a/Cantera/src/numerics/Makefile.am b/Cantera/src/numerics/Makefile.am index cc8d8cf13..abdb47f98 100644 --- a/Cantera/src/numerics/Makefile.am +++ b/Cantera/src/numerics/Makefile.am @@ -27,4 +27,4 @@ __top_builddir__build_lib_libctnumerics_includedir = $(prefix)/include # header file accumulation all: @echo copying headers $< - cp -u *.h $(top_builddir)/build/include/ + cp -p *.h $(top_builddir)/build/include/ diff --git a/Cantera/src/oneD/Makefile.am b/Cantera/src/oneD/Makefile.am index 742f8258c..434745bfc 100644 --- a/Cantera/src/oneD/Makefile.am +++ b/Cantera/src/oneD/Makefile.am @@ -25,4 +25,4 @@ __top_builddir__build_lib_liboneD_includedir = $(prefix)/include # header file accumulation all: @echo copying headers $< - cp -u $(h_sources) $(top_builddir)/build/include/ + cp -p $(h_sources) $(top_builddir)/build/include/ diff --git a/Cantera/src/thermo/Makefile.am b/Cantera/src/thermo/Makefile.am index eb0f6712e..c2e71a781 100644 --- a/Cantera/src/thermo/Makefile.am +++ b/Cantera/src/thermo/Makefile.am @@ -62,4 +62,4 @@ __top_builddir__build_lib_libthermo_includedir = $(prefix)/include # header file accumulation all: @echo copying headers $< - cp -u *.h $(top_builddir)/build/include/ + cp -p *.h $(top_builddir)/build/include/ diff --git a/Cantera/src/transport/Makefile.am b/Cantera/src/transport/Makefile.am index a0654b70e..e0762c15a 100644 --- a/Cantera/src/transport/Makefile.am +++ b/Cantera/src/transport/Makefile.am @@ -31,4 +31,4 @@ __top_builddir__build_lib_libtransport_includedir = $(prefix)/include # header file accumulation all: @echo copying headers $< - cp -u *.h $(top_builddir)/build/include/ + cp -p *.h $(top_builddir)/build/include/ diff --git a/Cantera/src/zeroD/Makefile.am b/Cantera/src/zeroD/Makefile.am index 3f0b728e3..d0b0314ad 100644 --- a/Cantera/src/zeroD/Makefile.am +++ b/Cantera/src/zeroD/Makefile.am @@ -25,4 +25,4 @@ __top_builddir__build_lib_libzeroD_includedir = $(prefix)/include # header file accumulation all: @echo copying headers $< - cp -u $(h_sources) $(top_builddir)/build/include/ + cp -p $(h_sources) $(top_builddir)/build/include/ From adfb27f5483512d677e7daed13a217647eee6d63 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 9 Feb 2012 21:22:46 +0000 Subject: [PATCH 123/124] [cantera]: missed one cp -u --> cp -p conversion --- Cantera/src/spectra/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cantera/src/spectra/Makefile.am b/Cantera/src/spectra/Makefile.am index ac44f411c..be7b721ac 100644 --- a/Cantera/src/spectra/Makefile.am +++ b/Cantera/src/spectra/Makefile.am @@ -20,4 +20,4 @@ __top_builddir__build_lib_libctspectra_la_SOURCES = $(cc_sources) $(h_sourc # header file accumulation all: @echo copying headers $< - cp -u $(h_sources) $(top_builddir)/build/include/ + cp -p $(h_sources) $(top_builddir)/build/include/ From 6809ecf2900257dec63321c186106e207d5690e6 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Thu, 9 Feb 2012 21:24:42 +0000 Subject: [PATCH 124/124] [cantera]: fixing another small bug in make for mac friends --- Cantera/cxx/src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cantera/cxx/src/Makefile.am b/Cantera/cxx/src/Makefile.am index 30c3558c7..fcd35b991 100644 --- a/Cantera/cxx/src/Makefile.am +++ b/Cantera/cxx/src/Makefile.am @@ -23,6 +23,6 @@ __top_builddir__build_lib_libctcxx_includedir = $(prefix)/include # header file accumulation all: @echo copying headers $< - cp -p ../include/*.h $(top_builddir)/build/include/ + cp -p *.h $(top_builddir)/build/include/ CLEANFILES = *.o